* [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback
@ 2023-09-15 22:52 Alex Hung
2023-09-15 22:52 ` [igt-dev] [PATCH 1/3][i-g-t][V3] lib/igt_fb: use the entire 32 bit for fnv1a_crc Alex Hung
` (15 more replies)
0 siblings, 16 replies; 17+ messages in thread
From: Alex Hung @ 2023-09-15 22:52 UTC (permalink / raw)
To: igt-dev; +Cc: brian.starkey, maxime
kms_writeback only checked and supported DRM_FORMAT_XRGB8888. This
patchset enables 10 bit supports in lib and add new subtests for
DRM_FORMAT_XRGB2101010 in kms_writeback.
V2 - allow kms_writeback to run subtests for multiple DRM_FORMAT_XRGB*
V3 - 1. move uint32_t fourcc[] to check_writeback_config() and
use DRM_FORMAT_XRGB* directly in igt_main_args()
2. remove incorrect comments
Alex Hung (3):
lib/igt_fb: use the entire 32 bit for fnv1a_crc
lib/igt_fb: add 10 bits (XRGB2101010) supports in fnv1a_crc
tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback
lib/igt_fb.c | 15 +++--
tests/kms_writeback.c | 136 +++++++++++++++++++++++++++++++++---------
2 files changed, 116 insertions(+), 35 deletions(-)
--
2.42.0
^ permalink raw reply [flat|nested] 17+ messages in thread* [igt-dev] [PATCH 1/3][i-g-t][V3] lib/igt_fb: use the entire 32 bit for fnv1a_crc 2023-09-15 22:52 [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Alex Hung @ 2023-09-15 22:52 ` Alex Hung 2023-09-15 22:52 ` [igt-dev] [PATCH 2/3][i-g-t][V3] lib/igt_fb: add 10 bits (XRGB2101010) supports in fnv1a_crc Alex Hung ` (14 subsequent siblings) 15 siblings, 0 replies; 17+ messages in thread From: Alex Hung @ 2023-09-15 22:52 UTC (permalink / raw) To: igt-dev; +Cc: brian.starkey, maxime The function was implemented as a 32-bit hashing function. Commit 85f4c1005150 ("lib/igt_fb: Ignore the X component when computing CRC") broke this behavior by hashing 8-bit portions. Restore the 32-bit hasing behavior while still ignoring the X compoment. Signed-off-by: Alex Hung <alex.hung@amd.com> --- lib/igt_fb.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/lib/igt_fb.c b/lib/igt_fb.c index 4b592825d..f60150017 100644 --- a/lib/igt_fb.c +++ b/lib/igt_fb.c @@ -4779,16 +4779,11 @@ int igt_fb_get_fnv1a_crc(struct igt_fb *fb, igt_crc_t *crc) igt_memcpy_from_wc(line, ptr, fb->width * cpp); for (x = 0; x < fb->width; x++) { - unsigned int i; uint32_t pixel = le32_to_cpu(line[x]); pixel &= 0x00ffffff; - for (i = 0; i < sizeof(pixel); i++) { - uint8_t component = (pixel >> (i * 8)) & 0xff; - - hash ^= component; - hash *= FNV1a_PRIME; - } + hash ^= pixel; + hash *= FNV1a_PRIME; } } -- 2.42.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [igt-dev] [PATCH 2/3][i-g-t][V3] lib/igt_fb: add 10 bits (XRGB2101010) supports in fnv1a_crc 2023-09-15 22:52 [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Alex Hung 2023-09-15 22:52 ` [igt-dev] [PATCH 1/3][i-g-t][V3] lib/igt_fb: use the entire 32 bit for fnv1a_crc Alex Hung @ 2023-09-15 22:52 ` Alex Hung 2023-09-15 22:52 ` [igt-dev] [PATCH 3/3][i-g-t][V3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback Alex Hung ` (13 subsequent siblings) 15 siblings, 0 replies; 17+ messages in thread From: Alex Hung @ 2023-09-15 22:52 UTC (permalink / raw) To: igt-dev; +Cc: brian.starkey, maxime Allow 10 bits (DRM_FORMAT_XRGB2101010) components to be hashed as well. Signed-off-by: Alex Hung <alex.hung@amd.com> --- lib/igt_fb.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/igt_fb.c b/lib/igt_fb.c index f60150017..281e99771 100644 --- a/lib/igt_fb.c +++ b/lib/igt_fb.c @@ -4754,7 +4754,7 @@ int igt_fb_get_fnv1a_crc(struct igt_fb *fb, igt_crc_t *crc) if (fb->num_planes != 1) return -EINVAL; - if (fb->drm_format != DRM_FORMAT_XRGB8888) + if (fb->drm_format != DRM_FORMAT_XRGB8888 && fb->drm_format != DRM_FORMAT_XRGB2101010) return -EINVAL; ptr = igt_fb_map_buffer(fb->fd, fb); @@ -4780,7 +4780,11 @@ int igt_fb_get_fnv1a_crc(struct igt_fb *fb, igt_crc_t *crc) for (x = 0; x < fb->width; x++) { uint32_t pixel = le32_to_cpu(line[x]); - pixel &= 0x00ffffff; + + if (fb->drm_format == DRM_FORMAT_XRGB8888) + pixel &= 0x00ffffff; + else if (fb->drm_format == DRM_FORMAT_XRGB2101010) + pixel &= 0x3fffffff; hash ^= pixel; hash *= FNV1a_PRIME; -- 2.42.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [igt-dev] [PATCH 3/3][i-g-t][V3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback 2023-09-15 22:52 [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Alex Hung 2023-09-15 22:52 ` [igt-dev] [PATCH 1/3][i-g-t][V3] lib/igt_fb: use the entire 32 bit for fnv1a_crc Alex Hung 2023-09-15 22:52 ` [igt-dev] [PATCH 2/3][i-g-t][V3] lib/igt_fb: add 10 bits (XRGB2101010) supports in fnv1a_crc Alex Hung @ 2023-09-15 22:52 ` Alex Hung 2023-09-16 0:28 ` [igt-dev] ✓ Fi.CI.BAT: success for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev3) Patchwork ` (12 subsequent siblings) 15 siblings, 0 replies; 17+ messages in thread From: Alex Hung @ 2023-09-15 22:52 UTC (permalink / raw) To: igt-dev; +Cc: brian.starkey, maxime Add new subtests for DRM_FORMAT_XRGB2101010 when it is supported. The change also checks supported color formats and runs or skips accordingly. Signed-off-by: Alex Hung <alex.hung@amd.com> --- tests/kms_writeback.c | 136 +++++++++++++++++++++++++++++++++--------- 1 file changed, 109 insertions(+), 27 deletions(-) diff --git a/tests/kms_writeback.c b/tests/kms_writeback.c index a69cf6609..25b49eccd 100644 --- a/tests/kms_writeback.c +++ b/tests/kms_writeback.c @@ -40,6 +40,12 @@ * writeback; it validates bad and good combination, check color * format, and check the output result by using CRC. * + * SUBTEST: writeback-check-output-XRGB2101010 + * Description: Check XRGB2101010 writeback output with CRC validation + * Functionality: kms_core + * Mega feature: General Display Features + * Test category: functionality test + * * SUBTEST: writeback-check-output * Description: Check writeback output with CRC validation * Driver requirement: i915, xe @@ -47,6 +53,12 @@ * Mega feature: General Display Features * Test category: functionality test * + * SUBTEST: writeback-fb-id-XRGB2101010 + * Description: Validate WRITEBACK_FB_ID with valid and invalid options + * Functionality: kms_core + * Mega feature: General Display Features + * Test category: functionality test + * * SUBTEST: writeback-fb-id * Description: Validate WRITEBACK_FB_ID with valid and invalid options * Driver requirement: i915, xe @@ -85,12 +97,18 @@ typedef struct { bool dump_check; bool wb_fmt; uint32_t format; + uint64_t supported_colors; int mode_index; drmModeModeInfo user_mode; } data_t; static data_t data; +enum { + XRGB8888 = 1 << 0, + XRGB2101010 = 1 << 1, +}; + static drmModePropertyBlobRes *get_writeback_formats_blob(igt_output_t *output) { drmModePropertyBlobRes *blob = NULL; @@ -115,32 +133,43 @@ static bool check_writeback_config(igt_display_t *display, igt_output_t *output, { igt_fb_t input_fb, output_fb; igt_plane_t *plane; - uint32_t writeback_format = DRM_FORMAT_XRGB8888; uint64_t modifier = DRM_FORMAT_MOD_LINEAR; int width, height, ret; + uint16_t i; + + const uint32_t fourcc[] = { + DRM_FORMAT_XRGB8888, + DRM_FORMAT_XRGB2101010, + }; igt_output_override_mode(output, &override_mode); width = override_mode.hdisplay; height = override_mode.vdisplay; - ret = igt_create_fb(display->drm_fd, width, height, - DRM_FORMAT_XRGB8888, modifier, &input_fb); - igt_assert(ret >= 0); + for (i = 0; i < sizeof(fourcc) / sizeof(uint32_t); i++) { - ret = igt_create_fb(display->drm_fd, width, height, - writeback_format, modifier, &output_fb); - igt_assert(ret >= 0); + ret = igt_create_fb(display->drm_fd, width, height, + fourcc[i], modifier, &input_fb); + igt_assert(ret >= 0); - plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); - igt_plane_set_fb(plane, &input_fb); - igt_output_set_writeback_fb(output, &output_fb); + ret = igt_create_fb(display->drm_fd, width, height, + fourcc[i], modifier, &output_fb); + igt_assert(ret >= 0); - ret = igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_TEST_ONLY | - DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); - igt_plane_set_fb(plane, NULL); - igt_remove_fb(display->drm_fd, &input_fb); - igt_remove_fb(display->drm_fd, &output_fb); + plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); + igt_plane_set_fb(plane, &input_fb); + igt_output_set_writeback_fb(output, &output_fb); + + ret = igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_TEST_ONLY | + DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); + igt_plane_set_fb(plane, NULL); + igt_remove_fb(display->drm_fd, &input_fb); + igt_remove_fb(display->drm_fd, &output_fb); + + if (!ret) + data.supported_colors |= 1 << i; + } return !ret; } @@ -306,7 +335,7 @@ static void fill_fb(igt_fb_t *fb, uint32_t pixel) uint32_t *ptr; int64_t pixel_count, i; - igt_assert(fb->drm_format == DRM_FORMAT_XRGB8888); + igt_assert(fb->drm_format == DRM_FORMAT_XRGB8888 || fb->drm_format == DRM_FORMAT_XRGB2101010); ptr = igt_fb_map_buffer(fb->fd, fb); igt_assert(ptr); @@ -331,14 +360,21 @@ static void get_and_wait_out_fence(igt_output_t *output) } static void writeback_sequence(igt_output_t *output, igt_plane_t *plane, - igt_fb_t *in_fb, igt_fb_t *out_fbs[], int n_commits) + igt_fb_t *in_fb, igt_fb_t *out_fbs[], + int n_commits, uint32_t fourcc_color) { int i = 0; - uint32_t in_fb_colors[2] = { 0x42ff0000, 0x4200ff00 }; + uint32_t *in_fb_colors; + uint32_t in_fb_colors_8bits[2] = { 0x42ff0000, 0x4200ff00 }; + uint32_t in_fb_colors_10bits[2] = { 0x3ff00000, 0x000ffc00 }; uint32_t clear_color = 0xffffffff; - igt_crc_t cleared_crc, out_expected; + if (fourcc_color == DRM_FORMAT_XRGB2101010) + in_fb_colors = in_fb_colors_10bits; + else + in_fb_colors = in_fb_colors_8bits; + for (i = 0; i < n_commits; i++) { /* Change the input color each time */ fill_fb(in_fb, in_fb_colors[i % 2]); @@ -386,32 +422,33 @@ static void writeback_sequence(igt_output_t *output, igt_plane_t *plane, } static void writeback_check_output(igt_output_t *output, igt_plane_t *plane, - igt_fb_t *input_fb, igt_fb_t *output_fb) + igt_fb_t *input_fb, igt_fb_t *output_fb, + uint32_t fourcc_color) { igt_fb_t *out_fbs[2] = { 0 }; igt_fb_t second_out_fb; unsigned int fb_id; /* One commit, with a writeback. */ - writeback_sequence(output, plane, input_fb, &output_fb, 1); + writeback_sequence(output, plane, input_fb, &output_fb, 1, fourcc_color); /* Two commits, the second with no writeback */ out_fbs[0] = output_fb; - writeback_sequence(output, plane, input_fb, out_fbs, 2); + writeback_sequence(output, plane, input_fb, out_fbs, 2, fourcc_color); /* Two commits, both with writeback */ out_fbs[1] = output_fb; - writeback_sequence(output, plane, input_fb, out_fbs, 2); + writeback_sequence(output, plane, input_fb, out_fbs, 2, fourcc_color); fb_id = igt_create_fb(output_fb->fd, output_fb->width, output_fb->height, - DRM_FORMAT_XRGB8888, + fourcc_color, igt_fb_mod_to_tiling(0), &second_out_fb); igt_require(fb_id > 0); /* Two commits, with different writeback buffers */ out_fbs[1] = &second_out_fb; - writeback_sequence(output, plane, input_fb, out_fbs, 2); + writeback_sequence(output, plane, input_fb, out_fbs, 2, fourcc_color); igt_remove_fb(output_fb->fd, &second_out_fb); } @@ -533,7 +570,7 @@ igt_main_args("b:c:f:dl", long_options, help_str, opt_handler, NULL) igt_display_t display; igt_output_t *output; igt_plane_t *plane; - igt_fb_t input_fb; + igt_fb_t input_fb, input_fb_10bit; drmModeModeInfo mode; unsigned int fb_id; @@ -566,6 +603,14 @@ igt_main_args("b:c:f:dl", long_options, help_str, opt_handler, NULL) DRM_FORMAT_MOD_LINEAR, &input_fb); igt_assert(fb_id >= 0); + + fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, + mode.vdisplay, + DRM_FORMAT_XRGB2101010, + DRM_FORMAT_MOD_LINEAR, + &input_fb_10bit); + igt_assert(fb_id >= 0); + igt_plane_set_fb(plane, &input_fb); if (data.list_modes) @@ -625,6 +670,7 @@ igt_main_args("b:c:f:dl", long_options, help_str, opt_handler, NULL) igt_fb_t output_fb; igt_skip_on(data.dump_check || data.list_modes); + igt_skip_on_f(!(data.supported_colors & XRGB8888),"DRM_FORMAT_XRGB8888 is unsupported\n"); fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, mode.vdisplay, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, @@ -636,18 +682,53 @@ igt_main_args("b:c:f:dl", long_options, help_str, opt_handler, NULL) igt_remove_fb(display.drm_fd, &output_fb); } + igt_describe("Validate XRGB2101010 WRITEBACK_FB_ID with valid and invalid options"); + igt_subtest("writeback-fb-id-XRGB2101010") { + igt_fb_t output_fb; + + igt_skip_on(data.dump_check || data.list_modes); + igt_skip_on_f(!(data.supported_colors & XRGB2101010), "DRM_FORMAT_XRGB2101010 is unsupported\n"); + fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, mode.vdisplay, + DRM_FORMAT_XRGB2101010, + DRM_FORMAT_MOD_LINEAR, + &output_fb); + igt_require(fb_id > 0); + + writeback_fb_id(output, &input_fb_10bit, &output_fb); + + igt_remove_fb(display.drm_fd, &output_fb); + } + igt_describe("Check writeback output with CRC validation"); igt_subtest("writeback-check-output") { igt_fb_t output_fb; igt_skip_on(data.dump_check || data.list_modes); + igt_skip_on_f(!(data.supported_colors & XRGB8888),"DRM_FORMAT_XRGB8888 is unsupported\n"); fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, mode.vdisplay, DRM_FORMAT_XRGB8888, igt_fb_mod_to_tiling(0), &output_fb); igt_require(fb_id > 0); - writeback_check_output(output, plane, &input_fb, &output_fb); + writeback_check_output(output, plane, &input_fb, &output_fb, DRM_FORMAT_XRGB8888); + + igt_remove_fb(display.drm_fd, &output_fb); + } + + igt_describe("Check XRGB2101010 writeback output with CRC validation"); + igt_subtest("writeback-check-output-XRGB2101010") { + igt_fb_t output_fb; + + igt_skip_on(data.dump_check || data.list_modes); + igt_skip_on_f(!(data.supported_colors & XRGB2101010), "DRM_FORMAT_XRGB2101010 is unsupported\n"); + fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, mode.vdisplay, + DRM_FORMAT_XRGB2101010, + igt_fb_mod_to_tiling(0), + &output_fb); + igt_require(fb_id > 0); + + writeback_check_output(output, plane, &input_fb_10bit, &output_fb, DRM_FORMAT_XRGB2101010); igt_remove_fb(display.drm_fd, &output_fb); } @@ -655,6 +736,7 @@ igt_main_args("b:c:f:dl", long_options, help_str, opt_handler, NULL) igt_fixture { detach_crtc(&display, output); igt_remove_fb(display.drm_fd, &input_fb); + igt_remove_fb(display.drm_fd, &input_fb_10bit); igt_display_fini(&display); drm_close_driver(display.drm_fd); } -- 2.42.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev3) 2023-09-15 22:52 [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Alex Hung ` (2 preceding siblings ...) 2023-09-15 22:52 ` [igt-dev] [PATCH 3/3][i-g-t][V3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback Alex Hung @ 2023-09-16 0:28 ` Patchwork 2023-09-16 1:55 ` [igt-dev] ✓ CI.xeBAT: " Patchwork ` (11 subsequent siblings) 15 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2023-09-16 0:28 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7520 bytes --] == Series Details == Series: kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev3) URL : https://patchwork.freedesktop.org/series/123361/ State : success == Summary == CI Bug Log - changes from CI_DRM_13643 -> IGTPW_9808 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/index.html Participating hosts (40 -> 39) ------------------------------ Additional (1): bat-dg2-8 Missing (2): fi-hsw-4770 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9808 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@lmem0: - bat-dg2-9: [PASS][1] -> [INCOMPLETE][2] ([i915#9275]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@gem_mmap@basic: - bat-dg2-8: NOTRUN -> [SKIP][3] ([i915#4083]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-8/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-dg2-8: NOTRUN -> [SKIP][4] ([i915#4077]) +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-8/igt@gem_mmap_gtt@basic.html * igt@gem_tiled_pread_basic: - bat-dg2-8: NOTRUN -> [SKIP][5] ([i915#4079]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-8/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-dg2-8: NOTRUN -> [SKIP][6] ([i915#6621]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-8/igt@i915_pm_rps@basic-api.html * igt@i915_suspend@basic-s3-without-i915: - bat-dg2-8: NOTRUN -> [SKIP][7] ([i915#6645]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-8: NOTRUN -> [SKIP][8] ([i915#5190]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-8: NOTRUN -> [SKIP][9] ([i915#4215] / [i915#5190]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - bat-dg2-8: NOTRUN -> [SKIP][10] ([i915#4212]) +7 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-8: NOTRUN -> [SKIP][11] ([i915#4103] / [i915#4213]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-8: NOTRUN -> [SKIP][12] ([fdo#109285]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-8: NOTRUN -> [SKIP][13] ([i915#5274]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_psr@cursor_plane_move: - bat-dg2-8: NOTRUN -> [SKIP][14] ([i915#1072]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-8/igt@kms_psr@cursor_plane_move.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-8: NOTRUN -> [SKIP][15] ([i915#3555]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-8: NOTRUN -> [SKIP][16] ([i915#3708]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg2-8: NOTRUN -> [SKIP][17] ([i915#3708] / [i915#4077]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - bat-dg2-8: NOTRUN -> [SKIP][18] ([i915#3291] / [i915#3708]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-8/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-dg2-9: [DMESG-FAIL][19] ([i915#7913]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/bat-dg2-9/igt@i915_selftest@live@workarounds.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-dg2-9/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][21] ([i915#8668]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7490 -> IGTPW_9808 CI-20190529: 20190529 CI_DRM_13643: dc4cd6e4e53d46211952fe7c0e408fce3e212993 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9808: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/index.html IGT_7490: 7490 Testlist changes ---------------- +igt@kms_writeback@writeback-check-output-xrgb2101010 +igt@kms_writeback@writeback-fb-id-xrgb2101010 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/index.html [-- Attachment #2: Type: text/html, Size: 8810 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev3) 2023-09-15 22:52 [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Alex Hung ` (3 preceding siblings ...) 2023-09-16 0:28 ` [igt-dev] ✓ Fi.CI.BAT: success for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev3) Patchwork @ 2023-09-16 1:55 ` Patchwork 2023-09-16 10:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (10 subsequent siblings) 15 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2023-09-16 1:55 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1619 bytes --] == Series Details == Series: kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev3) URL : https://patchwork.freedesktop.org/series/123361/ State : success == Summary == CI Bug Log - changes from XEIGT_7490_BAT -> XEIGTPW_9808_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9808_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1: - bat-adlp-7: [FAIL][1] ([Intel XE#480]) -> [PASS][2] +1 other test pass [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7490/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9808/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 Build changes ------------- * IGT: IGT_7490 -> IGTPW_9808 * Linux: xe-375-4a9681392cecd56a372d06b648f7b3a37fdd5c63 -> xe-376-9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d IGTPW_9808: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/index.html IGT_7490: 7490 xe-375-4a9681392cecd56a372d06b648f7b3a37fdd5c63: 4a9681392cecd56a372d06b648f7b3a37fdd5c63 xe-376-9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d: 9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9808/index.html [-- Attachment #2: Type: text/html, Size: 2195 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev3) 2023-09-15 22:52 [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Alex Hung ` (4 preceding siblings ...) 2023-09-16 1:55 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-09-16 10:35 ` Patchwork 2023-09-18 19:41 ` [igt-dev] ✓ CI.xeBAT: success for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev4) Patchwork ` (9 subsequent siblings) 15 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2023-09-16 10:35 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100288 bytes --] == Series Details == Series: kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev3) URL : https://patchwork.freedesktop.org/series/123361/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13643_full -> IGTPW_9808_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9808_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9808_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9808/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9808_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-1/igt@gem_exec_suspend@basic-s0@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-3/igt@gem_exec_suspend@basic-s0@smem.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-mtlp: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * {igt@kms_writeback@writeback-fb-id-xrgb2101010} (NEW): - shard-dg2: NOTRUN -> [SKIP][4] +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][5] +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][6] +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-14/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][7] +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-mtlp: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_pm_dc@dc9-dpms}: - shard-apl: [SKIP][9] ([fdo#109271]) -> [FAIL][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-apl1/igt@kms_pm_dc@dc9-dpms.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-apl7/igt@kms_pm_dc@dc9-dpms.html New tests --------- New tests have been introduced between CI_DRM_13643_full and IGTPW_9808_full: ### New IGT tests (2) ### * igt@kms_writeback@writeback-check-output-xrgb2101010: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@kms_writeback@writeback-fb-id-xrgb2101010: - Statuses : 8 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9808_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8411]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-1/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8411]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#8411]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-1/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#7701]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-4/igt@device_reset@cold-reset-bound.html * igt@drm_buddy@drm_buddy_test: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#8661]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-16/igt@drm_buddy@drm_buddy_test.html * igt@drm_fdinfo@isolation@rcs0: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8414]) +14 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-3/igt@drm_fdinfo@isolation@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][17] -> [FAIL][18] ([i915#7742]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#8414]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-6/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@drm_mm@drm_mm_test: - shard-snb: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#8661]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-snb1/igt@drm_mm@drm_mm_test.html - shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#8661]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-apl3/igt@drm_mm@drm_mm_test.html - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8661]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-11/igt@drm_mm@drm_mm_test.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#3281]) +5 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-7/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#3936]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-11/igt@gem_busy@semaphore.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4873]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@gem_caching@writes.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#9323]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][27] ([i915#7297]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#6335]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#8562]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-2/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_isolation@preservation-s3@ccs3: - shard-dg2: NOTRUN -> [INCOMPLETE][30] ([i915#9162]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-6/igt@gem_ctx_isolation@preservation-s3@ccs3.html * igt@gem_ctx_param@set-priority-not-supported: - shard-rkl: NOTRUN -> [SKIP][31] ([fdo#109314]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-6/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#8555]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#1099]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-snb2/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-1/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#280]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-2/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@in-flight-suspend: - shard-snb: NOTRUN -> [DMESG-WARN][36] ([i915#8841]) +4 other tests dmesg-warn [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-snb2/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][37] -> [FAIL][38] ([i915#5784]) +1 other test fail [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-14/igt@gem_eio@reset-stress.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-19/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4771]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-18/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4771]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-11/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-7/igt@gem_exec_balancer@sliced.html * igt@gem_exec_fair@basic-none: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4473] / [i915#4771]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-1/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [PASS][43] -> [FAIL][44] ([i915#2842]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-glk5/igt@gem_exec_fair@basic-none-share@rcs0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-glk7/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: NOTRUN -> [FAIL][45] ([i915#2842]) +4 other tests fail [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace-solo: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-16/igt@gem_exec_fair@basic-pace-solo.html - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4473]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-6/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [PASS][48] -> [FAIL][49] ([i915#2842]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fence@parallel@vcs0: - shard-mtlp: NOTRUN -> [DMESG-FAIL][50] ([i915#8962] / [i915#9121]) +2 other tests dmesg-fail [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-4/igt@gem_exec_fence@parallel@vcs0.html * igt@gem_exec_fence@parallel@vecs0: - shard-mtlp: NOTRUN -> [FAIL][51] ([i915#8957]) +2 other tests fail [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-4/igt@gem_exec_fence@parallel@vecs0.html * igt@gem_exec_fence@submit3: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4812]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-2/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3711]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-1/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3539] / [i915#4852]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3539]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-10/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-tglu: NOTRUN -> [SKIP][56] ([i915#7697]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-7/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][57] ([fdo#109283] / [i915#5107]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-1/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-root: - shard-mtlp: NOTRUN -> [SKIP][58] ([fdo#112283]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-5/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3281]) +24 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3281]) +14 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_schedule@preempt-hang@vcs0: - shard-mtlp: NOTRUN -> [ABORT][61] ([i915#9262]) +10 other tests abort [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-3/igt@gem_exec_schedule@preempt-hang@vcs0.html * igt@gem_exec_schedule@preempt-hang@vcs1: - shard-mtlp: NOTRUN -> [DMESG-WARN][62] ([i915#9262]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-3/igt@gem_exec_schedule@preempt-hang@vcs1.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4812]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-15/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4537] / [i915#4812]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4537] / [i915#4812]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4860]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-6/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4860]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_gtt_cpu_tlb: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4077]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-17/igt@gem_gtt_cpu_tlb.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4613]) +6 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-2/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@massive: - shard-tglu: NOTRUN -> [SKIP][70] ([i915#4613]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-6/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4613]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-4/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][72] -> [TIMEOUT][73] ([i915#5493]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_media_vme: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#284]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-6/igt@gem_media_vme.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4083]) +9 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-1/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4077]) +27 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_gtt@coherency: - shard-rkl: NOTRUN -> [SKIP][77] ([fdo#111656]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-6/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4077]) +6 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-5/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4083]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-5/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4083]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-14/igt@gem_mmap_wc@read.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#3282]) +6 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-5/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3282]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-10/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-random: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#3282]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-7/igt@gem_pwrite@basic-random.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#4270]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-7/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#4270]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4270]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-11/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4270]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-14/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4270]) +7 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#8428]) +14 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-5/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#4079]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-15/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_gtt: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#4079]) +5 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-4/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4885]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-5/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][93] ([i915#4885]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-10/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4079]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-6/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#4879]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3297]) +6 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-2/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][97] ([fdo#110542]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#3297]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-6/igt@gem_userptr_blits@coherency-unsync.html - shard-rkl: NOTRUN -> [SKIP][99] ([i915#3297]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-7/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#3297] / [i915#4958]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-2/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#3297]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-19/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#3297]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-4/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@vma-merge: - shard-snb: NOTRUN -> [FAIL][103] ([i915#2724]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-snb6/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_linear_blits: - shard-tglu: NOTRUN -> [SKIP][104] ([fdo#109289]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-10/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@basic-allocation: - shard-mtlp: NOTRUN -> [SKIP][105] ([fdo#109289]) +6 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-5/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@basic-offset: - shard-rkl: NOTRUN -> [SKIP][106] ([fdo#109289]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-6/igt@gen7_exec_parse@basic-offset.html * igt@gen7_exec_parse@bitmasks: - shard-dg1: NOTRUN -> [SKIP][107] ([fdo#109289]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-14/igt@gen7_exec_parse@bitmasks.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-dg2: NOTRUN -> [SKIP][108] ([fdo#109289]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-11/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#2527]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-7/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#2527]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-12/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#2856]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-2/igt@gen9_exec_parse@unaligned-access.html * igt@gen9_exec_parse@unaligned-jump: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#2856]) +5 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: NOTRUN -> [FAIL][113] ([i915#7069]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][114] -> [DMESG-WARN][115] ([i915#8617]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#8436]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-1/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#6590]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-2/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#6590]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-4/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#1397]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg1: [PASS][120] -> [SKIP][121] ([i915#1397]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-tglu: NOTRUN -> [SKIP][122] ([fdo#109506]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-5/igt@i915_pm_rpm@modeset-pc8-residency-stress.html - shard-mtlp: NOTRUN -> [SKIP][123] ([fdo#109293]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-5/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rps@min-max-config-idle: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#6621]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-1/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#8925]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-2/igt@i915_pm_rps@thresholds-park@gt1.html * igt@i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4387]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-12/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#8437]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-3/igt@i915_pm_sseu@full-enable.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#5723]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-1/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][129] ([i915#9311] / [i915#9312]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-10/igt@i915_selftest@mock@memory_region.html - shard-mtlp: NOTRUN -> [DMESG-WARN][130] ([i915#9311] / [i915#9312]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-5/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#6645]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#4212]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4212]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-14/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#8709]) +11 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#8502]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [FAIL][136] ([i915#8247]) +1 other test fail [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-1/igt@kms_async_flips@crc@pipe-b-edp-1.html * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [DMESG-FAIL][137] ([i915#8561]) +1 other test dmesg-fail [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-1/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6228]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-3/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#1769] / [i915#3555]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#1769] / [i915#3555]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][141] ([fdo#111615] / [i915#5286]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-9/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#5286]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#5286]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#4538] / [i915#5286]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [FAIL][145] ([i915#5138]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][146] ([fdo#111614]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-1/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][147] ([fdo#111614] / [i915#3638]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][148] ([fdo#111614]) +6 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#5190]) +11 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][150] ([fdo#111615]) +20 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#4538]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-16/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#4538] / [i915#5190]) +6 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][153] ([fdo#111615]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-2/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#6187]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][155] ([fdo#110723]) +3 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][156] ([fdo#111615]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_joiner@2x-modeset: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#2705]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-1/igt@kms_big_joiner@2x-modeset.html * igt@kms_big_joiner@basic: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#2705]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-3/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3886] / [i915#6095]) +22 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-4/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#3886] / [i915#5354] / [i915#6095]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-6/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#5354] / [i915#6095]) +7 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-1/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][162] ([fdo#109271] / [i915#3886]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-apl4/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#3734] / [i915#5354] / [i915#6095]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-2/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#5354] / [i915#6095]) +3 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-10/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#6095]) +56 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-7/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs_cc: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#5354] / [i915#6095]) +4 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-15/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#3689] / [i915#5354] / [i915#6095]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-4/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#5354]) +19 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-4/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3689] / [i915#3886] / [i915#5354]) +11 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-5/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#3689] / [i915#5354] / [i915#6095]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-16/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][171] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-9/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#3689] / [i915#5354]) +18 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-6/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#3742]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-6/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#7213] / [i915#9010]) +4 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-6/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#4087] / [i915#7213]) +4 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#3742]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-12/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#4087]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-4/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_chamelium_color@ctm-limited-range: - shard-mtlp: NOTRUN -> [SKIP][178] ([fdo#111827]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-5/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2: NOTRUN -> [SKIP][179] ([fdo#111827]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-11/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#7828]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-3/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#7828]) +9 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html - shard-rkl: NOTRUN -> [SKIP][182] ([i915#7828]) +7 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-7/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#7828]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-12/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#7828]) +22 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_concurrent@pipe-d: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#4070] / [i915#533] / [i915#6768]) +7 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-4/igt@kms_concurrent@pipe-d.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#7118]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#3299]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-10/igt@kms_content_protection@dp-mst-type-1.html - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3116]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#6944]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-4/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3359]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#3555]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#3359]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#3359]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#3555]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#3555]) +8 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8814]) +4 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2: NOTRUN -> [SKIP][197] ([fdo#109274] / [i915#5354]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-3/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][198] ([fdo#111767] / [i915#3546]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3546]) +10 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#4213]) +2 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][201] ([fdo#111825]) +5 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-rkl: NOTRUN -> [SKIP][202] ([fdo#111767] / [fdo#111825]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#4103]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#8588]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-7/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#3840]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#3840]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#4881]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-2/igt@kms_fence_pin_leak.html - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#4881]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-6/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][209] ([fdo#109274] / [fdo#111767]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-11/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-tglu: NOTRUN -> [SKIP][210] ([fdo#109274] / [i915#3637]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-8/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#8381]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][212] ([fdo#109274]) +8 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3637]) +13 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-5/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-dg1: NOTRUN -> [SKIP][214] ([fdo#111825]) +6 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-18/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#8381]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-12/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#2587] / [i915#2672]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-7/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-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#2672]) +3 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#2672]) +6 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#2672]) +2 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8810]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#2672] / [i915#3555]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-mtlp: NOTRUN -> [SKIP][222] ([fdo#109285]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-2/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#8708]) +21 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#5354]) +57 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][225] ([fdo#109280]) +7 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#3458]) +12 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#3458]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#3023]) +15 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#8708]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][230] ([fdo#111825] / [i915#1825]) +32 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#5460]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#8708]) +25 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#1825]) +65 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_hdr@bpc-switch: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8228]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-2/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8228]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-9/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#6301]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-1/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][239] ([fdo#103375]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-4.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1: - shard-mtlp: [PASS][240] -> [ABORT][241] ([i915#9262]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-mtlp-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1: - shard-mtlp: [PASS][242] -> [DMESG-WARN][243] ([i915#9262]) +2 other tests dmesg-warn [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-mtlp-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#3582]) +7 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-7/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#8821]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-2/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8821]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-1/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#8806]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#6953]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-3/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][249] ([i915#8292]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][250] ([i915#8292]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#5176]) +5 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#5176]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#5176]) +7 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#5176]) +9 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#5176]) +19 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-18/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#5235]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#5235]) +7 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#5235]) +3 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][259] ([fdo#109271]) +189 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-snb2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#5235]) +15 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#5235]) +11 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html * igt@kms_prime@d3hot: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#6524]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#658]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#658]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-9/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][265] ([fdo#111068] / [i915#658]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-apl: NOTRUN -> [SKIP][266] ([fdo#109271] / [i915#658]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-apl4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#658]) +5 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#4348]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-4/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@cursor_plane_move: - shard-tglu: NOTRUN -> [SKIP][269] ([fdo#110189]) +6 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-7/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@primary_render: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#1072]) +6 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-1/igt@kms_psr@primary_render.html * igt@kms_psr@psr2_primary_page_flip: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#1072]) +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-18/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_psr@psr2_sprite_plane_move: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#1072]) +6 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-6/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#4235]) +2 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-7/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#4235]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#5289]) +2 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#4235] / [i915#5190]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-rkl: NOTRUN -> [SKIP][277] ([fdo#111615] / [i915#5289]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_selftest@drm_cmdline: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#8661]) +3 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-3/igt@kms_selftest@drm_cmdline.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8809]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#4098]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-2/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][281] ([IGT#2]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-6/igt@kms_sysfs_edid_timing.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][282] ([fdo#109309]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-1/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-snb: [PASS][283] -> [FAIL][284] ([i915#9196]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-snb4/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-snb5/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-rkl: [PASS][285] -> [FAIL][286] ([i915#9196]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_universal_plane@cursor-fb-leak-pipe-c: - shard-tglu: [PASS][287] -> [FAIL][288] ([i915#9196]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-dg2: [PASS][289] -> [FAIL][290] ([fdo#103375]) +3 other tests fail [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-10/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-5/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-c-query-forked-hang: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#4070] / [i915#6768]) +2 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-2/igt@kms_vblank@pipe-c-query-forked-hang.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#3555] / [i915#8808]) +2 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@kms_vrr@flipline.html * {igt@kms_writeback@writeback-check-output-xrgb2101010} (NEW): - shard-glk: NOTRUN -> [SKIP][293] ([fdo#109271]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-glk7/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#2437]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-7/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#2437]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-7/igt@kms_writeback@writeback-pixel-formats.html - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#2437]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-3/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@blocking@1-vcs1: - shard-mtlp: NOTRUN -> [FAIL][297] ([i915#9259]) +1 other test fail [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-3/igt@perf@blocking@1-vcs1.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#7387]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-6/igt@perf@global-sseu-config-invalid.html * igt@perf@polling-small-buf: - shard-mtlp: NOTRUN -> [FAIL][299] ([i915#1722]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-5/igt@perf@polling-small-buf.html * igt@perf_pmu@busy-double-start@rcs0: - shard-dg1: NOTRUN -> [FAIL][300] ([i915#4349]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-14/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#8850]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-7/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][302] ([fdo#112283]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-11/igt@perf_pmu@event-wait@rcs0.html - shard-rkl: NOTRUN -> [SKIP][303] ([fdo#112283]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-2/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#8440]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-5/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#8516]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-2/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6-suspend: - shard-mtlp: NOTRUN -> [ABORT][306] ([i915#9262] / [i915#9268]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-7/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#8516]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-10/igt@perf_pmu@rc6@other-idle-gt0.html * igt@perf_pmu@semaphore-busy@rcs0: - shard-mtlp: NOTRUN -> [FAIL][308] ([i915#4349]) +8 other tests fail [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@perf_pmu@semaphore-busy@rcs0.html * igt@prime_udl: - shard-dg2: NOTRUN -> [SKIP][309] ([fdo#109291]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-1/igt@prime_udl.html * igt@prime_vgem@basic-fence-blt: - shard-mtlp: NOTRUN -> [FAIL][310] ([i915#8445]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-5/igt@prime_vgem@basic-fence-blt.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#3291] / [i915#3708]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-1/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#3708] / [i915#4077]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@prime_vgem@basic-gtt.html - shard-dg2: NOTRUN -> [SKIP][313] ([i915#3708] / [i915#4077]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-1/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#3708]) +3 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-8/igt@prime_vgem@fence-write-hang.html * igt@sysfs_timeslice_duration@duration@vecs0: - shard-mtlp: NOTRUN -> [FAIL][315] ([i915#9258]) +2 other tests fail [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-3/igt@sysfs_timeslice_duration@duration@vecs0.html * igt@v3d/v3d_submit_cl@bad-multisync-in-sync: - shard-rkl: NOTRUN -> [SKIP][316] ([fdo#109315]) +6 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-6/igt@v3d/v3d_submit_cl@bad-multisync-in-sync.html * igt@v3d/v3d_submit_csd@bad-flag: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#2575]) +10 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-2/igt@v3d/v3d_submit_csd@bad-flag.html * igt@v3d/v3d_submit_csd@bad-multisync-extension: - shard-dg1: NOTRUN -> [SKIP][318] ([i915#2575]) +2 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-15/igt@v3d/v3d_submit_csd@bad-multisync-extension.html * igt@v3d/v3d_wait_bo@map-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][319] ([i915#2575]) +23 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-4/igt@v3d/v3d_wait_bo@map-bo-0ns.html * igt@v3d/v3d_wait_bo@unused-bo-0ns: - shard-tglu: NOTRUN -> [SKIP][320] ([fdo#109315] / [i915#2575]) +2 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-6/igt@v3d/v3d_wait_bo@unused-bo-0ns.html * igt@v3d/v3d_wait_bo@unused-bo-1ns: - shard-apl: NOTRUN -> [SKIP][321] ([fdo#109271]) +55 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-apl2/igt@v3d/v3d_wait_bo@unused-bo-1ns.html * igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done: - shard-tglu: NOTRUN -> [SKIP][322] ([i915#2575]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-2/igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done.html * igt@vc4/vc4_perfmon@create-perfmon-exceed: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#7711]) +15 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-4/igt@vc4/vc4_perfmon@create-perfmon-exceed.html * igt@vc4/vc4_tiling@get-after-free: - shard-dg1: NOTRUN -> [SKIP][324] ([i915#7711]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-14/igt@vc4/vc4_tiling@get-after-free.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#7711]) +9 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-3/igt@vc4/vc4_tiling@get-bad-modifier.html - shard-rkl: NOTRUN -> [SKIP][326] ([i915#7711]) +5 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-7/igt@vc4/vc4_tiling@get-bad-modifier.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][327] ([i915#7742]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [FAIL][329] ([i915#6786]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][331] ([i915#2842]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-apl2/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][333] ([i915#2842]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [FAIL][335] ([i915#2842]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-dg1: [FAIL][337] ([i915#3591]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [SKIP][339] ([i915#1397]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-17/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][341] ([i915#1397]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_suspend@debugfs-reader: - shard-dg2: [FAIL][343] ([fdo#103375]) -> [PASS][344] +2 other tests pass [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-5/igt@i915_suspend@debugfs-reader.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-7/igt@i915_suspend@debugfs-reader.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][345] ([i915#3743]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][347] ([i915#2346]) -> [PASS][348] [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: - shard-dg2: [FAIL][349] ([i915#6880]) -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1: - shard-apl: [INCOMPLETE][351] -> [PASS][352] [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html * igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: [INCOMPLETE][353] -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-rkl: [INCOMPLETE][355] ([i915#8875]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_universal_plane@cursor-fb-leak-pipe-d: - shard-dg1: [FAIL][357] ([i915#9196]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-15/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-14/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html * igt@kms_vblank@pipe-d-ts-continuation-suspend: - shard-mtlp: [ABORT][359] ([i915#9262]) -> [PASS][360] +3 other tests pass [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-mtlp-6/igt@kms_vblank@pipe-d-ts-continuation-suspend.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-mtlp-2/igt@kms_vblank@pipe-d-ts-continuation-suspend.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][361] ([i915#4349]) -> [PASS][362] +3 other tests pass [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html #### Warnings #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][363] ([i915#7461]) -> [INCOMPLETE][364] ([i915#9283]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-tglu: [FAIL][365] ([i915#2681] / [i915#3591]) -> [WARN][366] ([i915#2681]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][367] ([i915#7116]) -> [SKIP][368] ([fdo#109300]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-18/igt@kms_content_protection@mei_interface.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-12/igt@kms_content_protection@mei_interface.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][369] ([i915#3955]) -> [SKIP][370] ([fdo#110189] / [i915#3955]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][371] ([i915#4816]) -> [SKIP][372] ([i915#4070] / [i915#4816]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@primary_mmap_gtt: - shard-dg1: [SKIP][373] ([i915#1072] / [i915#4078]) -> [SKIP][374] ([i915#1072]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-16/igt@kms_psr@primary_mmap_gtt.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-19/igt@kms_psr@primary_mmap_gtt.html * igt@kms_psr@primary_page_flip: - shard-dg1: [SKIP][375] ([i915#1072]) -> [SKIP][376] ([i915#1072] / [i915#4078]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-15/igt@kms_psr@primary_page_flip.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/shard-dg1-16/igt@kms_psr@primary_page_flip.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8436]: https://gitlab.freedesktop.org/drm/intel/issues/8436 [i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437 [i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#880 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9808/index.html [-- Attachment #2: Type: text/html, Size: 123151 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev4) 2023-09-15 22:52 [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Alex Hung ` (5 preceding siblings ...) 2023-09-16 10:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-09-18 19:41 ` Patchwork 2023-09-18 19:50 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork ` (8 subsequent siblings) 15 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2023-09-18 19:41 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1084 bytes --] == Series Details == Series: kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev4) URL : https://patchwork.freedesktop.org/series/123361/ State : success == Summary == CI Bug Log - changes from XEIGT_7493_BAT -> XEIGTPW_9820_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7493 -> IGTPW_9820 * Linux: xe-376-9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d -> xe-377-717f01815b20bde3f081a18f42f31673ce1f107f IGTPW_9820: 9820 IGT_7493: 2517e42d612e0c1ca096acf8b5f6177f7ef4bce7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-376-9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d: 9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d xe-377-717f01815b20bde3f081a18f42f31673ce1f107f: 717f01815b20bde3f081a18f42f31673ce1f107f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9820/index.html [-- Attachment #2: Type: text/html, Size: 1642 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev4) 2023-09-15 22:52 [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Alex Hung ` (6 preceding siblings ...) 2023-09-18 19:41 ` [igt-dev] ✓ CI.xeBAT: success for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev4) Patchwork @ 2023-09-18 19:50 ` Patchwork 2023-09-19 5:30 ` [igt-dev] ✗ CI.xeBAT: failure for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev5) Patchwork ` (7 subsequent siblings) 15 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2023-09-18 19:50 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 11295 bytes --] == Series Details == Series: kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev4) URL : https://patchwork.freedesktop.org/series/123361/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13651 -> IGTPW_9820 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9820 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9820, please notify your bug team (lgci.bug.filing@intel.com) 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_9820/index.html Participating hosts (38 -> 38) ------------------------------ Additional (2): fi-kbl-soraka bat-dg2-8 Missing (2): fi-hsw-4770 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9820: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_suspend@basic-s3@lmem0: - bat-dg2-8: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@gem_exec_suspend@basic-s3@lmem0.html Known issues ------------ Here are the changes found in IGTPW_9820 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@lmem0: - bat-dg2-9: [PASS][2] -> [INCOMPLETE][3] ([i915#9275]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#2190]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@gem_mmap@basic: - bat-dg2-8: NOTRUN -> [SKIP][6] ([i915#4083]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-dg2-8: NOTRUN -> [SKIP][7] ([i915#4077]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@gem_mmap_gtt@basic.html * igt@gem_tiled_pread_basic: - bat-dg2-8: NOTRUN -> [SKIP][8] ([i915#4079]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-dg2-8: NOTRUN -> [SKIP][9] ([i915#6621]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][10] ([i915#1886] / [i915#7913]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@hangcheck: - bat-atsm-1: [PASS][11] -> [INCOMPLETE][12] ([i915#7913]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/bat-atsm-1/igt@i915_selftest@live@hangcheck.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-atsm-1/igt@i915_selftest@live@hangcheck.html * igt@i915_suspend@basic-s3-without-i915: - bat-dg2-8: NOTRUN -> [SKIP][13] ([i915#6645]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-8: NOTRUN -> [SKIP][14] ([i915#5190]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-8: NOTRUN -> [SKIP][15] ([i915#4215] / [i915#5190]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - bat-dg2-8: NOTRUN -> [SKIP][16] ([i915#4212]) +6 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-dg2-8: NOTRUN -> [SKIP][17] ([i915#4212] / [i915#5608]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-8: NOTRUN -> [SKIP][18] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - fi-kbl-soraka: NOTRUN -> [SKIP][19] ([fdo#109271]) +9 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-8: NOTRUN -> [SKIP][20] ([fdo#109285]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-8: NOTRUN -> [SKIP][21] ([i915#5274]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_pipe_crc_basic@nonblocking-crc: - bat-dg2-11: NOTRUN -> [SKIP][22] ([i915#1845]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc.html * igt@kms_psr@cursor_plane_move: - bat-dg2-8: NOTRUN -> [SKIP][23] ([i915#1072]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@kms_psr@cursor_plane_move.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-8: NOTRUN -> [SKIP][24] ([i915#3555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-8: NOTRUN -> [SKIP][25] ([i915#3708]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg2-8: NOTRUN -> [SKIP][26] ([i915#3708] / [i915#4077]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - bat-dg2-8: NOTRUN -> [SKIP][27] ([i915#3291] / [i915#3708]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-8/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [ABORT][28] ([i915#7913]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/fi-bsw-n3050/igt@i915_selftest@live@execlists.html * igt@kms_chamelium_edid@hdmi-edid-read: - {bat-dg2-13}: [DMESG-WARN][30] ([i915#7952]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7493 -> IGTPW_9820 CI-20190529: 20190529 CI_DRM_13651: 61b71c3f061a44a6ab1dcf756918886aa03a5480 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9820: 9820 IGT_7493: 2517e42d612e0c1ca096acf8b5f6177f7ef4bce7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_lease@atomic_implicit_crtc +igt@kms_lease@cursor_implicit_plane +igt@kms_lease@empty_lease +igt@kms_lease@lease_again +igt@kms_lease@lease_get +igt@kms_lease@lease_invalid_connector +igt@kms_lease@lease_invalid_crtc +igt@kms_lease@lease_invalid_plane +igt@kms_lease@lease_revoke +igt@kms_lease@lease_unleased_connector +igt@kms_lease@lease_unleased_crtc +igt@kms_lease@lessee_list +igt@kms_lease@page_flip_implicit_plane +igt@kms_lease@setcrtc_implicit_plane +igt@kms_lease@simple_lease +igt@kms_writeback@writeback-check-output-xrgb2101010 +igt@kms_writeback@writeback-fb-id-xrgb2101010 -igt@kms_lease@atomic-implicit-crtc -igt@kms_lease@cursor-implicit-plane -igt@kms_lease@empty-lease -igt@kms_lease@lease-again -igt@kms_lease@lease-get -igt@kms_lease@lease-invalid-connector -igt@kms_lease@lease-invalid-crtc -igt@kms_lease@lease-invalid-plane -igt@kms_lease@lease-revoke -igt@kms_lease@lease-unleased-connector -igt@kms_lease@lease-unleased-crtc -igt@kms_lease@lessee-list -igt@kms_lease@page-flip-implicit-plane -igt@kms_lease@setcrtc-implicit-plane -igt@kms_lease@simple-lease == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9820/index.html [-- Attachment #2: Type: text/html, Size: 13374 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* [igt-dev] ✗ CI.xeBAT: failure for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev5) 2023-09-15 22:52 [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Alex Hung ` (7 preceding siblings ...) 2023-09-18 19:50 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork @ 2023-09-19 5:30 ` Patchwork 2023-09-19 5:36 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork ` (6 subsequent siblings) 15 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2023-09-19 5:30 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5930 bytes --] == Series Details == Series: kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev5) URL : https://patchwork.freedesktop.org/series/123361/ State : failure == Summary == CI Bug Log - changes from XEIGT_7493_BAT -> XEIGTPW_9826_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_9826_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_9826_BAT, please notify your bug team (lgci.bug.filing@intel.com) 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_9826_BAT: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@basic-flip-vs-modeset@a-dp3: - bat-dg2-oem2: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7493/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-modeset@a-dp3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9826/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-modeset@a-dp3.html Known issues ------------ Here are the changes found in XEIGTPW_9826_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-modeset@b-dp3: - bat-dg2-oem2: [PASS][3] -> [FAIL][4] ([Intel XE#554]) +10 other tests fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7493/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-modeset@b-dp3.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9826/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-modeset@b-dp3.html * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-adlp-7: [PASS][5] -> [FAIL][6] ([Intel XE#480]) +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7493/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9826/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-dp-3: - bat-dg2-oem2: [PASS][7] -> [DMESG-WARN][8] ([Intel XE#547]) +32 other tests dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7493/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-dp-3.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9826/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-dp-3.html * igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-dp-3: - bat-dg2-oem2: [PASS][9] -> [DMESG-FAIL][10] ([Intel XE#712]) +2 other tests dmesg-fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7493/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-dp-3.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9826/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-dp-3.html * igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-3: - bat-dg2-oem2: [PASS][11] -> [DMESG-WARN][12] ([Intel XE#712]) +3 other tests dmesg-warn [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7493/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-3.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9826/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-3.html * igt@kms_pipe_crc_basic@nonblocking-crc: - bat-dg2-oem2: [PASS][13] -> [DMESG-FAIL][14] ([Intel XE#547]) +1 other test dmesg-fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7493/bat-dg2-oem2/igt@kms_pipe_crc_basic@nonblocking-crc.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9826/bat-dg2-oem2/igt@kms_pipe_crc_basic@nonblocking-crc.html #### Warnings #### * igt@kms_frontbuffer_tracking@basic: - bat-dg2-oem2: [FAIL][15] ([Intel XE#608]) -> [DMESG-WARN][16] ([Intel XE#712]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7493/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9826/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - bat-dg2-oem2: [FAIL][17] ([Intel XE#400]) -> [DMESG-WARN][18] ([Intel XE#547]) +2 other tests dmesg-warn [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7493/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9826/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 [Intel XE#547]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/547 [Intel XE#554]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/554 [Intel XE#608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/608 [Intel XE#712]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/712 Build changes ------------- * IGT: IGT_7493 -> IGTPW_9826 * Linux: xe-376-9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d -> xe-379-22df933d86d3e15520b5ef409396a6f507f4ae53 IGTPW_9826: 9826 IGT_7493: 2517e42d612e0c1ca096acf8b5f6177f7ef4bce7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-376-9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d: 9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d xe-379-22df933d86d3e15520b5ef409396a6f507f4ae53: 22df933d86d3e15520b5ef409396a6f507f4ae53 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9826/index.html [-- Attachment #2: Type: text/html, Size: 6946 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev5) 2023-09-15 22:52 [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Alex Hung ` (8 preceding siblings ...) 2023-09-19 5:30 ` [igt-dev] ✗ CI.xeBAT: failure for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev5) Patchwork @ 2023-09-19 5:36 ` Patchwork 2023-09-20 4:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (5 subsequent siblings) 15 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2023-09-19 5:36 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4783 bytes --] == Series Details == Series: kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev5) URL : https://patchwork.freedesktop.org/series/123361/ State : success == Summary == CI Bug Log - changes from CI_DRM_13651 -> IGTPW_9826 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/index.html Participating hosts (38 -> 36) ------------------------------ Additional (1): fi-kbl-soraka Missing (3): fi-hsw-4770 fi-snb-2520m fi-pnv-d510 Known issues ------------ Here are the changes found in IGTPW_9826 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@smem: - bat-dg2-9: [PASS][1] -> [INCOMPLETE][2] ([i915#8797] / [i915#9275]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][5] ([i915#5334] / [i915#7872]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][6] ([i915#1886] / [i915#7913]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@kms_dsc@dsc-basic: - fi-kbl-soraka: NOTRUN -> [SKIP][7] ([fdo#109271]) +9 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [ABORT][8] ([i915#7913]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/fi-bsw-n3050/igt@i915_selftest@live@execlists.html * igt@kms_chamelium_edid@hdmi-edid-read: - {bat-dg2-13}: [DMESG-WARN][10] ([i915#7952]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [FAIL][12] ([IGT#3] / [i915#6121]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#8797]: https://gitlab.freedesktop.org/drm/intel/issues/8797 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7493 -> IGTPW_9826 CI-20190529: 20190529 CI_DRM_13651: 61b71c3f061a44a6ab1dcf756918886aa03a5480 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9826: 9826 IGT_7493: 2517e42d612e0c1ca096acf8b5f6177f7ef4bce7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_writeback@writeback-check-output-xrgb2101010 +igt@kms_writeback@writeback-fb-id-xrgb2101010 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/index.html [-- Attachment #2: Type: text/html, Size: 5808 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev5) 2023-09-15 22:52 [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Alex Hung ` (9 preceding siblings ...) 2023-09-19 5:36 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-09-20 4:47 ` Patchwork 2023-09-22 19:22 ` [igt-dev] ✓ Fi.CI.BAT: success for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev6) Patchwork ` (4 subsequent siblings) 15 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2023-09-20 4:47 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 84632 bytes --] == Series Details == Series: kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev5) URL : https://patchwork.freedesktop.org/series/123361/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13651_full -> IGTPW_9826_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9826_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9826_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9826/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9826_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_schedule@noreorder-priority@rcs0: - shard-mtlp: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-4/igt@gem_exec_schedule@noreorder-priority@rcs0.html * igt@gem_exec_suspend@basic-s0@lmem0: - shard-dg2: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-10/igt@gem_exec_suspend@basic-s0@lmem0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-7/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@gem_exec_whisper@basic-contexts-priority: - shard-mtlp: NOTRUN -> [ABORT][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-priority.html * igt@kms_selftest@drm_dp_mst: - shard-rkl: NOTRUN -> [TIMEOUT][5] +1 other test timeout [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-4/igt@kms_selftest@drm_dp_mst.html * igt@kms_selftest@drm_format_helper: - shard-dg2: NOTRUN -> [TIMEOUT][6] +2 other tests timeout [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@kms_selftest@drm_format_helper.html * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: - shard-apl: [PASS][7] -> [INCOMPLETE][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-apl3/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-apl6/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html * {igt@kms_writeback@writeback-fb-id-xrgb2101010} (NEW): - shard-dg2: NOTRUN -> [SKIP][9] +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][10] +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][11] +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-19/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][12] +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-tglu-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-mtlp: NOTRUN -> [SKIP][13] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html New tests --------- New tests have been introduced between CI_DRM_13651_full and IGTPW_9826_full: ### New IGT tests (2) ### * igt@kms_writeback@writeback-check-output-xrgb2101010: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@kms_writeback@writeback-fb-id-xrgb2101010: - Statuses : 8 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9826_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8411]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-1/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8411]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#7701]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-4/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][17] ([i915#7701]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-1/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-dg2: [PASS][18] -> [INCOMPLETE][19] ([i915#5507]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-6/igt@device_reset@unbind-reset-rebind.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-1/igt@device_reset@unbind-reset-rebind.html - shard-rkl: [PASS][20] -> [INCOMPLETE][21] ([i915#5507]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-1/igt@device_reset@unbind-reset-rebind.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-7/igt@device_reset@unbind-reset-rebind.html - shard-tglu: [PASS][22] -> [INCOMPLETE][23] ([i915#5507]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-3/igt@device_reset@unbind-reset-rebind.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-tglu-3/igt@device_reset@unbind-reset-rebind.html - shard-apl: [PASS][24] -> [INCOMPLETE][25] ([i915#5507]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-apl6/igt@device_reset@unbind-reset-rebind.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-apl6/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#8414]) +9 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-6/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][27] -> [FAIL][28] ([i915#7742]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_fdinfo@virtual-busy-hang-all: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#8414]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-8/igt@drm_fdinfo@virtual-busy-hang-all.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#8414]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-17/igt@drm_fdinfo@virtual-busy-hang-all.html * igt@gem_basic@multigpu-create-close: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#7697]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-6/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@ctrl-surf-copy: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#3555]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-3/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#9323]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-4/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][34] -> [INCOMPLETE][35] ([i915#7297]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-2/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: NOTRUN -> [FAIL][36] ([i915#2410]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-3/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_ctx_persistence@heartbeat-close: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#8555]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#8555]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@legacy-engines-hang@blt: - shard-mtlp: NOTRUN -> [DMESG-WARN][39] ([i915#9262]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-1/igt@gem_ctx_persistence@legacy-engines-hang@blt.html * igt@gem_ctx_persistence@legacy-engines-mixed: - shard-snb: NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#1099]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-snb4/igt@gem_ctx_persistence@legacy-engines-mixed.html * igt@gem_ctx_sseu@mmap-args: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#280]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][42] ([i915#8898]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-snb4/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-sync: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4771]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-2/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-5/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-rkl: [PASS][45] -> [FAIL][46] ([i915#2842]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-6/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][47] -> [FAIL][48] ([i915#2842]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [PASS][49] -> [FAIL][50] ([i915#2842]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4473] / [i915#4771]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-3/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4812]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-2/igt@gem_exec_fence@concurrent.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4812]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-6/igt@gem_exec_fence@submit67.html - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4812]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-14/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3711]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-mtlp: NOTRUN -> [DMESG-FAIL][56] ([i915#8962]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3539]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#3281]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-cpu-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3281]) +11 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3281]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4537] / [i915#4812]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s3@smem: - shard-snb: NOTRUN -> [DMESG-WARN][62] ([i915#8841]) +3 other tests dmesg-warn [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-snb5/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4860]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4860]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-8/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4613]) +5 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-7/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_mmap@pf-nonblock: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-6/igt@gem_mmap@pf-nonblock.html * igt@gem_mmap_gtt@close-race: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4077]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-15/igt@gem_mmap_gtt@close-race.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4077]) +13 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-2/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4077]) +9 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-11/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4083]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-3/igt@gem_mmap_wc@set-cache-level.html * igt@gem_pread@snoop: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-13/igt@gem_pread@snoop.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4270]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-13/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4270]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-2/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4270]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-7/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3282]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-5/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282]) +9 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-5/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8428]) +7 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-5/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4079]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-17/igt@gem_set_tiling_vs_gtt.html * igt@gem_set_tiling_vs_pwrite: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4885]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-3/igt@gem_softpin@evict-snoop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4885]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-6/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4079]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-8/igt@gem_tiled_pread_basic.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4879]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3297]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-1/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-5/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [PASS][86] -> [FAIL][87] ([i915#9353]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-mtlp-1/igt@gem_userptr_blits@nohangcheck.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-6/igt@gem_userptr_blits@nohangcheck.html * igt@gem_userptr_blits@unsync-overlap: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-tglu-4/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@vma-merge: - shard-dg2: NOTRUN -> [FAIL][89] ([i915#3318]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-2/igt@gem_userptr_blits@vma-merge.html * igt@gem_watchdog@default-physical: - shard-mtlp: NOTRUN -> [ABORT][90] ([i915#9262]) +13 other tests abort [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-2/igt@gem_watchdog@default-physical.html * igt@gen7_exec_parse@basic-allocation: - shard-rkl: NOTRUN -> [SKIP][91] ([fdo#109289]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-6/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@basic-allowed: - shard-mtlp: NOTRUN -> [SKIP][92] ([fdo#109289]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-1/igt@gen7_exec_parse@basic-allowed.html * igt@gen9_exec_parse@allowed-single: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#2856]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-5/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#2856]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-6/igt@gen9_exec_parse@basic-rejected.html - shard-dg1: NOTRUN -> [SKIP][95] ([i915#2527]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-13/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#2527]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-4/igt@gen9_exec_parse@bb-start-param.html * igt@i915_fb_tiling: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#4881]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-3/igt@i915_fb_tiling.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: NOTRUN -> [FAIL][98] ([i915#8456]) +2 other tests fail [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-4/igt@i915_hangman@detector@vcs0.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#6227]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-2/igt@i915_module_load@load.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][100] -> [SKIP][101] ([i915#1397]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-2/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#8431]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-6/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][103] -> [SKIP][104] ([i915#1397]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-5/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#6621]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-11/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#8925]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-11/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_rps@thresholds-idle@gt1: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#8925]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-3/igt@i915_pm_rps@thresholds-idle@gt1.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][108] ([fdo#109302]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-6/igt@i915_query@query-topology-unsupported.html - shard-mtlp: NOTRUN -> [SKIP][109] ([fdo#109302]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-3/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@basic-s3-without-i915: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#6645]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-3/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4212]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-11/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4215] / [i915#5190]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#4212]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-6/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#8709]) +11 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][115] ([i915#8247]) +3 other tests fail [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-3/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][116] ([i915#8247]) +3 other tests fail [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-13/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#6228]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-5/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][118] ([fdo#111614]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5286]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-15/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#5286]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [FAIL][121] ([i915#5138]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][122] ([fdo#111614]) +5 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-3/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][123] ([fdo#111614] / [i915#3638]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#6187]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][125] -> [FAIL][126] ([i915#3743]) +1 other test fail [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [SKIP][127] ([fdo#111615]) +12 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#5190]) +6 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-15/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][130] ([fdo#110723]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-rkl: NOTRUN -> [SKIP][131] ([fdo#111615]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5190]) +6 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_joiner@invalid-modeset: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#2705]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-1/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#5354]) +49 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-11/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#3886] / [i915#6095]) +11 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-4/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3886] / [i915#5354] / [i915#6095]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-4/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#5354] / [i915#6095]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-2/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][138] ([fdo#109271] / [i915#3886]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-glk6/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][139] ([fdo#109271] / [i915#3886]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-apl6/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-13/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#6095]) +25 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-5/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#3689] / [i915#3886] / [i915#5354]) +13 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-5/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#5354] / [i915#6095]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-tglu-3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs: - shard-glk: NOTRUN -> [SKIP][144] ([fdo#109271]) +31 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-glk9/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#3689] / [i915#5354]) +20 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-6/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#5354] / [i915#6095]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-17/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#5354]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#3689] / [i915#5354] / [i915#6095]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-19/igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#4087] / [i915#7213]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-3/igt@kms_cdclk@mode-transition-all-outputs.html - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#7213] / [i915#9010]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-6/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#7213]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#4087]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][153] ([fdo#111827]) +4 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-8/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@gamma: - shard-dg2: NOTRUN -> [SKIP][154] ([fdo#111827]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-6/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#7828]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-13/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#7828]) +6 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#7828]) +6 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3299]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3299]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-1/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#7118]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-3/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#6944]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-3/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3359]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#3359]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#3555]) +8 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-32x10.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#3555]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-13/igt@kms_cursor_crc@cursor-sliding-32x10.html - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#8814]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-snb: NOTRUN -> [SKIP][167] ([fdo#109271] / [fdo#111767]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-mtlp: NOTRUN -> [SKIP][168] ([fdo#111767] / [i915#3546]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][169] ([fdo#109274] / [i915#5354]) +8 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][170] -> [FAIL][171] ([i915#2346]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#4213]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#9227]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html - shard-rkl: NOTRUN -> [SKIP][174] ([i915#9227]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-7/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html - shard-dg1: NOTRUN -> [SKIP][175] ([i915#9227]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-19/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#9226] / [i915#9261]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html - shard-rkl: NOTRUN -> [SKIP][177] ([i915#9226] / [i915#9261]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-7/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html - shard-dg1: NOTRUN -> [SKIP][178] ([i915#9226] / [i915#9261]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-19/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#8827]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#3804]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#8812]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-4/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][182] ([i915#8812]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#3840]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-11/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-1/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#8381]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-panning: - shard-rkl: NOTRUN -> [SKIP][186] ([fdo#111825]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-4/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-dg2: NOTRUN -> [SKIP][187] ([fdo#109274]) +6 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3637]) +8 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-6/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#8381]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-6/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#2587] / [i915#2672]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#2672]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#2672]) +4 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#8810]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2672]) +9 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8810]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-8/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-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-mtlp: NOTRUN -> [SKIP][197] ([fdo#109285]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#8708]) +20 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][199] ([fdo#111825]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][200] ([fdo#111825] / [i915#1825]) +5 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#1825]) +30 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3458]) +12 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#8708]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8708]) +9 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][205] ([fdo#110189]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#3458]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][207] ([fdo#109280]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#3023]) +3 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html * igt@kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8228]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8228]) +3 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@kms_hdr@static-swap.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#6403]) +3 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-4/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: - shard-mtlp: [PASS][212] -> [ABORT][213] ([i915#9262]) +1 other test abort [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-mtlp-1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3582]) +7 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-2/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#3546]) +3 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#5176]) +7 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#5176]) +7 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#5176]) +19 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#5176]) +3 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#5235]) +7 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][221] ([fdo#109271]) +208 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-snb2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#5235]) +9 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-dp-1: - shard-apl: NOTRUN -> [SKIP][223] ([fdo#109271]) +45 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-apl2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-dp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#5235]) +11 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#5235]) +19 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-glk: NOTRUN -> [SKIP][226] ([fdo#109271] / [i915#658]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-glk8/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#658]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@psr2_sprite_blt: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#1072]) +4 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-7/igt@kms_psr@psr2_sprite_blt.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#4235]) +2 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-6/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#5289]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][231] ([fdo#111615] / [i915#5289]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#5030]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-5/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#8823]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-snb: [PASS][234] -> [FAIL][235] ([i915#9196]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-snb6/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-snb5/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-rkl: [PASS][236] -> [FAIL][237] ([i915#9196]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-4/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_universal_plane@cursor-fb-leak-pipe-d: - shard-tglu: [PASS][238] -> [FAIL][239] ([i915#9196]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html * igt@kms_vblank@pipe-c-wait-forked-busy: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#4070] / [i915#6768]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-6/igt@kms_vblank@pipe-c-wait-forked-busy.html * igt@kms_vblank@pipe-d-query-forked-busy: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#4070] / [i915#533] / [i915#6768]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-1/igt@kms_vblank@pipe-d-query-forked-busy.html * igt@perf@buffer-fill@0-rcs0: - shard-mtlp: NOTRUN -> [FAIL][242] ([i915#7823] / [i915#9265]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-8/igt@perf@buffer-fill@0-rcs0.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-mtlp: NOTRUN -> [FAIL][243] ([i915#9259]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-5/igt@perf@gen12-group-concurrent-oa-buffer-read.html * igt@perf@per-context-mode-unprivileged: - shard-dg2: NOTRUN -> [SKIP][244] ([fdo#109289]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-2/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-check-all@rcs0: - shard-mtlp: NOTRUN -> [FAIL][245] ([i915#4521]) +2 other tests fail [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-7/igt@perf_pmu@busy-check-all@rcs0.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][246] ([fdo#112283]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][247] ([i915#6806]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-5/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][248] ([i915#5793] / [i915#6121]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-5/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-mtlp: NOTRUN -> [ABORT][249] ([i915#9268] / [i915#9335]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-8/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#3708] / [i915#4077]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-3/igt@prime_vgem@basic-gtt.html - shard-dg2: NOTRUN -> [SKIP][251] ([i915#3708] / [i915#4077]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-5/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#3291] / [i915#3708]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-3/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#3708]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-6/igt@prime_vgem@fence-read-hang.html * igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#2575]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-18/igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync.html * igt@v3d/v3d_perfmon@create-perfmon-0: - shard-rkl: NOTRUN -> [SKIP][255] ([fdo#109315]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-2/igt@v3d/v3d_perfmon@create-perfmon-0.html * igt@v3d/v3d_submit_cl@bad-multisync-out-sync: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#2575]) +14 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-11/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html * igt@v3d/v3d_submit_csd@bad-bo: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#2575]) +12 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-6/igt@v3d/v3d_submit_csd@bad-bo.html * igt@vc4/vc4_mmap@mmap-bo: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#7711]) +9 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-6/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_perfmon@destroy-valid-perfmon: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#7711]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-16/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#7711]) +8 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-3/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_tiling@set-bad-modifier: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#7711]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-4/igt@vc4/vc4_tiling@set-bad-modifier.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - shard-snb: [INCOMPLETE][262] -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-snb1/igt@core_hotunplug@unbind-rebind.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-snb5/igt@core_hotunplug@unbind-rebind.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][264] ([i915#7742]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][266] ([i915#6268]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][268] ([i915#5784]) -> [PASS][269] +1 other test pass [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-15/igt@gem_eio@unwedge-stress.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-19/igt@gem_eio@unwedge-stress.html * igt@gem_exec_endless@dispatch@vecs0: - shard-dg1: [TIMEOUT][270] ([i915#3778]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-16/igt@gem_exec_endless@dispatch@vecs0.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-19/igt@gem_exec_endless@dispatch@vecs0.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglu: [FAIL][272] ([i915#2842]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-6/igt@gem_exec_fair@basic-flow@rcs0.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-tglu-4/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][274] ([i915#2842]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [INCOMPLETE][276] ([i915#5566]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-apl4/igt@gen9_exec_parse@allowed-single.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-apl3/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][278] ([i915#1397]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-2/igt@i915_pm_rpm@dpms-non-lpsp.html - shard-dg1: [SKIP][280] ([i915#1397]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-14/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][282] ([i915#1397]) -> [PASS][283] +1 other test pass [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-6/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_selftest@live@gt_heartbeat: - shard-glk: [DMESG-FAIL][284] ([i915#5334]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-glk2/igt@i915_selftest@live@gt_heartbeat.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-glk4/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg1: [DMESG-WARN][286] ([i915#4391] / [i915#4423]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-17/igt@i915_suspend@basic-s3-without-i915.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-14/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][288] ([i915#2346]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-suspend@b-edp1: - shard-mtlp: [DMESG-WARN][290] ([i915#9262]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-mtlp-4/igt@kms_flip@flip-vs-suspend@b-edp1.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-4/igt@kms_flip@flip-vs-suspend@b-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-dg2: [FAIL][292] ([i915#6880]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-mtlp: [ABORT][294] ([i915#9262]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1: - shard-apl: [INCOMPLETE][296] ([i915#180]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html * igt@kms_plane@pixel-format@pipe-a-planes: - shard-glk: [DMESG-FAIL][298] ([i915#118]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-glk2/igt@kms_plane@pixel-format@pipe-a-planes.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-glk2/igt@kms_plane@pixel-format@pipe-a-planes.html * igt@kms_vblank@pipe-b-ts-continuation-suspend: - shard-dg2: [FAIL][300] ([fdo#103375]) -> [PASS][301] +2 other tests pass [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-5/igt@kms_vblank@pipe-b-ts-continuation-suspend.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-2/igt@kms_vblank@pipe-b-ts-continuation-suspend.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [ABORT][302] ([i915#4983] / [i915#7461]) -> [INCOMPLETE][303] ([i915#4983]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][304] ([i915#5493]) -> [DMESG-WARN][305] ([i915#4936] / [i915#5493]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-tglu: [FAIL][306] ([i915#2681] / [i915#3591]) -> [WARN][307] ([i915#2681]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][308] ([i915#4070] / [i915#4816]) -> [SKIP][309] ([i915#4816]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][310] ([i915#1072]) -> [SKIP][311] ([i915#1072] / [i915#4078]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg1-15/igt@kms_psr@cursor_plane_move.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg1-13/igt@kms_psr@cursor_plane_move.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][312] ([i915#5493]) -> [CRASH][313] ([i915#9351]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13651/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7823]: https://gitlab.freedesktop.org/drm/intel/issues/7823 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431 [i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9259]: https://gitlab.freedesktop.org/drm/intel/issues/9259 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9265]: https://gitlab.freedesktop.org/drm/intel/issues/9265 [i915#9268]: https://gitlab.freedesktop.org/drm/intel/issues/9268 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9335]: https://gitlab.freedesktop.org/drm/intel/issues/9335 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9353]: https://gitlab.freedesktop.org/drm/intel/issues/9353 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7493 -> IGTPW_9826 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13651: 61b71c3f061a44a6ab1dcf756918886aa03a5480 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9826: 9826 IGT_7493: 2517e42d612e0c1ca096acf8b5f6177f7ef4bce7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9826/index.html [-- Attachment #2: Type: text/html, Size: 102272 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev6) 2023-09-15 22:52 [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Alex Hung ` (10 preceding siblings ...) 2023-09-20 4:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-09-22 19:22 ` Patchwork 2023-09-22 20:34 ` [igt-dev] ✓ CI.xeBAT: " Patchwork ` (3 subsequent siblings) 15 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2023-09-22 19:22 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7706 bytes --] == Series Details == Series: kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev6) URL : https://patchwork.freedesktop.org/series/123361/ State : success == Summary == CI Bug Log - changes from CI_DRM_13671 -> IGTPW_9856 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/index.html Participating hosts (39 -> 37) ------------------------------ Additional (1): fi-hsw-4770 Missing (3): fi-kbl-soraka bat-dg2-9 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9856 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - fi-apl-guc: [PASS][1] -> [DMESG-WARN][2] ([i915#180] / [i915#7634]) +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/fi-apl-guc/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/fi-apl-guc/igt@core_hotunplug@unbind-rebind.html * igt@i915_module_load@load: - bat-adlp-6: [PASS][3] -> [DMESG-WARN][4] ([i915#8449]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/bat-adlp-6/igt@i915_module_load@load.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/bat-adlp-6/igt@i915_module_load@load.html * igt@i915_module_load@reload: - fi-apl-guc: [PASS][5] -> [DMESG-WARN][6] ([i915#180] / [i915#1982] / [i915#7634]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/fi-apl-guc/igt@i915_module_load@reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/fi-apl-guc/igt@i915_module_load@reload.html * igt@i915_pm_rpm@module-reload: - fi-apl-guc: [PASS][7] -> [DMESG-WARN][8] ([i915#180] / [i915#7634] / [i915#8585]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/fi-apl-guc/igt@i915_pm_rpm@module-reload.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/fi-apl-guc/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@requests: - bat-mtlp-8: [PASS][9] -> [ABORT][10] ([i915#9262]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/bat-mtlp-8/igt@i915_selftest@live@requests.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@reset: - fi-apl-guc: [PASS][11] -> [DMESG-WARN][12] ([i915#7634]) +36 other tests dmesg-warn [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/fi-apl-guc/igt@i915_selftest@live@reset.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/fi-apl-guc/igt@i915_selftest@live@reset.html * igt@kms_addfb_basic@addfb25-4-tiled: - fi-apl-guc: [PASS][13] -> [DMESG-WARN][14] ([i915#8703]) +39 other tests dmesg-warn [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/fi-apl-guc/igt@kms_addfb_basic@addfb25-4-tiled.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/fi-apl-guc/igt@kms_addfb_basic@addfb25-4-tiled.html * igt@kms_addfb_basic@addfb25-bad-modifier: - fi-apl-guc: [PASS][15] -> [DMESG-WARN][16] ([i915#7634] / [i915#8703]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/fi-apl-guc/igt@kms_addfb_basic@addfb25-bad-modifier.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/fi-apl-guc/igt@kms_addfb_basic@addfb25-bad-modifier.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-hsw-4770: NOTRUN -> [SKIP][17] ([fdo#109271]) +13 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_flip@basic-flip-vs-dpms@c-dp1: - fi-apl-guc: [PASS][18] -> [DMESG-WARN][19] ([i915#180] / [i915#8703]) +32 other tests dmesg-warn [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/fi-apl-guc/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/fi-apl-guc/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html * igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1: - fi-apl-guc: [PASS][20] -> [DMESG-WARN][21] ([i915#180] / [i915#1982] / [i915#8703]) +1 other test dmesg-warn [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/fi-apl-guc/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/fi-apl-guc/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html * igt@kms_flip@basic-plain-flip@b-dp1: - fi-apl-guc: [PASS][22] -> [DMESG-WARN][23] ([i915#180] / [i915#8585] / [i915#8703]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/fi-apl-guc/igt@kms_flip@basic-plain-flip@b-dp1.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/fi-apl-guc/igt@kms_flip@basic-plain-flip@b-dp1.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][24] ([i915#1845]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1: - fi-hsw-4770: NOTRUN -> [DMESG-WARN][25] ([i915#8841]) +6 other tests dmesg-warn [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/fi-hsw-4770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1.html * igt@kms_psr@sprite_plane_onoff: - fi-hsw-4770: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#1072]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html #### Possible fixes #### * igt@kms_chamelium_edid@hdmi-edid-read: - {bat-dg2-13}: [DMESG-WARN][27] ([i915#7952]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#7634]: https://gitlab.freedesktop.org/drm/intel/issues/7634 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#8449]: https://gitlab.freedesktop.org/drm/intel/issues/8449 [i915#8585]: https://gitlab.freedesktop.org/drm/intel/issues/8585 [i915#8703]: https://gitlab.freedesktop.org/drm/intel/issues/8703 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7498 -> IGTPW_9856 CI-20190529: 20190529 CI_DRM_13671: e1973de2c4516e9130157e538014e79c8aa57b41 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9856: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/index.html IGT_7498: 05d14fd260a3cf9dc00ed24733d5589eee32ec08 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_writeback@writeback-check-output-xrgb2101010 +igt@kms_writeback@writeback-fb-id-xrgb2101010 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/index.html [-- Attachment #2: Type: text/html, Size: 9755 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev6) 2023-09-15 22:52 [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Alex Hung ` (11 preceding siblings ...) 2023-09-22 19:22 ` [igt-dev] ✓ Fi.CI.BAT: success for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev6) Patchwork @ 2023-09-22 20:34 ` Patchwork 2023-09-23 22:36 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (2 subsequent siblings) 15 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2023-09-22 20:34 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5418 bytes --] == Series Details == Series: kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev6) URL : https://patchwork.freedesktop.org/series/123361/ State : success == Summary == CI Bug Log - changes from XEIGT_7498_BAT -> XEIGTPW_9856_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9856_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - bat-dg2-oem2: [INCOMPLETE][1] ([Intel XE#729]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7498/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9856/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html * igt@kms_flip@basic-flip-vs-modeset@b-dp3: - bat-dg2-oem2: [FAIL][3] ([Intel XE#708]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7498/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-modeset@b-dp3.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9856/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-modeset@b-dp3.html * igt@kms_flip@basic-flip-vs-wf_vblank@c-dp3: - bat-dg2-oem2: [FAIL][5] ([Intel XE#554]) -> [PASS][6] +10 other tests pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7498/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@c-dp3.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9856/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@c-dp3.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-dp-3: - bat-dg2-oem2: [DMESG-WARN][7] ([Intel XE#547]) -> [PASS][8] +25 other tests pass [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7498/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-dp-3.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9856/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-dp-3.html * igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-dp-3: - bat-dg2-oem2: [DMESG-WARN][9] ([Intel XE#712]) -> [PASS][10] +2 other tests pass [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7498/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-dp-3.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9856/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-dp-3.html * igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-3: - bat-dg2-oem2: [DMESG-FAIL][11] ([Intel XE#712]) -> [PASS][12] +2 other tests pass [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7498/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-3.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9856/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-3.html #### Warnings #### * igt@kms_frontbuffer_tracking@basic: - bat-dg2-oem2: [DMESG-WARN][13] ([Intel XE#712]) -> [FAIL][14] ([Intel XE#608]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7498/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9856/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html - bat-adlp-7: [INCOMPLETE][15] ([Intel XE#632]) -> [INCOMPLETE][16] ([Intel XE#606] / [Intel XE#632]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7498/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9856/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - bat-dg2-oem2: [DMESG-WARN][17] ([Intel XE#547]) -> [FAIL][18] ([Intel XE#400]) +2 other tests fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7498/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9856/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 [Intel XE#547]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/547 [Intel XE#554]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/554 [Intel XE#606]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/606 [Intel XE#608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/608 [Intel XE#632]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/632 [Intel XE#708]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/708 [Intel XE#712]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/712 [Intel XE#729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/729 Build changes ------------- * IGT: IGT_7498 -> IGTPW_9856 IGTPW_9856: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/index.html IGT_7498: 05d14fd260a3cf9dc00ed24733d5589eee32ec08 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-390-6149acb947f2f8b65ee1a058982a5d6fce3124ec: 6149acb947f2f8b65ee1a058982a5d6fce3124ec == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9856/index.html [-- Attachment #2: Type: text/html, Size: 6387 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev6) 2023-09-15 22:52 [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Alex Hung ` (12 preceding siblings ...) 2023-09-22 20:34 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-09-23 22:36 ` Patchwork 2023-09-25 12:46 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 2023-09-25 13:34 ` [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Harry Wentland 15 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2023-09-23 22:36 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 85910 bytes --] == Series Details == Series: kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev6) URL : https://patchwork.freedesktop.org/series/123361/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13671_full -> IGTPW_9856_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9856_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9856_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9856/index.html Participating hosts (9 -> 10) ------------------------------ Additional (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9856_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html * {igt@kms_writeback@writeback-check-output-xrgb2101010} (NEW): - shard-mtlp: NOTRUN -> [SKIP][3] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html * {igt@kms_writeback@writeback-fb-id-xrgb2101010} (NEW): - shard-dg2: NOTRUN -> [SKIP][4] +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][5] +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][6] +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-19/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][7] +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html #### Warnings #### * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-mtlp: [SKIP][8] ([i915#5354] / [i915#6095]) -> [ABORT][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-mtlp-7/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html New tests --------- New tests have been introduced between CI_DRM_13671_full and IGTPW_9856_full: ### New IGT tests (2) ### * igt@kms_writeback@writeback-check-output-xrgb2101010: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt@kms_writeback@writeback-fb-id-xrgb2101010: - Statuses : 8 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9856_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#8411]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8411]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@api_intel_bb@object-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#9318]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#7701]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414]) +11 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@busy-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) +10 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-1/igt@drm_fdinfo@busy-check-all@vecs1.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][16] -> [FAIL][17] ([i915#7742]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#3281]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_busy@semaphore: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#3936]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@gem_busy@semaphore.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#4873]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@gem_caching@read-writes.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#3555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][23] -> [INCOMPLETE][24] ([i915#7297]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-3/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#7697]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@hostile: - shard-snb: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#1099]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb4/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#5882]) +5 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html * igt@gem_ctx_sseu@engines: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@gem_ctx_sseu@engines.html * igt@gem_eio@hibernate: - shard-dg2: [PASS][31] -> [ABORT][32] ([i915#7975] / [i915#8213]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg2-11/igt@gem_eio@hibernate.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-2/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4812]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@sliced: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4812]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#6334]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@pi@vcs0: - shard-mtlp: NOTRUN -> [FAIL][36] ([i915#4475]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-19/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-vip: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4473] / [i915#4771]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][39] ([i915#2842]) +3 other tests fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html - shard-tglu: NOTRUN -> [FAIL][40] ([i915#2842]) +4 other tests fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-10/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-solo: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4473]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-6/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [PASS][42] -> [FAIL][43] ([i915#2842]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][46] ([fdo#112283]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_params@secure-non-root: - shard-mtlp: NOTRUN -> [SKIP][47] ([fdo#112283]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +8 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3281]) +21 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4537]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-7/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@semaphore-power: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4860]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4860]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@heavy-random: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@smem-oom: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@gem_lmem_swapping@smem-oom.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4083]) +7 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@basic: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +6 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@gem_mmap_gtt@basic.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4077]) +16 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-3/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][61] ([i915#2658]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb1/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4270]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-6/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4270]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#4270]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@beyond-eob: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3282]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +11 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][68] ([fdo#109271]) +29 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-glk4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#8428]) +10 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4885]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@gem_softpin@evict-snoop.html * igt@gem_spin_batch@spin-each: - shard-mtlp: NOTRUN -> [DMESG-FAIL][71] ([i915#8962]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@gem_spin_batch@spin-each.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4079]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@gem_tiled_pread_basic.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4079]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-1/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3297]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4880]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gen3_mixed_blits: - shard-rkl: NOTRUN -> [SKIP][77] ([fdo#109289]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@gen3_mixed_blits.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][78] ([fdo#109289]) +8 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@gen3_render_tiledy_blits.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#2856]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@gen9_exec_parse@unaligned-access.html * igt@gen9_exec_parse@unaligned-jump: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#2856]) +6 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@gen9_exec_parse@unaligned-jump.html - shard-rkl: NOTRUN -> [SKIP][81] ([i915#2527]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_hangman@gt-error-state-capture@vcs0: - shard-mtlp: [PASS][82] -> [ABORT][83] ([i915#9262]) +1 other test abort [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-mtlp-6/igt@i915_hangman@gt-error-state-capture@vcs0.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-6/igt@i915_hangman@gt-error-state-capture@vcs0.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#6227]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@i915_module_load@load.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#8399]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][86] ([i915#8399]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-7/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#1397]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#1397]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@pc8-residency: - shard-dg2: NOTRUN -> [SKIP][89] ([fdo#109506]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-2/igt@i915_pm_rpm@pc8-residency.html * igt@i915_pm_rps@min-max-config-idle: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#6621]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#6621]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-6/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#8925]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#6188]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][94] ([i915#9311] / [i915#9312]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-6/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@sysfs-reader: - shard-snb: NOTRUN -> [DMESG-WARN][95] ([i915#8841]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb4/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#4212]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#5190]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4212]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#3826]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#8502] / [i915#8709]) +11 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc.html * igt@kms_async_flips@crc@pipe-d-dp-4: - shard-dg2: NOTRUN -> [FAIL][101] ([i915#8247]) +3 other tests fail [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#1769] / [i915#3555]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][104] ([i915#1769] / [i915#3555]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][105] ([i915#1769] / [i915#3555]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#5286]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [FAIL][107] ([i915#5138]) +1 other test fail [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][108] ([fdo#111614]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][109] ([fdo#111614]) +8 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][110] ([fdo#111614] / [i915#3638]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-mtlp: NOTRUN -> [SKIP][111] ([fdo#111615]) +18 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#5190]) +8 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6187]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][114] ([fdo#110723]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5190]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_joiner@2x-modeset: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#2705]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3734] / [i915#5354] / [i915#6095]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#3886] / [i915#5354] / [i915#6095]) +13 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#5354]) +38 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#3689] / [i915#3886] / [i915#5354]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#5354] / [i915#6095]) +57 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#3689] / [i915#5354] / [i915#6095]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-10/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#3689] / [i915#5354]) +23 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#3886] / [i915#5354] / [i915#6095]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#5354] / [i915#6095]) +5 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-aux-stride-4_tiled_mtl_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#5354] / [i915#6095]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-15/igt@kms_ccs@pipe-c-bad-aux-stride-4_tiled_mtl_mc_ccs.html - shard-tglu: NOTRUN -> [SKIP][127] ([i915#5354] / [i915#6095]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-9/igt@kms_ccs@pipe-c-bad-aux-stride-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][128] ([fdo#109271] / [i915#3886]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-glk9/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#5354]) +13 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-4/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#3742]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#7213] / [i915#9010]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_chamelium_color@ctm-max: - shard-rkl: NOTRUN -> [SKIP][132] ([fdo#111827]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_chamelium_color@ctm-max.html - shard-mtlp: NOTRUN -> [SKIP][133] ([fdo#111827]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#7828]) +7 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#7828]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#7828]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-7/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#7828]) +16 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3299]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@mei_interface: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#8063]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#7118]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-2/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#6944]) +4 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-6/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][142] ([i915#1339]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#3359]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#3555]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3555] / [i915#8814]) +7 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#3359]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][147] ([fdo#111767] / [i915#3546]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#3546]) +9 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#4103] / [i915#4213] / [i915#5608]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: NOTRUN -> [SKIP][150] ([fdo#111825]) +5 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][151] ([fdo#109274] / [i915#5354]) +4 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][152] ([fdo#109274] / [fdo#111767] / [i915#5354]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#9226] / [i915#9261]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#9227]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#8827]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#8588]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#8812]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-6/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#8812]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#3840]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#3840]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3469]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_fence_pin_leak: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#4881]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#3637]) +11 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][164] ([fdo#111767] / [i915#3637]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][165] ([fdo#109274]) +5 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-7/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#2672]) +6 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/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@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#2672]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#2672]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#8810]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#5274]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#1825]) +64 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: - shard-dg2: [PASS][172] -> [FAIL][173] ([i915#6880]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3023]) +13 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3458]) +14 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#8708]) +21 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#5460]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#8708]) +15 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][179] ([fdo#111825] / [i915#1825]) +18 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#8228]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-6/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-swap: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8228]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-4/igt@kms_hdr@static-swap.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#4816]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#6301]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-1/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][184] ([fdo#109289]) +5 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3582]) +7 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#8821]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3555]) +8 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8806]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#5176]) +7 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#5176]) +13 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#5176]) +11 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#5176]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#5235]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#5235]) +11 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][195] ([fdo#109271]) +180 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb5/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#5235]) +19 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#5235]) +7 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#6524] / [i915#6805]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#6524]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#658]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#658]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][202] ([fdo#111068] / [i915#658]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#4348]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@psr2_dpms: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#1072]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-1/igt@kms_psr@psr2_dpms.html * igt@kms_psr@psr2_primary_mmap_gtt: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#1072]) +3 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_psr@psr2_primary_mmap_gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#5461] / [i915#658]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#4235]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#4884]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-13/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#4235] / [i915#5190]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-tglu: NOTRUN -> [SKIP][210] ([fdo#111615] / [i915#5289]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#4235]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8809]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][213] ([i915#5465]) +1 other test fail [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb6/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8823]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#4098]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_vblank@pipe-c-query-forked-busy-hang: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#4070] / [i915#6768]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_vblank@pipe-c-query-forked-busy-hang.html * igt@kms_vblank@pipe-d-ts-continuation-modeset: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#4070] / [i915#533] / [i915#6768]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-6/igt@kms_vblank@pipe-d-ts-continuation-modeset.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8808]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_vrr@flipline.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555]) +7 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#2437]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][221] ([fdo#109271] / [i915#2437]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-glk8/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#7387]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@perf@global-sseu-config.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][223] ([i915#7484]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@busy-idle@vecs1: - shard-dg2: [PASS][224] -> [FAIL][225] ([i915#4349]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg2-2/igt@perf_pmu@busy-idle@vecs1.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@perf_pmu@busy-idle@vecs1.html * igt@perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#8850]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-4/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6-suspend: - shard-mtlp: NOTRUN -> [ABORT][227] ([i915#9262]) +7 other tests abort [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@perf_pmu@rc6-suspend.html * igt@prime_vgem@basic-blt: - shard-mtlp: NOTRUN -> [FAIL][228] ([i915#8445]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@prime_vgem@basic-blt.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#3708] / [i915#4077]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#3291] / [i915#3708]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][231] ([fdo#109295] / [i915#3291] / [i915#3708]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@prime_vgem@basic-fence-read.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#3708]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-14/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-write: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#3708]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#3708]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@prime_vgem@fence-write-hang.html * igt@runner@aborted: - shard-snb: NOTRUN -> [FAIL][235] ([i915#7812] / [i915#8848]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb7/igt@runner@aborted.html - shard-mtlp: NOTRUN -> [FAIL][236] ([i915#7812]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@runner@aborted.html * igt@v3d/v3d_submit_csd@bad-flag: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#2575]) +12 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@v3d/v3d_submit_csd@bad-flag.html * igt@v3d/v3d_wait_bo@map-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2575]) +21 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@v3d/v3d_wait_bo@map-bo-0ns.html * igt@v3d/v3d_wait_bo@unused-bo-0ns: - shard-rkl: NOTRUN -> [SKIP][239] ([fdo#109315]) +6 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@v3d/v3d_wait_bo@unused-bo-0ns.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#7711]) +8 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-7/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_mmap@mmap-bad-handle: - shard-apl: NOTRUN -> [SKIP][241] ([fdo#109271]) +14 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-apl6/igt@vc4/vc4_mmap@mmap-bad-handle.html * igt@vc4/vc4_perfmon@get-values-invalid-pointer: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#7711]) +17 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html * igt@vc4/vc4_wait_bo@unused-bo-1ns: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#7711]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@vc4/vc4_wait_bo@unused-bo-1ns.html #### Possible fixes #### * igt@gem_eio@kms: - shard-dg2: [FAIL][244] ([i915#5784]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg2-6/igt@gem_eio@kms.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-3/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][246] ([i915#5784]) -> [PASS][247] +1 other test pass [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg1-13/igt@gem_eio@unwedge-stress.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-13/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][248] ([i915#2842]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: [FAIL][250] ([i915#2842]) -> [PASS][251] +1 other test pass [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [ABORT][252] ([i915#7975] / [i915#8213]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-7/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@i915_hangman@detector@ccs0: - shard-mtlp: [ABORT][254] ([i915#9262]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-mtlp-8/igt@i915_hangman@detector@ccs0.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@i915_hangman@detector@ccs0.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [FAIL][256] ([i915#7069]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-mtlp-3/igt@i915_hangman@gt-engine-hang@vcs0.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-dg1: [FAIL][258] ([i915#3591]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][260] ([i915#1397]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][262] ([i915#7790]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-snb2/igt@i915_pm_rps@reset.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb1/igt@i915_pm_rps@reset.html * igt@i915_selftest@live@hangcheck: - shard-dg2: [ABORT][264] ([i915#7913]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg2-10/igt@i915_selftest@live@hangcheck.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@i915_selftest@live@hangcheck.html * igt@kms_big_fb@x-tiled-32bpp-rotate-180: - shard-snb: [ABORT][266] -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-snb2/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb4/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [FAIL][268] ([i915#3743]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_color@ctm-blue-to-red@pipe-a: - shard-mtlp: [DMESG-WARN][270] ([i915#2017] / [i915#9157]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-mtlp-1/igt@kms_color@ctm-blue-to-red@pipe-a.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@kms_color@ctm-blue-to-red@pipe-a.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][272] ([i915#2346]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][274] ([i915#2346]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-tglu: [FAIL][276] ([i915#4767]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-tglu-2/igt@kms_fbcon_fbt@fbc-suspend.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-7/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-dg2: [FAIL][278] ([i915#6880]) -> [PASS][279] +1 other test pass [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [SKIP][280] ([i915#433]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-tglu-3/igt@kms_hdmi_inject@inject-audio.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][282] ([i915#8292]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-tglu-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-rkl: [INCOMPLETE][284] -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-rkl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-rkl: [INCOMPLETE][286] ([i915#8875]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-rkl-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-dg1: [FAIL][288] ([i915#9196]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-15/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html - shard-tglu: [FAIL][290] ([i915#9196]) -> [PASS][291] +1 other test pass [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-c: - shard-mtlp: [FAIL][292] ([i915#9196]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-apl: [INCOMPLETE][294] ([i915#180] / [i915#9392]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-apl3/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-apl4/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@perf_pmu@busy-idle@vecs0: - shard-dg1: [FAIL][296] ([i915#4349]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg1-16/igt@perf_pmu@busy-idle@vecs0.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-18/igt@perf_pmu@busy-idle@vecs0.html * igt@prime_vgem@fence-wait@vcs1: - shard-mtlp: [ABORT][298] ([i915#8883]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-mtlp-3/igt@prime_vgem@fence-wait@vcs1.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@prime_vgem@fence-wait@vcs1.html * igt@prime_vgem@fence-wait@vecs0: - shard-mtlp: [DMESG-WARN][300] ([i915#8875]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-mtlp-3/igt@prime_vgem@fence-wait@vecs0.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@prime_vgem@fence-wait@vecs0.html #### Warnings #### * igt@gem_softpin@noreloc-s3: - shard-snb: [DMESG-WARN][302] ([i915#5090] / [i915#8841]) -> [DMESG-WARN][303] ([i915#8841]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-snb4/igt@gem_softpin@noreloc-s3.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb4/igt@gem_softpin@noreloc-s3.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][304] ([i915#7116]) -> [SKIP][305] ([fdo#109300]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg1-16/igt@kms_content_protection@mei_interface.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-13/igt@kms_content_protection@mei_interface.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][306] ([fdo#110189] / [i915#3955]) -> [SKIP][307] ([i915#3955]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-rkl-1/igt@kms_fbcon_fbt@psr.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_fbcon_fbt@psr.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-dg1: [SKIP][308] ([fdo#111825] / [i915#4423]) -> [SKIP][309] ([fdo#111825]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][310] ([i915#4070] / [i915#4816]) -> [SKIP][311] ([i915#4816]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8848]: https://gitlab.freedesktop.org/drm/intel/issues/8848 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8883]: https://gitlab.freedesktop.org/drm/intel/issues/8883 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9157]: https://gitlab.freedesktop.org/drm/intel/issues/9157 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9292]: https://gitlab.freedesktop.org/drm/intel/issues/9292 [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293 [i915#9298]: https://gitlab.freedesktop.org/drm/intel/issues/9298 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9312]: https://gitlab.freedesktop.org/drm/intel/issues/9312 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7498 -> IGTPW_9856 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13671: e1973de2c4516e9130157e538014e79c8aa57b41 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9856: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/index.html IGT_7498: 05d14fd260a3cf9dc00ed24733d5589eee32ec08 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/index.html [-- Attachment #2: Type: text/html, Size: 103271 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev6) 2023-09-15 22:52 [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Alex Hung ` (13 preceding siblings ...) 2023-09-23 22:36 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-09-25 12:46 ` Patchwork 2023-09-25 13:34 ` [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Harry Wentland 15 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2023-09-25 12:46 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 85979 bytes --] == Series Details == Series: kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev6) URL : https://patchwork.freedesktop.org/series/123361/ State : success == Summary == CI Bug Log - changes from CI_DRM_13671_full -> IGTPW_9856_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_9856_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9856_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9856/index.html Participating hosts (9 -> 10) ------------------------------ Additional (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9856_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_writeback@writeback-check-output-xrgb2101010} (NEW): - shard-mtlp: NOTRUN -> [SKIP][1] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html * {igt@kms_writeback@writeback-fb-id-xrgb2101010} (NEW): - shard-dg2: NOTRUN -> [SKIP][2] +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][3] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][4] +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-19/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][5] +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html #### Warnings #### * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-mtlp: [SKIP][6] ([i915#5354] / [i915#6095]) -> [ABORT][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-mtlp-7/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html New tests --------- New tests have been introduced between CI_DRM_13671_full and IGTPW_9856_full: ### New IGT tests (2) ### * igt@kms_writeback@writeback-check-output-xrgb2101010: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt@kms_writeback@writeback-fb-id-xrgb2101010: - Statuses : 8 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9856_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8411]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@api_intel_bb@object-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#9318]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#7701]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414]) +11 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@busy-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +10 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-1/igt@drm_fdinfo@busy-check-all@vecs1.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][14] -> [FAIL][15] ([i915#7742]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#3281]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_busy@semaphore: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#3936]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@gem_busy@semaphore.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#4873]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@gem_caching@read-writes.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#3555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][21] -> [INCOMPLETE][22] ([i915#7297]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-3/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#7697]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@hostile: - shard-snb: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#1099]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb4/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#5882]) +5 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html * igt@gem_ctx_sseu@engines: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@gem_ctx_sseu@engines.html * igt@gem_eio@hibernate: - shard-dg2: [PASS][29] -> [ABORT][30] ([i915#7975] / [i915#8213]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg2-11/igt@gem_eio@hibernate.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-2/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4812]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@sliced: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4812]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#6334]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@pi@vcs0: - shard-mtlp: NOTRUN -> [FAIL][34] ([i915#4475]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-19/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-vip: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4473] / [i915#4771]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][37] ([i915#2842]) +3 other tests fail [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html - shard-tglu: NOTRUN -> [FAIL][38] ([i915#2842]) +4 other tests fail [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-10/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-solo: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4473]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-6/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [PASS][40] -> [FAIL][41] ([i915#2842]) +1 other test fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][44] ([fdo#112283]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_params@secure-non-root: - shard-mtlp: NOTRUN -> [SKIP][45] ([fdo#112283]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3281]) +8 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3281]) +21 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4537]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-7/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@semaphore-power: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4860]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4860]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@heavy-random: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#4613]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@smem-oom: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613]) +6 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@gem_lmem_swapping@smem-oom.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4083]) +7 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@basic: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@gem_mmap_gtt@basic.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4077]) +16 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-3/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][59] ([i915#2658]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb1/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4270]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-6/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4270]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4270]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@beyond-eob: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3282]) +11 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][66] ([fdo#109271]) +29 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-glk4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#8428]) +10 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4885]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@gem_softpin@evict-snoop.html * igt@gem_spin_batch@spin-each: - shard-mtlp: NOTRUN -> [DMESG-FAIL][69] ([i915#8962]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@gem_spin_batch@spin-each.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4079]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@gem_tiled_pread_basic.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4079]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-1/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3297]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3297] / [i915#4880]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gen3_mixed_blits: - shard-rkl: NOTRUN -> [SKIP][75] ([fdo#109289]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@gen3_mixed_blits.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][76] ([fdo#109289]) +8 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@gen3_render_tiledy_blits.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#2856]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@gen9_exec_parse@unaligned-access.html * igt@gen9_exec_parse@unaligned-jump: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#2856]) +6 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@gen9_exec_parse@unaligned-jump.html - shard-rkl: NOTRUN -> [SKIP][79] ([i915#2527]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_hangman@gt-error-state-capture@vcs0: - shard-mtlp: [PASS][80] -> [ABORT][81] ([i915#9262]) +1 other test abort [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-mtlp-6/igt@i915_hangman@gt-error-state-capture@vcs0.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-6/igt@i915_hangman@gt-error-state-capture@vcs0.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#6227]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@i915_module_load@load.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#8399]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#8399]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-7/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][85] -> [INCOMPLETE][86] ([i915#9407]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#1397]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#1397]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@pc8-residency: - shard-dg2: NOTRUN -> [SKIP][89] ([fdo#109506]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-2/igt@i915_pm_rpm@pc8-residency.html * igt@i915_pm_rps@min-max-config-idle: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#6621]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#6621]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-6/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#8925]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#6188]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][94] ([i915#9311] / [i915#9312]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-6/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@sysfs-reader: - shard-snb: NOTRUN -> [DMESG-WARN][95] ([i915#8841]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb4/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#4212]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#5190]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4212]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#3826]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#8502] / [i915#8709]) +11 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc.html * igt@kms_async_flips@crc@pipe-d-dp-4: - shard-dg2: NOTRUN -> [FAIL][101] ([i915#8247]) +3 other tests fail [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#1769] / [i915#3555]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][104] ([i915#1769] / [i915#3555]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][105] ([i915#1769] / [i915#3555]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#5286]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [FAIL][107] ([i915#5138]) +1 other test fail [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][108] ([fdo#111614]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][109] ([fdo#111614]) +8 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][110] ([fdo#111614] / [i915#3638]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-mtlp: NOTRUN -> [SKIP][111] ([fdo#111615]) +18 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#5190]) +8 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6187]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][114] ([fdo#110723]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5190]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_joiner@2x-modeset: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#2705]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3734] / [i915#5354] / [i915#6095]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#3886] / [i915#5354] / [i915#6095]) +13 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#5354]) +38 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#3689] / [i915#3886] / [i915#5354]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#5354] / [i915#6095]) +57 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#3689] / [i915#5354] / [i915#6095]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-10/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#3689] / [i915#5354]) +23 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#3886] / [i915#5354] / [i915#6095]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#5354] / [i915#6095]) +5 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-aux-stride-4_tiled_mtl_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#5354] / [i915#6095]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-15/igt@kms_ccs@pipe-c-bad-aux-stride-4_tiled_mtl_mc_ccs.html - shard-tglu: NOTRUN -> [SKIP][127] ([i915#5354] / [i915#6095]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-9/igt@kms_ccs@pipe-c-bad-aux-stride-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][128] ([fdo#109271] / [i915#3886]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-glk9/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#5354]) +13 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-4/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#3742]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#7213] / [i915#9010]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_chamelium_color@ctm-max: - shard-rkl: NOTRUN -> [SKIP][132] ([fdo#111827]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_chamelium_color@ctm-max.html - shard-mtlp: NOTRUN -> [SKIP][133] ([fdo#111827]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#7828]) +7 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#7828]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#7828]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-7/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#7828]) +16 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3299]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@mei_interface: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#8063]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#7118]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-2/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#6944]) +4 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-6/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][142] ([i915#1339]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#3359]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#3555]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3555] / [i915#8814]) +7 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#3359]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][147] ([fdo#111767] / [i915#3546]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#3546]) +9 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#4103] / [i915#4213] / [i915#5608]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: NOTRUN -> [SKIP][150] ([fdo#111825]) +5 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][151] ([fdo#109274] / [i915#5354]) +4 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][152] ([fdo#109274] / [fdo#111767] / [i915#5354]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#9226] / [i915#9261]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#9227]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#8827]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#8588]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#8812]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-6/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#8812]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#3840]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#3840]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3469]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_fence_pin_leak: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#4881]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#3637]) +11 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][164] ([fdo#111767] / [i915#3637]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][165] ([fdo#109274]) +5 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-7/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#2672]) +6 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/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@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#2672]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#2672]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#8810]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#5274]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#1825]) +64 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: - shard-dg2: [PASS][172] -> [FAIL][173] ([i915#6880]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3023]) +13 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3458]) +14 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#8708]) +21 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#5460]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#8708]) +15 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][179] ([fdo#111825] / [i915#1825]) +18 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#8228]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-6/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-swap: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8228]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-4/igt@kms_hdr@static-swap.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#4816]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#6301]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-1/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][184] ([fdo#109289]) +5 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3582]) +7 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#8821]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3555]) +8 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8806]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#5176]) +7 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#5176]) +13 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#5176]) +11 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#5176]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#5235]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#5235]) +11 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][195] ([fdo#109271]) +180 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb5/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#5235]) +19 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#5235]) +7 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#6524] / [i915#6805]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#6524]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#658]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#658]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][202] ([fdo#111068] / [i915#658]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#4348]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@psr2_dpms: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#1072]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-1/igt@kms_psr@psr2_dpms.html * igt@kms_psr@psr2_primary_mmap_gtt: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#1072]) +3 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_psr@psr2_primary_mmap_gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#5461] / [i915#658]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#4235]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#4884]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-13/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#4235] / [i915#5190]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-tglu: NOTRUN -> [SKIP][210] ([fdo#111615] / [i915#5289]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#4235]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8809]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][213] ([i915#5465]) +1 other test fail [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb6/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8823]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#4098]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_vblank@pipe-c-query-forked-busy-hang: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#4070] / [i915#6768]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@kms_vblank@pipe-c-query-forked-busy-hang.html * igt@kms_vblank@pipe-d-ts-continuation-modeset: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#4070] / [i915#533] / [i915#6768]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-6/igt@kms_vblank@pipe-d-ts-continuation-modeset.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8808]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-3/igt@kms_vrr@flipline.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555]) +7 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#2437]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][221] ([fdo#109271] / [i915#2437]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-glk8/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#7387]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@perf@global-sseu-config.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][223] ([i915#7484]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@busy-idle@vecs1: - shard-dg2: [PASS][224] -> [FAIL][225] ([i915#4349]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg2-2/igt@perf_pmu@busy-idle@vecs1.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@perf_pmu@busy-idle@vecs1.html * igt@perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#8850]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-4/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6-suspend: - shard-mtlp: NOTRUN -> [ABORT][227] ([i915#9262]) +7 other tests abort [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@perf_pmu@rc6-suspend.html * igt@prime_vgem@basic-blt: - shard-mtlp: NOTRUN -> [FAIL][228] ([i915#8445]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@prime_vgem@basic-blt.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#3708] / [i915#4077]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#3291] / [i915#3708]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][231] ([fdo#109295] / [i915#3291] / [i915#3708]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@prime_vgem@basic-fence-read.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#3708]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-14/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-write: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#3708]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#3708]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@prime_vgem@fence-write-hang.html * igt@runner@aborted: - shard-snb: NOTRUN -> [FAIL][235] ([i915#7812] / [i915#8848]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb7/igt@runner@aborted.html - shard-mtlp: NOTRUN -> [FAIL][236] ([i915#7812]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@runner@aborted.html * igt@v3d/v3d_submit_csd@bad-flag: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#2575]) +12 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@v3d/v3d_submit_csd@bad-flag.html * igt@v3d/v3d_wait_bo@map-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2575]) +21 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@v3d/v3d_wait_bo@map-bo-0ns.html * igt@v3d/v3d_wait_bo@unused-bo-0ns: - shard-rkl: NOTRUN -> [SKIP][239] ([fdo#109315]) +6 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-1/igt@v3d/v3d_wait_bo@unused-bo-0ns.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#7711]) +8 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-7/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_mmap@mmap-bad-handle: - shard-apl: NOTRUN -> [SKIP][241] ([fdo#109271]) +14 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-apl6/igt@vc4/vc4_mmap@mmap-bad-handle.html * igt@vc4/vc4_perfmon@get-values-invalid-pointer: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#7711]) +17 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-4/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html * igt@vc4/vc4_wait_bo@unused-bo-1ns: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#7711]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@vc4/vc4_wait_bo@unused-bo-1ns.html #### Possible fixes #### * igt@gem_eio@kms: - shard-dg2: [FAIL][244] ([i915#5784]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg2-6/igt@gem_eio@kms.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-3/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][246] ([i915#5784]) -> [PASS][247] +1 other test pass [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg1-13/igt@gem_eio@unwedge-stress.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-13/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][248] ([i915#2842]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: [FAIL][250] ([i915#2842]) -> [PASS][251] +1 other test pass [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [ABORT][252] ([i915#7975] / [i915#8213]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-7/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@i915_hangman@detector@ccs0: - shard-mtlp: [ABORT][254] ([i915#9262]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-mtlp-8/igt@i915_hangman@detector@ccs0.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-5/igt@i915_hangman@detector@ccs0.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [FAIL][256] ([i915#7069]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-mtlp-3/igt@i915_hangman@gt-engine-hang@vcs0.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-dg1: [FAIL][258] ([i915#3591]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][260] ([i915#1397]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][262] ([i915#7790]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-snb2/igt@i915_pm_rps@reset.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb1/igt@i915_pm_rps@reset.html * igt@i915_selftest@live@hangcheck: - shard-dg2: [ABORT][264] ([i915#7913]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg2-10/igt@i915_selftest@live@hangcheck.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-5/igt@i915_selftest@live@hangcheck.html * igt@kms_big_fb@x-tiled-32bpp-rotate-180: - shard-snb: [ABORT][266] -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-snb2/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb4/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [FAIL][268] ([i915#3743]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_color@ctm-blue-to-red@pipe-a: - shard-mtlp: [DMESG-WARN][270] ([i915#2017] / [i915#9157]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-mtlp-1/igt@kms_color@ctm-blue-to-red@pipe-a.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-1/igt@kms_color@ctm-blue-to-red@pipe-a.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][272] ([i915#2346]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][274] ([i915#2346]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-tglu: [FAIL][276] ([i915#4767]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-tglu-2/igt@kms_fbcon_fbt@fbc-suspend.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-7/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-dg2: [FAIL][278] ([i915#6880]) -> [PASS][279] +1 other test pass [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [SKIP][280] ([i915#433]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-tglu-3/igt@kms_hdmi_inject@inject-audio.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][282] ([i915#8292]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-tglu-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-rkl: [INCOMPLETE][284] -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-rkl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-rkl: [INCOMPLETE][286] ([i915#8875]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-rkl-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-dg1: [FAIL][288] ([i915#9196]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-15/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html - shard-tglu: [FAIL][290] ([i915#9196]) -> [PASS][291] +1 other test pass [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-c: - shard-mtlp: [FAIL][292] ([i915#9196]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-apl: [INCOMPLETE][294] ([i915#180] / [i915#9392]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-apl3/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-apl4/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@perf_pmu@busy-idle@vecs0: - shard-dg1: [FAIL][296] ([i915#4349]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg1-16/igt@perf_pmu@busy-idle@vecs0.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-18/igt@perf_pmu@busy-idle@vecs0.html * igt@prime_vgem@fence-wait@vcs1: - shard-mtlp: [ABORT][298] ([i915#8883]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-mtlp-3/igt@prime_vgem@fence-wait@vcs1.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@prime_vgem@fence-wait@vcs1.html * igt@prime_vgem@fence-wait@vecs0: - shard-mtlp: [DMESG-WARN][300] ([i915#8875]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-mtlp-3/igt@prime_vgem@fence-wait@vecs0.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-mtlp-8/igt@prime_vgem@fence-wait@vecs0.html #### Warnings #### * igt@gem_softpin@noreloc-s3: - shard-snb: [DMESG-WARN][302] ([i915#5090] / [i915#8841]) -> [DMESG-WARN][303] ([i915#8841]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-snb4/igt@gem_softpin@noreloc-s3.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-snb4/igt@gem_softpin@noreloc-s3.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][304] ([i915#7116]) -> [SKIP][305] ([fdo#109300]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg1-16/igt@kms_content_protection@mei_interface.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-13/igt@kms_content_protection@mei_interface.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][306] ([fdo#110189] / [i915#3955]) -> [SKIP][307] ([i915#3955]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-rkl-1/igt@kms_fbcon_fbt@psr.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_fbcon_fbt@psr.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-dg1: [SKIP][308] ([fdo#111825] / [i915#4423]) -> [SKIP][309] ([fdo#111825]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][310] ([i915#4070] / [i915#4816]) -> [SKIP][311] ([i915#4816]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13671/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8848]: https://gitlab.freedesktop.org/drm/intel/issues/8848 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8883]: https://gitlab.freedesktop.org/drm/intel/issues/8883 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9157]: https://gitlab.freedesktop.org/drm/intel/issues/9157 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9292]: https://gitlab.freedesktop.org/drm/intel/issues/9292 [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293 [i915#9298]: https://gitlab.freedesktop.org/drm/intel/issues/9298 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9312]: https://gitlab.freedesktop.org/drm/intel/issues/9312 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392 [i915#9407]: https://gitlab.freedesktop.org/drm/intel/issues/9407 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7498 -> IGTPW_9856 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13671: e1973de2c4516e9130157e538014e79c8aa57b41 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9856: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/index.html IGT_7498: 05d14fd260a3cf9dc00ed24733d5589eee32ec08 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9856/index.html [-- Attachment #2: Type: text/html, Size: 103337 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback 2023-09-15 22:52 [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Alex Hung ` (14 preceding siblings ...) 2023-09-25 12:46 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork @ 2023-09-25 13:34 ` Harry Wentland 15 siblings, 0 replies; 17+ messages in thread From: Harry Wentland @ 2023-09-25 13:34 UTC (permalink / raw) To: Alex Hung, igt-dev; +Cc: brian.starkey, maxime Series is Reviewed-by: Harry Wentland <harry.wentland@amd.com> Harry On 2023-09-15 18:52, Alex Hung wrote: > kms_writeback only checked and supported DRM_FORMAT_XRGB8888. This > patchset enables 10 bit supports in lib and add new subtests for > DRM_FORMAT_XRGB2101010 in kms_writeback. > > V2 - allow kms_writeback to run subtests for multiple DRM_FORMAT_XRGB* > V3 - 1. move uint32_t fourcc[] to check_writeback_config() and > use DRM_FORMAT_XRGB* directly in igt_main_args() > 2. remove incorrect comments > > Alex Hung (3): > lib/igt_fb: use the entire 32 bit for fnv1a_crc > lib/igt_fb: add 10 bits (XRGB2101010) supports in fnv1a_crc > tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback > > lib/igt_fb.c | 15 +++-- > tests/kms_writeback.c | 136 +++++++++++++++++++++++++++++++++--------- > 2 files changed, 116 insertions(+), 35 deletions(-) > ^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2023-09-25 13:34 UTC | newest] Thread overview: 17+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-15 22:52 [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Alex Hung 2023-09-15 22:52 ` [igt-dev] [PATCH 1/3][i-g-t][V3] lib/igt_fb: use the entire 32 bit for fnv1a_crc Alex Hung 2023-09-15 22:52 ` [igt-dev] [PATCH 2/3][i-g-t][V3] lib/igt_fb: add 10 bits (XRGB2101010) supports in fnv1a_crc Alex Hung 2023-09-15 22:52 ` [igt-dev] [PATCH 3/3][i-g-t][V3] tests/kms_writeback: support DRM_FORMAT_XRGB2101010 for writeback Alex Hung 2023-09-16 0:28 ` [igt-dev] ✓ Fi.CI.BAT: success for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev3) Patchwork 2023-09-16 1:55 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-09-16 10:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-09-18 19:41 ` [igt-dev] ✓ CI.xeBAT: success for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev4) Patchwork 2023-09-18 19:50 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork 2023-09-19 5:30 ` [igt-dev] ✗ CI.xeBAT: failure for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev5) Patchwork 2023-09-19 5:36 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-09-20 4:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-09-22 19:22 ` [igt-dev] ✓ Fi.CI.BAT: success for kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback (rev6) Patchwork 2023-09-22 20:34 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-09-23 22:36 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-09-25 12:46 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 2023-09-25 13:34 ` [igt-dev] [PATCH 0/3][i-g-t][V3] kms_writeback: support DRM_FORMAT_XRGB2101010 in kms_writeback Harry Wentland
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox