* [PATCH i-g-t 0/9] IGT KMS Test cleanup
@ 2024-06-10 16:34 Bhanuprakash Modem
2024-06-10 16:34 ` [PATCH i-g-t 1/9] tests/intel/kms_fence_pin_leak: " Bhanuprakash Modem
` (11 more replies)
0 siblings, 12 replies; 13+ messages in thread
From: Bhanuprakash Modem @ 2024-06-10 16:34 UTC (permalink / raw)
To: igt-dev; +Cc: Bhanuprakash Modem
Make sure the below points in IGT cleanup:
- Sanitize the state before starting the subtest.
- Clear the states before exiting the subtest.
- Update existing libdrm APIs with IGT kms APIs.
- Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..)
Bhanuprakash Modem (6):
tests/intel/kms_fence_pin_leak: Test cleanup
tests/intel/kms_pwrite_crc: Test cleanup
tests/kms_dp_aux_dev: Test cleanup
tests/kms_tiled_display: Test cleanup
tests/kms_tv_load_detect: Test cleanup
tests/kms_universal_plane: Test cleanup
Kunal Joshi (2):
tests/intel/kms_pipe_b_c_ivb: Test cleanup
tests/kms_hdmi_inject: Test cleanup
Mohammed Thasleem (1):
tests/kms_properties: Create dynamic subtests
tests/intel/kms_fence_pin_leak.c | 11 +-
tests/intel/kms_pipe_b_c_ivb.c | 9 +-
tests/intel/kms_pwrite_crc.c | 25 ++--
tests/kms_dp_aux_dev.c | 14 ++-
tests/kms_hdmi_inject.c | 6 +-
tests/kms_properties.c | 188 +++++++++++++++----------------
tests/kms_tiled_display.c | 129 ++++++++-------------
tests/kms_tv_load_detect.c | 1 +
tests/kms_universal_plane.c | 10 +-
9 files changed, 182 insertions(+), 211 deletions(-)
--
2.43.2
^ permalink raw reply [flat|nested] 13+ messages in thread* [PATCH i-g-t 1/9] tests/intel/kms_fence_pin_leak: Test cleanup 2024-06-10 16:34 [PATCH i-g-t 0/9] IGT KMS Test cleanup Bhanuprakash Modem @ 2024-06-10 16:34 ` Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 2/9] tests/intel/kms_pipe_b_c_ivb: " Bhanuprakash Modem ` (10 subsequent siblings) 11 siblings, 0 replies; 13+ messages in thread From: Bhanuprakash Modem @ 2024-06-10 16:34 UTC (permalink / raw) To: igt-dev; +Cc: Bhanuprakash Modem Make sure the below points in IGT cleanup: - Sanitize the state before starting the subtest. - Clear the states before exiting the subtest. - Update existing libdrm APIs with IGT kms APIs. - Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..) Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/intel/kms_fence_pin_leak.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/tests/intel/kms_fence_pin_leak.c b/tests/intel/kms_fence_pin_leak.c index 5d25d9ee3..8ccd73a93 100644 --- a/tests/intel/kms_fence_pin_leak.c +++ b/tests/intel/kms_fence_pin_leak.c @@ -199,7 +199,7 @@ static void run_single_test(data_t *data, enum pipe pipe, igt_output_t *output) } igt_plane_set_fb(primary, NULL); - igt_output_set_pipe(output, PIPE_ANY); + igt_output_set_pipe(output, PIPE_NONE); igt_display_commit(display); igt_remove_fb(data->drm_fd, &fb[1]); @@ -234,18 +234,17 @@ igt_simple_main data_t data = {}; data.drm_fd = drm_open_driver_master(DRIVER_INTEL); + kmstest_set_vt_graphics_mode(); + igt_display_require(&data.display, data.drm_fd); + igt_display_require_output(&data.display); + igt_require_gem(data.drm_fd); igt_require(gem_available_fences(data.drm_fd) > 0); igt_require(gem_has_contexts(data.drm_fd)); data.devid = intel_get_drm_devid(data.drm_fd); - - kmstest_set_vt_graphics_mode(); - data.bops = buf_ops_create(data.drm_fd); - igt_display_require(&data.display, data.drm_fd); - alloc_fence_objs(&data); run_test(&data); -- 2.43.2 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t 2/9] tests/intel/kms_pipe_b_c_ivb: Test cleanup 2024-06-10 16:34 [PATCH i-g-t 0/9] IGT KMS Test cleanup Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 1/9] tests/intel/kms_fence_pin_leak: " Bhanuprakash Modem @ 2024-06-10 16:34 ` Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 3/9] tests/intel/kms_pwrite_crc: " Bhanuprakash Modem ` (9 subsequent siblings) 11 siblings, 0 replies; 13+ messages in thread From: Bhanuprakash Modem @ 2024-06-10 16:34 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi, Jeevan B, Swati Sharma, Bhanuprakash Modem From: Kunal Joshi <kunal1.joshi@intel.com> Make sure the below points in IGT cleanup: - Sanitize the state before starting the subtest. - Clear the states before exiting the subtest. - Update existing libdrm APIs with IGT kms APIs. - Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..) v2: - Corrected commit subject. (Swati) - Removed comments (Swati) v3: (Bhanu) - Rebase CC: Jeevan B <jeevan.b@intel.com> Cc: Swati Sharma <swati2.sharma@intel.com> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> Reviewed-by: Jeevan B <jeevan.b@intel.com> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/intel/kms_pipe_b_c_ivb.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/intel/kms_pipe_b_c_ivb.c b/tests/intel/kms_pipe_b_c_ivb.c index 71699e792..73083408a 100644 --- a/tests/intel/kms_pipe_b_c_ivb.c +++ b/tests/intel/kms_pipe_b_c_ivb.c @@ -164,7 +164,7 @@ find_outputs(data_t *data, igt_output_t **output1, igt_output_t **output2) if (pipe == PIPE_C && output != *output1 && !*output2) *output2 = output; - igt_output_set_pipe(output, PIPE_ANY); + igt_output_set_pipe(output, PIPE_NONE); } igt_skip_on_f(!*output1 || !*output2, "Not enough connected outputs\n"); @@ -176,6 +176,7 @@ test_dpms(data_t *data) igt_output_t *output1, *output2; int ret; + igt_display_reset(&data->display); find_outputs(data, &output1, &output2); igt_info("Pipe %s will use connector %s\n", @@ -198,6 +199,8 @@ test_lane_reduction(data_t *data) igt_output_t *output1, *output2; int ret; + igt_display_reset(&data->display); + find_outputs(data, &output1, &output2); igt_info("Pipe %s will use connector %s\n", @@ -221,6 +224,7 @@ test_disable_pipe_B(data_t *data) igt_output_t *output1, *output2; int ret; + igt_display_reset(&data->display); find_outputs(data, &output1, &output2); igt_info("Pipe %s will use connector %s\n", @@ -247,6 +251,7 @@ test_from_C_to_B_with_3_lanes(data_t *data) igt_output_t *output1, *output2; int ret; + igt_display_reset(&data->display); find_outputs(data, &output1, &output2); igt_info("Pipe %s will use connector %s\n", @@ -270,6 +275,7 @@ test_fail_enable_pipe_C_while_B_has_3_lanes(data_t *data) igt_output_t *output1, *output2; int ret; + igt_display_reset(&data->display); find_outputs(data, &output1, &output2); igt_info("Pipe %s will use connector %s\n", @@ -296,6 +302,7 @@ igt_main kmstest_set_vt_graphics_mode(); igt_display_require(&data.display, data.drm_fd); + igt_display_require_output(&data.display); } igt_describe("Tests pipe-B and pipe-C interactions in IVB by enabling pipe-B with mode " -- 2.43.2 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t 3/9] tests/intel/kms_pwrite_crc: Test cleanup 2024-06-10 16:34 [PATCH i-g-t 0/9] IGT KMS Test cleanup Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 1/9] tests/intel/kms_fence_pin_leak: " Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 2/9] tests/intel/kms_pipe_b_c_ivb: " Bhanuprakash Modem @ 2024-06-10 16:34 ` Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 4/9] tests/kms_dp_aux_dev: " Bhanuprakash Modem ` (8 subsequent siblings) 11 siblings, 0 replies; 13+ messages in thread From: Bhanuprakash Modem @ 2024-06-10 16:34 UTC (permalink / raw) To: igt-dev; +Cc: Bhanuprakash Modem Make sure the below points in IGT cleanup: - Sanitize the state before starting the subtest. - Clear the states before exiting the subtest. - Update existing libdrm APIs with IGT kms APIs. - Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..) Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/intel/kms_pwrite_crc.c | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/tests/intel/kms_pwrite_crc.c b/tests/intel/kms_pwrite_crc.c index 12add5da6..c6e4a29fa 100644 --- a/tests/intel/kms_pwrite_crc.c +++ b/tests/intel/kms_pwrite_crc.c @@ -125,7 +125,6 @@ static void prepare_crtc(data_t *data) igt_output_t *output = data->output; drmModeModeInfo *mode; - igt_display_reset(display); /* select the pipe we want to use */ igt_output_set_pipe(output, data->pipe); @@ -161,7 +160,7 @@ static void cleanup_crtc(data_t *data) igt_plane_set_fb(data->primary, NULL); - igt_output_set_pipe(output, PIPE_ANY); + igt_output_set_pipe(output, PIPE_NONE); igt_display_commit(display); igt_remove_fb(data->drm_fd, &data->fb[0]); @@ -195,18 +194,22 @@ static data_t data; igt_simple_main { - data.drm_fd = drm_open_driver_master(DRIVER_INTEL); + igt_fixture { + data.drm_fd = drm_open_driver_master(DRIVER_INTEL); + kmstest_set_vt_graphics_mode(); - data.devid = intel_get_drm_devid(data.drm_fd); + igt_display_require(&data.display, data.drm_fd); + igt_display_require_output(&data.display); + igt_require_pipe_crc(data.drm_fd); - kmstest_set_vt_graphics_mode(); - - igt_require_pipe_crc(data.drm_fd); - - igt_display_require(&data.display, data.drm_fd); + data.devid = intel_get_drm_devid(data.drm_fd); + data.pipe_crc = NULL; + } run_test(&data); - igt_display_fini(&data.display); - drm_close_driver(data.drm_fd); + igt_fixture { + igt_display_fini(&data.display); + drm_close_driver(data.drm_fd); + } } -- 2.43.2 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t 4/9] tests/kms_dp_aux_dev: Test cleanup 2024-06-10 16:34 [PATCH i-g-t 0/9] IGT KMS Test cleanup Bhanuprakash Modem ` (2 preceding siblings ...) 2024-06-10 16:34 ` [PATCH i-g-t 3/9] tests/intel/kms_pwrite_crc: " Bhanuprakash Modem @ 2024-06-10 16:34 ` Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 5/9] tests/kms_hdmi_inject: " Bhanuprakash Modem ` (7 subsequent siblings) 11 siblings, 0 replies; 13+ messages in thread From: Bhanuprakash Modem @ 2024-06-10 16:34 UTC (permalink / raw) To: igt-dev; +Cc: Bhanuprakash Modem Make sure the below points in IGT cleanup: - Sanitize the state before starting the subtest. - Clear the states before exiting the subtest. - Update existing libdrm APIs with IGT kms APIs. - Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..) Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/kms_dp_aux_dev.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/tests/kms_dp_aux_dev.c b/tests/kms_dp_aux_dev.c index 3e1d8be3a..7e1d52254 100644 --- a/tests/kms_dp_aux_dev.c +++ b/tests/kms_dp_aux_dev.c @@ -152,15 +152,19 @@ igt_simple_main drmModeRes *res; int drm_fd; - drm_fd = drm_open_driver_master(DRIVER_ANY); + igt_fixture { + drm_fd = drm_open_driver_master(DRIVER_ANY); - res = drmModeGetResources(drm_fd); - igt_require(res); + res = drmModeGetResources(drm_fd); + igt_require(res); + } for (int i = 0; i < res->count_connectors; i++) valid_connectors += test(drm_fd, res->connectors[i]); igt_require(valid_connectors); - drmModeFreeResources(res); - drm_close_driver(drm_fd); + igt_fixture { + drmModeFreeResources(res); + drm_close_driver(drm_fd); + } } -- 2.43.2 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t 5/9] tests/kms_hdmi_inject: Test cleanup 2024-06-10 16:34 [PATCH i-g-t 0/9] IGT KMS Test cleanup Bhanuprakash Modem ` (3 preceding siblings ...) 2024-06-10 16:34 ` [PATCH i-g-t 4/9] tests/kms_dp_aux_dev: " Bhanuprakash Modem @ 2024-06-10 16:34 ` Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 6/9] tests/kms_tiled_display: " Bhanuprakash Modem ` (6 subsequent siblings) 11 siblings, 0 replies; 13+ messages in thread From: Bhanuprakash Modem @ 2024-06-10 16:34 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi, Jeevan B, Bhanuprakash Modem From: Kunal Joshi <kunal1.joshi@intel.com> Make sure the below points in IGT cleanup: - Sanitize the state before starting the subtest. - Clear the states before exiting the subtest. - Update existing libdrm APIs with IGT kms APIs. - Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..) v2: (Bhanu) - Rebase - Initialize pointers with NULL - Update connector type HDMI checks Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> Reviewed-by: Jeevan B <jeevan.b@intel.com> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/kms_hdmi_inject.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/kms_hdmi_inject.c b/tests/kms_hdmi_inject.c index dce74fac0..d28be38e4 100644 --- a/tests/kms_hdmi_inject.c +++ b/tests/kms_hdmi_inject.c @@ -80,14 +80,15 @@ static drmModeConnector * get_connector(int drm_fd, drmModeRes *res) { int i; - drmModeConnector *connector; + drmModeConnector *connector = NULL; for (i = 0; i < res->count_connectors; i++) { connector = drmModeGetConnectorCurrent(drm_fd, res->connectors[i]); - if (connector->connector_type == DRM_MODE_CONNECTOR_HDMIA) + if (connector->connector_type == DRM_MODE_CONNECTOR_HDMIA || + connector->connector_type == DRM_MODE_CONNECTOR_HDMIB) break; drmModeFreeConnector(connector); @@ -243,6 +244,7 @@ igt_main igt_fixture { drmModeFreeConnector(connector); + drmModeFreeResources(res); drm_close_driver(drm_fd); } } -- 2.43.2 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t 6/9] tests/kms_tiled_display: Test cleanup 2024-06-10 16:34 [PATCH i-g-t 0/9] IGT KMS Test cleanup Bhanuprakash Modem ` (4 preceding siblings ...) 2024-06-10 16:34 ` [PATCH i-g-t 5/9] tests/kms_hdmi_inject: " Bhanuprakash Modem @ 2024-06-10 16:34 ` Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 7/9] tests/kms_tv_load_detect: " Bhanuprakash Modem ` (5 subsequent siblings) 11 siblings, 0 replies; 13+ messages in thread From: Bhanuprakash Modem @ 2024-06-10 16:34 UTC (permalink / raw) To: igt-dev; +Cc: Bhanuprakash Modem Make sure the below points in IGT cleanup: - Sanitize the state before starting the subtest. - Clear the states before exiting the subtest. - Update existing libdrm APIs with IGT kms APIs. - Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..) Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/kms_tiled_display.c | 129 ++++++++++++++------------------------ 1 file changed, 48 insertions(+), 81 deletions(-) diff --git a/tests/kms_tiled_display.c b/tests/kms_tiled_display.c index 3ffd6a9a4..2096a63e1 100644 --- a/tests/kms_tiled_display.c +++ b/tests/kms_tiled_display.c @@ -79,7 +79,6 @@ typedef struct { igt_fb_t fb_test_pattern; igt_display_t display; data_connector_t *conns; - enum igt_commit_style commit; struct timeval first_ts; int linetime_us; @@ -188,25 +187,6 @@ reset_plane(igt_output_t *output) igt_plane_set_fb(primary, NULL); } -static void reset_output(igt_output_t *output) -{ - igt_output_set_pipe(output, PIPE_NONE); -} - -static void reset_mode(data_t *data) -{ - int count; - igt_output_t *output; - data_connector_t *conns = data->conns; - - for (count = 0; count < data->num_h_tiles; count++) { - output = igt_output_from_connector(&data->display, - conns[count].connector); - igt_output_set_pipe(output, PIPE_NONE); - } - igt_display_commit2(&data->display, data->commit); -} - static void test_cleanup(data_t *data) { int count; @@ -215,11 +195,11 @@ static void test_cleanup(data_t *data) for (count = 0; count < data->num_h_tiles; count++) { if (conns[count].output) { reset_plane(conns[count].output); - reset_output(conns[count].output); + igt_output_set_pipe(conns[count].output, PIPE_NONE); } } igt_remove_fb(data->drm_fd, &data->fb_test_pattern); - igt_display_commit2(&data->display, data->commit); + igt_display_commit2(&data->display, COMMIT_ATOMIC); memset(conns, 0, sizeof(data_connector_t) * data->num_h_tiles); } @@ -230,8 +210,8 @@ static int mode_linetime_us(const drmModeModeInfo *mode) static void setup_mode(data_t *data) { - int count = 0, prev = 0, i = 0; - bool pipe_in_use = false, found = false; + int count = 0, i = 0; + bool found = false; enum pipe pipe; drmModeModeInfo *mode; igt_output_t *output; @@ -242,51 +222,45 @@ static void setup_mode(data_t *data) * This is done to ensure a complete modeset occures every * time the test is run. */ - reset_mode(data); + igt_display_reset(&data->display); for (count = 0; count < data->num_h_tiles; count++) { + conns[count].pipe = PIPE_NONE; output = igt_output_from_connector(&data->display, conns[count].connector); for_each_pipe(&data->display, pipe) { - pipe_in_use = false; - found = false; - - if (count > 0) { - for (prev = count - 1; prev >= 0; prev--) { - if (pipe == conns[prev].pipe) { - pipe_in_use = true; - break; - } + if (output->pending_pipe == pipe) + continue; + + igt_output_set_pipe(output, pipe); + for (i = 0; i < conns[count].connector->count_modes; i++) { + mode = &conns[count].connector->modes[i]; + if (mode->vdisplay == conns[count].tile.tile_v_size && + mode->hdisplay == conns[count].tile.tile_h_size) { + found = true; + break; } - if (pipe_in_use) - continue; } - if (igt_pipe_connector_valid(pipe, output)) { - conns[count].pipe = pipe; - conns[count].output = output; - - igt_output_set_pipe(conns[count].output, - conns[count].pipe); - break; + if (!found) { + igt_output_set_pipe(output, PIPE_NONE); + continue; } - } - igt_require(conns[count].pipe != PIPE_NONE); - for (i = 0; i < conns[count].connector->count_modes; i++) { - mode = &conns[count].connector->modes[i]; - if (mode->vdisplay == conns[count].tile.tile_v_size && - mode->hdisplay == conns[count].tile.tile_h_size) { - found = true; - break; + igt_output_override_mode(output, mode); + if (!intel_pipe_output_combo_valid(&data->display)) { + igt_output_set_pipe(output, PIPE_NONE); + continue; } + + conns[count].pipe = pipe; + conns[count].output = output; + break; } - igt_require(found); - igt_output_override_mode(output, mode); + igt_require(conns[count].pipe != PIPE_NONE); data->linetime_us = mode_linetime_us(mode); } - igt_require(intel_pipe_output_combo_valid(&data->display)); igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); } @@ -529,7 +503,6 @@ static void override_edid(data_t *data) igt_output_t *output; int num_outputs = 0; int num_tiles = 0; - drmModeResPtr res; igt_require(data->display.n_pipes >= 2); @@ -551,10 +524,7 @@ static void override_edid(data_t *data) num_tiles = min(num_outputs, data->display.n_pipes); /* disable everything so that we are sure to get a full modeset */ - res = drmModeGetResources(data->drm_fd); - igt_require(res); - kmstest_unset_all_crtcs(data->drm_fd, res); - drmModeFreeResources(res); + igt_display_reset(&data->display); for (int i = 0; i < num_tiles; i++) force_edid_with_tile(data, outputs[i], @@ -563,28 +533,24 @@ static void override_edid(data_t *data) static void basic_test(data_t *data, drmEventContext *drm_event, struct pollfd *pfd) { - int ret; - - get_number_of_h_tiles(data); - igt_debug("Number of Horizontal Tiles: %d\n", - data->num_h_tiles); - igt_require(data->num_h_tiles > 0); - data->conns = calloc(data->num_h_tiles, - sizeof(data_connector_t)); - igt_assert(data->conns); - - get_connectors(data); - setup_mode(data); - setup_framebuffer(data); - timerclear(&data->first_ts); - igt_display_commit_atomic(&data->display, + int ret; + + data->conns = calloc(data->num_h_tiles, + sizeof(data_connector_t)); + igt_assert(data->conns); + + get_connectors(data); + setup_mode(data); + setup_framebuffer(data); + timerclear(&data->first_ts); + igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_NONBLOCK | DRM_MODE_PAGE_FLIP_EVENT, data); - while (!got_all_page_flips(data)) { - ret = poll(pfd, 1, 1000); - igt_assert(ret == 1); - drmHandleEvent(data->drm_fd, drm_event); - } + while (!got_all_page_flips(data)) { + ret = poll(pfd, 1, 1000); + igt_assert(ret == 1); + drmHandleEvent(data->drm_fd, drm_event); + } } igt_main @@ -596,14 +562,15 @@ igt_main data.drm_fd = drm_open_driver_master(DRIVER_ANY); kmstest_set_vt_graphics_mode(); igt_display_require(&data.display, data.drm_fd); + igt_require(data.display.is_atomic); + igt_display_require_output(&data.display); + igt_display_reset(&data.display); pfd.fd = data.drm_fd; pfd.events = POLLIN; drm_event.version = 3; drm_event.page_flip_handler2 = page_flip_handler; - data.commit = data.display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY; - igt_require(data.commit == COMMIT_ATOMIC); get_number_of_h_tiles(&data); igt_debug("Number of real horizontal tiles: %d\n", data.num_h_tiles); -- 2.43.2 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t 7/9] tests/kms_tv_load_detect: Test cleanup 2024-06-10 16:34 [PATCH i-g-t 0/9] IGT KMS Test cleanup Bhanuprakash Modem ` (5 preceding siblings ...) 2024-06-10 16:34 ` [PATCH i-g-t 6/9] tests/kms_tiled_display: " Bhanuprakash Modem @ 2024-06-10 16:34 ` Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 8/9] tests/kms_universal_plane: " Bhanuprakash Modem ` (4 subsequent siblings) 11 siblings, 0 replies; 13+ messages in thread From: Bhanuprakash Modem @ 2024-06-10 16:34 UTC (permalink / raw) To: igt-dev; +Cc: Bhanuprakash Modem Make sure the below points in IGT cleanup: - Sanitize the state before starting the subtest. - Clear the states before exiting the subtest. - Update existing libdrm APIs with IGT kms APIs. - Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..) Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/kms_tv_load_detect.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/kms_tv_load_detect.c b/tests/kms_tv_load_detect.c index 8feed385f..9f6f4071e 100644 --- a/tests/kms_tv_load_detect.c +++ b/tests/kms_tv_load_detect.c @@ -99,6 +99,7 @@ igt_main igt_fixture { drmModeFreeConnector(tv_connector); + drmModeFreeResources(res); drm_close_driver(drm_fd); } } -- 2.43.2 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t 8/9] tests/kms_universal_plane: Test cleanup 2024-06-10 16:34 [PATCH i-g-t 0/9] IGT KMS Test cleanup Bhanuprakash Modem ` (6 preceding siblings ...) 2024-06-10 16:34 ` [PATCH i-g-t 7/9] tests/kms_tv_load_detect: " Bhanuprakash Modem @ 2024-06-10 16:34 ` Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 9/9] tests/kms_properties: Create dynamic subtests Bhanuprakash Modem ` (3 subsequent siblings) 11 siblings, 0 replies; 13+ messages in thread From: Bhanuprakash Modem @ 2024-06-10 16:34 UTC (permalink / raw) To: igt-dev; +Cc: Bhanuprakash Modem Make sure the below points in IGT cleanup: - Sanitize the state before starting the subtest. - Clear the states before exiting the subtest. - Update existing libdrm APIs with IGT kms APIs. - Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..) Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/kms_universal_plane.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c index a6e11777d..8c1ce8143 100644 --- a/tests/kms_universal_plane.c +++ b/tests/kms_universal_plane.c @@ -139,7 +139,7 @@ functional_test_fini(functional_test_t *test, igt_output_t *output) igt_remove_fb(test->data->drm_fd, &test->red_fb); igt_remove_fb(test->data->drm_fd, &test->yellow_fb); - igt_output_set_pipe(output, PIPE_ANY); + igt_output_set_pipe(output, PIPE_NONE); igt_display_commit2(&test->data->display, COMMIT_LEGACY); } @@ -386,7 +386,7 @@ sanity_test_fini(sanity_test_t *test, igt_output_t *output) igt_remove_fb(test->data->drm_fd, &test->undersized_fb); igt_remove_fb(test->data->drm_fd, &test->blue_fb); - igt_output_set_pipe(output, PIPE_ANY); + igt_output_set_pipe(output, PIPE_NONE); igt_display_commit2(&test->data->display, COMMIT_LEGACY); } @@ -516,7 +516,7 @@ pageflip_test_fini(pageflip_test_t *test, igt_output_t *output) igt_remove_fb(test->data->drm_fd, &test->red_fb); igt_remove_fb(test->data->drm_fd, &test->blue_fb); - igt_output_set_pipe(output, PIPE_ANY); + igt_output_set_pipe(output, PIPE_NONE); igt_display_commit2(&test->data->display, COMMIT_LEGACY); } @@ -603,7 +603,7 @@ cursor_leak_test_fini(data_t *data, for (i = 0; i < 10; i++) igt_remove_fb(data->drm_fd, &curs[i]); - igt_output_set_pipe(output, PIPE_ANY); + igt_output_set_pipe(output, PIPE_NONE); } static int @@ -752,7 +752,7 @@ gen9_test_fini(gen9_test_t *test, igt_output_t *output) igt_remove_fb(test->data->drm_fd, &test->smallred_fb); igt_remove_fb(test->data->drm_fd, &test->smallblue_fb); - igt_output_set_pipe(output, PIPE_ANY); + igt_output_set_pipe(output, PIPE_NONE); igt_display_commit2(&test->data->display, COMMIT_LEGACY); } -- 2.43.2 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t 9/9] tests/kms_properties: Create dynamic subtests 2024-06-10 16:34 [PATCH i-g-t 0/9] IGT KMS Test cleanup Bhanuprakash Modem ` (7 preceding siblings ...) 2024-06-10 16:34 ` [PATCH i-g-t 8/9] tests/kms_universal_plane: " Bhanuprakash Modem @ 2024-06-10 16:34 ` Bhanuprakash Modem 2024-06-10 17:14 ` ✓ CI.xeBAT: success for IGT KMS Test cleanup Patchwork ` (2 subsequent siblings) 11 siblings, 0 replies; 13+ messages in thread From: Bhanuprakash Modem @ 2024-06-10 16:34 UTC (permalink / raw) To: igt-dev; +Cc: Mohammed Thasleem, Bhanuprakash Modem From: Mohammed Thasleem <mohammed.thasleem@intel.com> Modified kms_properties to include dynamic test cases. v2: Fixed compilation issue. v3: Removed redundant code. v4: Moved get_prop_sanity calls to igt_subtest_group. v5: Replace for loop with for_each_disconnected_output. v6: Moved cleanup part to igt cleanup patch. v7: (Bhanu) - Rebase - Handle disconnected outputs Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/kms_properties.c | 188 +++++++++++++++++++---------------------- 1 file changed, 88 insertions(+), 100 deletions(-) diff --git a/tests/kms_properties.c b/tests/kms_properties.c index bd414f534..17e6c0471 100644 --- a/tests/kms_properties.c +++ b/tests/kms_properties.c @@ -268,95 +268,76 @@ static void run_connector_property_tests(igt_display_t *display, enum pipe pipe, static void plane_properties(igt_display_t *display, bool atomic) { - bool found_any = false, found; igt_output_t *output; enum pipe pipe; - if (atomic) - igt_skip_on(!display->is_atomic); - - for_each_pipe(display, pipe) { - found = false; - - for_each_valid_output_on_pipe(display, pipe, output) { - igt_display_reset(display); - - igt_output_set_pipe(output, pipe); - if (!intel_pipe_output_combo_valid(display)) - continue; + for_each_pipe_with_single_output(display, pipe, output) { + igt_display_reset(display); - found_any = found = true; + igt_output_set_pipe(output, pipe); + if (!intel_pipe_output_combo_valid(display)) + continue; + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), + igt_output_name(output)) { run_plane_property_tests(display, pipe, output, atomic); - break; } } - - igt_skip_on(!found_any); } static void crtc_properties(igt_display_t *display, bool atomic) { - bool found_any_valid_pipe = false, found; enum pipe pipe; igt_output_t *output; - if (atomic) - igt_skip_on(!display->is_atomic); - - for_each_pipe(display, pipe) { - found = false; + for_each_pipe_with_single_output(display, pipe, output) { + igt_display_reset(display); - for_each_valid_output_on_pipe(display, pipe, output) { - igt_display_reset(display); - - igt_output_set_pipe(output, pipe); - if (!intel_pipe_output_combo_valid(display)) - continue; - - found_any_valid_pipe = found = true; + igt_output_set_pipe(output, pipe); + if (!intel_pipe_output_combo_valid(display)) + continue; + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), + igt_output_name(output)) { run_crtc_property_tests(display, pipe, output, atomic); - break; } } - - igt_skip_on(!found_any_valid_pipe); } static void connector_properties(igt_display_t *display, bool atomic) { - int i; enum pipe pipe; igt_output_t *output; - if (atomic) - igt_skip_on(!display->is_atomic); - for_each_connected_output(display, output) { - bool found = false; + igt_display_reset(display); for_each_pipe(display, pipe) { if (!igt_pipe_connector_valid(pipe, output)) continue; - igt_display_reset(display); - igt_output_set_pipe(output, pipe); - if (!intel_pipe_output_combo_valid(display)) + if (!intel_pipe_output_combo_valid(display)) { + igt_output_set_pipe(output, PIPE_NONE); continue; + } + + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), + igt_output_name(output)) { + run_connector_property_tests(display, pipe, output, atomic); + } - found = true; - run_connector_property_tests(display, pipe, output, atomic); break; } - - igt_assert_f(found, "Connected output should have at least 1 valid crtc\n"); } - for (i = 0; i < display->n_outputs; i++) - if (!igt_output_is_connected(&display->outputs[i])) - run_connector_property_tests(display, PIPE_NONE, &display->outputs[i], atomic); + for_each_disconnected_output(display, output) { + igt_display_reset(display); + + igt_dynamic_f("pipe-None-%s", igt_output_name(output)) + run_connector_property_tests(display, PIPE_NONE, output, atomic); + + } } static void test_invalid_properties(int fd, @@ -424,7 +405,6 @@ static void test_object_invalid_properties(igt_display_t *display, igt_output_t *output; igt_plane_t *plane; enum pipe pipe; - int i; for_each_pipe(display, pipe) test_invalid_properties(display->drm_fd, id, type, display->pipes[pipe].crtc_id, DRM_MODE_OBJECT_CRTC, atomic); @@ -433,7 +413,7 @@ static void test_object_invalid_properties(igt_display_t *display, for_each_plane_on_pipe(display, pipe, plane) test_invalid_properties(display->drm_fd, id, type, plane->drm_plane->plane_id, DRM_MODE_OBJECT_PLANE, atomic); - for (i = 0, output = &display->outputs[0]; i < display->n_outputs; output = &display->outputs[++i]) + for_each_output(display, output) test_invalid_properties(display->drm_fd, id, type, output->id, DRM_MODE_OBJECT_CONNECTOR, atomic); } @@ -763,7 +743,6 @@ static void invalid_properties(igt_display_t *display, bool atomic) igt_output_t *output; igt_plane_t *plane; enum pipe pipe; - int i; if (atomic) igt_skip_on(!display->is_atomic); @@ -775,13 +754,33 @@ static void invalid_properties(igt_display_t *display, bool atomic) for_each_plane_on_pipe(display, pipe, plane) test_object_invalid_properties(display, plane->drm_plane->plane_id, DRM_MODE_OBJECT_PLANE, atomic); - for (i = 0, output = &display->outputs[0]; i < display->n_outputs; output = &display->outputs[++i]) + for_each_output(display, output) test_object_invalid_properties(display, output->id, DRM_MODE_OBJECT_CONNECTOR, atomic); } igt_main { igt_display_t display; + int i; + static const struct { + const char *name; + void (*func)(igt_display_t *, bool); + const bool atomic; + const char *desc; + } tests[] = { + { "plane-properties-legacy", plane_properties, false, + "Tests plane properties with legacy commit" }, + { "plane-properties-atomic", plane_properties, true, + "Tests plane properties with atomic commit" }, + { "crtc-properties-legacy", crtc_properties, false, + "Tests crtc properties with legacy commit" }, + { "crtc-properties-atomic", crtc_properties, true, + "Tests crtc properties with atomic commit" }, + { "connector-properties-legacy", connector_properties, false, + "Tests connector properties with legacy commit" }, + { "connector-properties-atomic", connector_properties, true, + "Tests connector properties with atomic commit" }, + }; igt_fixture { display.drm_fd = drm_open_driver_master(DRIVER_ANY); @@ -791,59 +790,48 @@ igt_main igt_display_require(&display, display.drm_fd); } - igt_describe("Tests plane properties with legacy commit"); - igt_subtest("plane-properties-legacy") - plane_properties(&display, false); - - igt_describe("Tests plane properties with atomic commit"); - igt_subtest("plane-properties-atomic") - plane_properties(&display, true); - - igt_describe("Tests crtc properties with legacy commit"); - igt_subtest("crtc-properties-legacy") - crtc_properties(&display, false); - - igt_describe("Tests crtc properties with atomic commit"); - igt_subtest("crtc-properties-atomic") - crtc_properties(&display, true); - - igt_describe("Tests connector properties with legacy commit"); - igt_subtest("connector-properties-legacy") - connector_properties(&display, false); - - igt_describe("Tests connector properties with atomic commit"); - igt_subtest("connector-properties-atomic") - connector_properties(&display, true); - - igt_describe("Checks each property of any type with combination of mode object with legacy " - "commit and make sure only valid properties are set to mode object else " - "return with relevant error"); - - igt_subtest("invalid-properties-legacy") - invalid_properties(&display, false); - - igt_describe("Checks each property of any type with combination of mode object with atomic " - "commit and make sure only valid properties are set to mode object else " - "return with relevant error"); + for (i = 0; i < ARRAY_SIZE(tests); i++) { + igt_describe_f("%s\n", tests[i].desc); + igt_subtest_with_dynamic_f("%s", tests[i].name) { + if (tests->atomic && !display.is_atomic) + continue; - igt_subtest("invalid-properties-atomic") - invalid_properties(&display, true); + tests[i].func(&display, tests->atomic); + } + } - igt_describe("Test validates the properties of all planes, crtc and connectors with atomic commit"); - igt_subtest("get_properties-sanity-atomic") { - igt_skip_on(!display.is_atomic); - get_prop_sanity(&display, true); + igt_subtest_group { + igt_describe("Checks each property of any type with combination of mode object " + "with legacy commit and make sure only valid properties are set to " + "mode object else return with relevant error"); + igt_subtest("invalid-properties-legacy") + invalid_properties(&display, false); + + igt_describe("Checks each property of any type with combination of mode object " + "with atomic commit and make sure only valid properties are set to " + "mode object else return with relevant error"); + igt_subtest("invalid-properties-atomic") + invalid_properties(&display, true); } - igt_describe("Test validates the properties of all planes, crtc and connectors with legacy commit"); - igt_subtest("get_properties-sanity-non-atomic") { - if (display.is_atomic) - igt_assert_eq(drmSetClientCap(display.drm_fd, DRM_CLIENT_CAP_ATOMIC, 0), 0); + igt_subtest_group { + igt_describe("Test validates the properties of all planes, crtc and connectors with legacy commit"); + igt_subtest("get_properties-sanity-non-atomic") { + if (display.is_atomic) + igt_assert_eq(drmSetClientCap(display.drm_fd, DRM_CLIENT_CAP_ATOMIC, 0), 0); + get_prop_sanity(&display, false); + if (display.is_atomic) + igt_assert_eq(drmSetClientCap(display.drm_fd, DRM_CLIENT_CAP_ATOMIC, 1), 0); + } + } - get_prop_sanity(&display, false); + igt_subtest_group { + igt_fixture + igt_require(display.is_atomic); - if (display.is_atomic) - igt_assert_eq(drmSetClientCap(display.drm_fd, DRM_CLIENT_CAP_ATOMIC, 1), 0); + igt_describe("Test validates the properties of all planes, crtc and connectors with atomic commit"); + igt_subtest("get_properties-sanity-atomic") + get_prop_sanity(&display, true); } igt_fixture { -- 2.43.2 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* ✓ CI.xeBAT: success for IGT KMS Test cleanup 2024-06-10 16:34 [PATCH i-g-t 0/9] IGT KMS Test cleanup Bhanuprakash Modem ` (8 preceding siblings ...) 2024-06-10 16:34 ` [PATCH i-g-t 9/9] tests/kms_properties: Create dynamic subtests Bhanuprakash Modem @ 2024-06-10 17:14 ` Patchwork 2024-06-10 17:25 ` ✗ Fi.CI.BAT: failure " Patchwork 2024-06-10 18:19 ` ✗ CI.xeFULL: " Patchwork 11 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-06-10 17:14 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1647 bytes --] == Series Details == Series: IGT KMS Test cleanup URL : https://patchwork.freedesktop.org/series/134685/ State : success == Summary == CI Bug Log - changes from XEIGT_7880_BAT -> XEIGTPW_11246_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11246_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#324]) +2 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/bat-adlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/bat-adlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 Build changes ------------- * IGT: IGT_7880 -> IGTPW_11246 * Linux: xe-1413-cb97aa28be4f4b914c751ed27bae7782e027826c -> xe-1435-470ebe45d31c7fd7a7298d3a895e83eb7fedd743 IGTPW_11246: 11246 IGT_7880: 73618605b4370cf902267aaf1d25666ff5e26112 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1413-cb97aa28be4f4b914c751ed27bae7782e027826c: cb97aa28be4f4b914c751ed27bae7782e027826c xe-1435-470ebe45d31c7fd7a7298d3a895e83eb7fedd743: 470ebe45d31c7fd7a7298d3a895e83eb7fedd743 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/index.html [-- Attachment #2: Type: text/html, Size: 2224 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Fi.CI.BAT: failure for IGT KMS Test cleanup 2024-06-10 16:34 [PATCH i-g-t 0/9] IGT KMS Test cleanup Bhanuprakash Modem ` (9 preceding siblings ...) 2024-06-10 17:14 ` ✓ CI.xeBAT: success for IGT KMS Test cleanup Patchwork @ 2024-06-10 17:25 ` Patchwork 2024-06-10 18:19 ` ✗ CI.xeFULL: " Patchwork 11 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-06-10 17:25 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6348 bytes --] == Series Details == Series: IGT KMS Test cleanup URL : https://patchwork.freedesktop.org/series/134685/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14912 -> IGTPW_11246 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11246 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11246, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11246/index.html Participating hosts (33 -> 32) ------------------------------ Additional (2): fi-kbl-7567u fi-kbl-8809g Missing (3): bat-mtlp-9 bat-jsl-1 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11246: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@workarounds: - bat-adln-1: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14912/bat-adln-1/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11246/bat-adln-1/igt@i915_selftest@live@workarounds.html Known issues ------------ Here are the changes found in IGTPW_11246 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-kbl-7567u: NOTRUN -> [SKIP][3] ([i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11246/fi-kbl-7567u/igt@gem_huc_copy@huc-copy.html - fi-kbl-8809g: NOTRUN -> [SKIP][4] ([i915#2190]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11246/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-7567u: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11246/fi-kbl-7567u/igt@gem_lmem_swapping@basic.html - fi-kbl-8809g: NOTRUN -> [SKIP][6] ([i915#4613]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11246/fi-kbl-8809g/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@basic@lmem0: - bat-dg2-11: [PASS][7] -> [FAIL][8] ([i915#10378]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14912/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11246/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html * igt@kms_force_connector_basic@force-load-detect: - fi-kbl-7567u: NOTRUN -> [SKIP][9] +11 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11246/fi-kbl-7567u/igt@kms_force_connector_basic@force-load-detect.html - fi-kbl-8809g: NOTRUN -> [SKIP][10] +30 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11246/fi-kbl-8809g/igt@kms_force_connector_basic@force-load-detect.html #### Possible fixes #### * igt@i915_module_load@reload: - {bat-apl-1}: [DMESG-WARN][11] ([i915#180] / [i915#1982] / [i915#8585]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14912/bat-apl-1/igt@i915_module_load@reload.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11246/bat-apl-1/igt@i915_module_load@reload.html * igt@i915_selftest@live@requests: - {bat-apl-1}: [DMESG-WARN][13] ([i915#11328]) -> [PASS][14] +74 other tests pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14912/bat-apl-1/igt@i915_selftest@live@requests.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11246/bat-apl-1/igt@i915_selftest@live@requests.html * igt@kms_addfb_basic@bad-pitch-999: - {bat-apl-1}: [DMESG-WARN][15] ([i915#8585]) -> [PASS][16] +3 other tests pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14912/bat-apl-1/igt@kms_addfb_basic@bad-pitch-999.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11246/bat-apl-1/igt@kms_addfb_basic@bad-pitch-999.html * igt@kms_busy@basic@flip: - {bat-apl-1}: [DMESG-WARN][17] ([i915#180] / [i915#1982]) -> [PASS][18] +1 other test pass [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14912/bat-apl-1/igt@kms_busy@basic@flip.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11246/bat-apl-1/igt@kms_busy@basic@flip.html * igt@kms_flip@basic-flip-vs-modeset@b-dp1: - {bat-apl-1}: [DMESG-WARN][19] ([i915#180]) -> [PASS][20] +26 other tests pass [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14912/bat-apl-1/igt@kms_flip@basic-flip-vs-modeset@b-dp1.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11246/bat-apl-1/igt@kms_flip@basic-flip-vs-modeset@b-dp1.html * igt@kms_pm_rpm@basic-pci-d3-state: - {bat-apl-1}: [DMESG-WARN][21] ([i915#180] / [i915#8585]) -> [PASS][22] +8 other tests pass [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14912/bat-apl-1/igt@kms_pm_rpm@basic-pci-d3-state.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11246/bat-apl-1/igt@kms_pm_rpm@basic-pci-d3-state.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#11328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11328 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#8585]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8585 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7880 -> IGTPW_11246 CI-20190529: 20190529 CI_DRM_14912: 3d66fb77a4da62a4282f60ddaab2bc5fabfe2fec @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11246: 11246 IGT_7880: 73618605b4370cf902267aaf1d25666ff5e26112 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11246/index.html [-- Attachment #2: Type: text/html, Size: 7849 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.xeFULL: failure for IGT KMS Test cleanup 2024-06-10 16:34 [PATCH i-g-t 0/9] IGT KMS Test cleanup Bhanuprakash Modem ` (10 preceding siblings ...) 2024-06-10 17:25 ` ✗ Fi.CI.BAT: failure " Patchwork @ 2024-06-10 18:19 ` Patchwork 11 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-06-10 18:19 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 63339 bytes --] == Series Details == Series: IGT KMS Test cleanup URL : https://patchwork.freedesktop.org/series/134685/ State : failure == Summary == CI Bug Log - changes from XEIGT_7880_full -> XEIGTPW_11246_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11246_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11246_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (3 -> 2) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11246_full: ### IGT changes ### #### Possible regressions #### * igt@kms_async_flips@async-flip-with-page-flip-events: - shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-463/igt@kms_async_flips@async-flip-with-page-flip-events.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events.html * igt@kms_dp_aux_dev: - shard-dg2-set2: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_dp_aux_dev.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-463/igt@kms_dp_aux_dev.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][5] +1 other test dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc.html #### Warnings #### * igt@kms_psr@fbc-psr-primary-blt: - shard-dg2-set2: [SKIP][6] ([Intel XE#1201] / [Intel XE#929]) -> [ABORT][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-463/igt@kms_psr@fbc-psr-primary-blt.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-433/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][8] ([Intel XE#1201] / [Intel XE#362]) -> [FAIL][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_dp_aux_dev: - {shard-lnl}: NOTRUN -> [FAIL][10] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-lnl-7/igt@kms_dp_aux_dev.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt: - {shard-lnl}: NOTRUN -> [INCOMPLETE][11] +1 other test incomplete [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_psr@fbc-psr2-dpms: - {shard-lnl}: [PASS][12] -> [FAIL][13] +1 other test fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-lnl-3/igt@kms_psr@fbc-psr2-dpms.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-lnl-2/igt@kms_psr@fbc-psr2-dpms.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race: - {shard-lnl}: NOTRUN -> [ABORT][14] [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-lnl-3/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-userptr-invalidate-race: - {shard-lnl}: [PASS][15] -> [ABORT][16] [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-lnl-4/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-lnl-1/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html New tests --------- New tests have been introduced between XEIGT_7880_full and XEIGTPW_11246_full: ### New IGT tests (45) ### * igt@kms_properties@connector-properties-atomic@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [1.47] s * igt@kms_properties@connector-properties-atomic@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.88] s * igt@kms_properties@connector-properties-atomic@pipe-none-dp-3: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_properties@connector-properties-atomic@pipe-none-dp-5: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-5: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-7: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-8: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_properties@connector-properties-legacy@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [1.47] s * igt@kms_properties@connector-properties-legacy@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [9.52] s * igt@kms_properties@connector-properties-legacy@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.91] s * igt@kms_properties@connector-properties-legacy@pipe-none-dp-1: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_properties@connector-properties-legacy@pipe-none-dp-2: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_properties@connector-properties-legacy@pipe-none-dp-3: - Statuses : 2 pass(s) - Exec time: [0.00] s * igt@kms_properties@connector-properties-legacy@pipe-none-dp-5: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_properties@connector-properties-legacy@pipe-none-hdmi-a-5: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_properties@connector-properties-legacy@pipe-none-hdmi-a-7: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_properties@connector-properties-legacy@pipe-none-hdmi-a-8: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_properties@crtc-properties-atomic@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.61] s * igt@kms_properties@crtc-properties-atomic@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.44] s * igt@kms_properties@crtc-properties-atomic@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.29] s * igt@kms_properties@crtc-properties-atomic@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [1.64] s * igt@kms_properties@crtc-properties-atomic@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [1.66] s * igt@kms_properties@crtc-properties-atomic@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.26] s * igt@kms_properties@crtc-properties-atomic@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.26] s * igt@kms_properties@crtc-properties-legacy@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.53] s * igt@kms_properties@crtc-properties-legacy@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.31] s * igt@kms_properties@crtc-properties-legacy@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.29] s * igt@kms_properties@crtc-properties-legacy@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [1.65] s * igt@kms_properties@crtc-properties-legacy@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [1.60] s * igt@kms_properties@crtc-properties-legacy@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.26] s * igt@kms_properties@crtc-properties-legacy@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.26] s * igt@kms_properties@plane-properties-atomic@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.72] s * igt@kms_properties@plane-properties-atomic@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.50] s * igt@kms_properties@plane-properties-atomic@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.47] s * igt@kms_properties@plane-properties-atomic@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [1.78] s * igt@kms_properties@plane-properties-atomic@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [1.76] s * igt@kms_properties@plane-properties-atomic@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.42] s * igt@kms_properties@plane-properties-atomic@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.44] s * igt@kms_properties@plane-properties-legacy@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.71] s * igt@kms_properties@plane-properties-legacy@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.50] s * igt@kms_properties@plane-properties-legacy@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.47] s * igt@kms_properties@plane-properties-legacy@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [1.79] s * igt@kms_properties@plane-properties-legacy@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [1.78] s * igt@kms_properties@plane-properties-legacy@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.44] s * igt@kms_properties@plane-properties-legacy@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.44] s Known issues ------------ Here are the changes found in XEIGTPW_11246_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-436/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1124]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#619]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#619]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1124] / [Intel XE#1201]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#367]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-463/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#787]) +6 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1201] / [Intel XE#787]) +62 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +17 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-434/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html * igt@kms_cdclk@mode-transition@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#314]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-466/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-435/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#373]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1201] / [Intel XE#373]) +7 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][31] ([Intel XE#1188]) +1 other test fail [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-dg2-set2: [PASS][33] -> [DMESG-WARN][34] ([Intel XE#282] / [Intel XE#910]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][35] ([Intel XE#1214] / [Intel XE#282]) +4 other tests dmesg-warn [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-463/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@forked-move@pipe-b: - shard-dg2-set2: [PASS][36] -> [DMESG-WARN][37] ([Intel XE#1214] / [Intel XE#282]) +2 other tests dmesg-warn [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-434/igt@kms_cursor_legacy@forked-move@pipe-b.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-433/igt@kms_cursor_legacy@forked-move@pipe-b.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#1201] / [Intel XE#323]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1137] / [Intel XE#1201]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-433/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1201] / [Intel XE#455]) +14 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_tiling@flip-change-tiling: - shard-dg2-set2: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#1150] / [Intel XE#1195]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-464/igt@kms_flip_tiling@flip-change-tiling.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@kms_flip_tiling@flip-change-tiling.html * igt@kms_flip_tiling@flip-change-tiling@pipe-c-dp-4-4-mc-ccs-to-4-rc-ccs: - shard-dg2-set2: [PASS][43] -> [INCOMPLETE][44] ([Intel XE#1195]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-464/igt@kms_flip_tiling@flip-change-tiling@pipe-c-dp-4-4-mc-ccs-to-4-rc-ccs.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@kms_flip_tiling@flip-change-tiling@pipe-c-dp-4-4-mc-ccs-to-4-rc-ccs.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#1201] / [Intel XE#651]) +21 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#651]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#1201] / [Intel XE#653]) +14 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#653]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#417]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-435/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#455]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_hdr@invalid-hdr.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-dg2-set2: NOTRUN -> [FAIL][51] ([Intel XE#616]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-436/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][52] ([Intel XE#1551]) +1 other test dmesg-fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-436/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [PASS][53] -> [FAIL][54] ([Intel XE#616]) +1 other test fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-434/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html * igt@kms_psr@fbc-psr2-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#1201] / [Intel XE#929]) +10 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-433/igt@kms_psr@fbc-psr2-suspend.html * igt@kms_psr@psr2-sprite-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#929]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_psr@psr2-sprite-plane-move.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#1201] / [Intel XE#327]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#1091] / [Intel XE#1201]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-435/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-435/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1126] / [Intel XE#1201]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [PASS][65] -> [FAIL][66] ([Intel XE#1600]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-436/igt@xe_evict@evict-beng-large-multi-vm-cm.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-threads-large: - shard-dg2-set2: [PASS][67] -> [TIMEOUT][68] ([Intel XE#1473] / [Intel XE#392]) +2 other tests timeout [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@xe_evict@evict-threads-large.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-436/igt@xe_evict@evict-threads-large.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#288]) +12 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm.html * igt@xe_exec_fault_mode@once-bindexecqueue-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#288]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-rebind.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1201] / [Intel XE#366]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@s4-exec-after: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][72] ([Intel XE#1214]) +2 other tests dmesg-warn [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-463/igt@xe_pm@s4-exec-after.html * igt@xe_pm@s4-multiple-execs: - shard-dg2-set2: [PASS][73] -> [DMESG-WARN][74] ([Intel XE#1214]) +2 other tests dmesg-warn [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@xe_pm@s4-multiple-execs.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-433/igt@xe_pm@s4-multiple-execs.html * igt@xe_query@multigpu-query-gt-list: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#1201] / [Intel XE#944]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-466/igt@xe_query@multigpu-query-gt-list.html #### Possible fixes #### * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-4: - shard-dg2-set2: [FAIL][76] ([Intel XE#827]) -> [PASS][77] +1 other test pass [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-463/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-4.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-436/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-4.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2-set2: [DMESG-WARN][78] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [PASS][79] [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-435/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-463/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-dg2-set2: [DMESG-WARN][80] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][81] +5 other tests pass [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size: - shard-dg2-set2: [DMESG-WARN][82] ([Intel XE#282]) -> [PASS][83] [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-463/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html * igt@kms_cursor_legacy@single-move@pipe-b: - shard-dg2-set2: [DMESG-WARN][84] ([Intel XE#1214] / [Intel XE#877]) -> [PASS][85] [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-433/igt@kms_cursor_legacy@single-move@pipe-b.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-463/igt@kms_cursor_legacy@single-move@pipe-b.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][86] ([Intel XE#1551]) -> [PASS][87] [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_flip@flip-vs-suspend.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a6: - shard-dg2-set2: [DMESG-WARN][88] ([Intel XE#1551]) -> [PASS][89] [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html * igt@kms_flip@flip-vs-suspend@d-dp4: - shard-dg2-set2: [INCOMPLETE][90] ([Intel XE#2049]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_flip@flip-vs-suspend@d-dp4.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@kms_flip@flip-vs-suspend@d-dp4.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [INCOMPLETE][92] ([Intel XE#1195]) -> [PASS][93] +1 other test pass [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - {shard-lnl}: [SKIP][94] ([Intel XE#1211]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-lnl-5/igt@kms_pm_rpm@modeset-stress-extra-wait.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-lnl-8/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@xe_evict@evict-beng-cm-threads-large: - shard-dg2-set2: [TIMEOUT][96] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-435/igt@xe_evict@evict-beng-cm-threads-large.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-434/igt@xe_evict@evict-beng-cm-threads-large.html * igt@xe_evict@evict-beng-threads-large: - shard-dg2-set2: [TIMEOUT][98] ([Intel XE#1473]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-436/igt@xe_evict@evict-beng-threads-large.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-436/igt@xe_evict@evict-beng-threads-large.html * igt@xe_exec_reset@gt-reset-stress: - shard-dg2-set2: [DMESG-WARN][100] ([Intel XE#1214] / [Intel XE#1638]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-436/igt@xe_exec_reset@gt-reset-stress.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-433/igt@xe_exec_reset@gt-reset-stress.html * igt@xe_exec_threads@threads-mixed-userptr-invalidate-race: - {shard-lnl}: [FAIL][102] ([Intel XE#1069]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-lnl-5/igt@xe_exec_threads@threads-mixed-userptr-invalidate-race.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-lnl-7/igt@xe_exec_threads@threads-mixed-userptr-invalidate-race.html * igt@xe_gt_freq@freq_reset_multiple: - {shard-lnl}: [DMESG-WARN][104] ([Intel XE#1620]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-lnl-1/igt@xe_gt_freq@freq_reset_multiple.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-lnl-1/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_live_ktest@xe_migrate: - {shard-lnl}: [SKIP][106] ([Intel XE#1192]) -> [PASS][107] +1 other test pass [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-lnl-8/igt@xe_live_ktest@xe_migrate.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-lnl-7/igt@xe_live_ktest@xe_migrate.html * igt@xe_module_load@reload: - shard-dg2-set2: [DMESG-WARN][108] ([Intel XE#1214]) -> [PASS][109] +3 other tests pass [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-463/igt@xe_module_load@reload.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@xe_module_load@reload.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-dg2-set2: [DMESG-WARN][110] ([Intel XE#1214] / [Intel XE#1551]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-434/igt@xe_pm@s3-vm-bind-prefetch.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-436/igt@xe_pm@s3-vm-bind-prefetch.html * igt@xe_vm@mmap-style-bind-either-side-partial-split-page-hammer: - {shard-lnl}: [DMESG-WARN][112] ([Intel XE#2016]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-lnl-6/igt@xe_vm@mmap-style-bind-either-side-partial-split-page-hammer.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-lnl-1/igt@xe_vm@mmap-style-bind-either-side-partial-split-page-hammer.html #### Warnings #### * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: [SKIP][114] ([Intel XE#1201] / [Intel XE#801]) -> [SKIP][115] ([Intel XE#801]) +23 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-463/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][116] ([Intel XE#316]) -> [SKIP][117] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2-set2: [SKIP][118] ([Intel XE#1124]) -> [SKIP][119] ([Intel XE#1124] / [Intel XE#1201]) +4 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][120] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][121] ([Intel XE#1124]) +4 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: [SKIP][122] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][123] ([Intel XE#367]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: [SKIP][124] ([Intel XE#367]) -> [SKIP][125] ([Intel XE#1201] / [Intel XE#367]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-dp-4: - shard-dg2-set2: [SKIP][126] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][127] ([Intel XE#787]) +55 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-463/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-dp-4.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-dp-4.html * igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [SKIP][128] ([Intel XE#787]) -> [SKIP][129] ([Intel XE#1201] / [Intel XE#787]) +27 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][130] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][131] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +7 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4: - shard-dg2-set2: [SKIP][132] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][133] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2-set2: [SKIP][134] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][135] ([Intel XE#306]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-464/igt@kms_chamelium_color@ctm-0-25.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][136] ([Intel XE#306]) -> [SKIP][137] ([Intel XE#1201] / [Intel XE#306]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-433/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_frames@hdmi-cmp-planes-random: - shard-dg2-set2: [SKIP][138] ([Intel XE#373]) -> [SKIP][139] ([Intel XE#1201] / [Intel XE#373]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2-set2: [SKIP][140] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][141] ([Intel XE#373]) +4 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@atomic-dpms: - shard-dg2-set2: [FAIL][142] ([Intel XE#1178]) -> [INCOMPLETE][143] ([Intel XE#1195]) +1 other test incomplete [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-435/igt@kms_content_protection@atomic-dpms.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: [SKIP][144] ([Intel XE#307]) -> [SKIP][145] ([Intel XE#1201] / [Intel XE#307]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-1.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][146] ([Intel XE#282]) -> [DMESG-WARN][147] ([Intel XE#1214] / [Intel XE#282]) +2 other tests dmesg-warn [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-a-hdmi-a-6.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-a-hdmi-a-6.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-dg2-set2: [SKIP][148] ([Intel XE#455]) -> [SKIP][149] ([Intel XE#1201] / [Intel XE#455]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-32x32.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg2-set2: [SKIP][150] ([Intel XE#308]) -> [SKIP][151] ([Intel XE#1201] / [Intel XE#308]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x512.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-dg2-set2: [SKIP][152] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][153] ([Intel XE#455]) +9 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-max-size.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_edge_walk@256x256-top-bottom: - shard-dg2-set2: [DMESG-WARN][154] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][155] ([Intel XE#282]) +12 other tests dmesg-warn [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-466/igt@kms_cursor_edge_walk@256x256-top-bottom.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_cursor_edge_walk@256x256-top-bottom.html * igt@kms_cursor_legacy@single-move: - shard-dg2-set2: [DMESG-WARN][156] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#877]) -> [DMESG-WARN][157] ([Intel XE#1214] / [Intel XE#282]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-433/igt@kms_cursor_legacy@single-move.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-463/igt@kms_cursor_legacy@single-move.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][158] ([Intel XE#1195]) -> [DMESG-WARN][159] ([Intel XE#1214] / [Intel XE#1551]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6: - shard-dg2-set2: [DMESG-WARN][160] ([Intel XE#1214]) -> [DMESG-WARN][161] ([Intel XE#1214] / [Intel XE#1551]) +1 other test dmesg-warn [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][162] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][163] ([Intel XE#651]) +18 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][164] ([Intel XE#658]) -> [SKIP][165] ([Intel XE#1201] / [Intel XE#658]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-y.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][166] ([Intel XE#651]) -> [SKIP][167] ([Intel XE#1201] / [Intel XE#651]) +12 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][168] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][169] ([Intel XE#653]) +16 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][170] ([Intel XE#653]) -> [SKIP][171] ([Intel XE#1201] / [Intel XE#653]) +12 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6: - shard-dg2-set2: [SKIP][172] ([Intel XE#1201] / [Intel XE#305]) -> [SKIP][173] ([Intel XE#305]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][174] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) -> [SKIP][175] ([Intel XE#305] / [Intel XE#455]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][176] ([Intel XE#1129] / [Intel XE#1201]) -> [SKIP][177] ([Intel XE#1129]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-435/igt@kms_pm_dc@dc6-psr.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_pm_dc@dc6-psr.html * igt@kms_psr@fbc-pr-no-drrs: - shard-dg2-set2: [SKIP][178] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][179] ([Intel XE#929]) +9 other tests skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-435/igt@kms_psr@fbc-pr-no-drrs.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: [SKIP][180] ([Intel XE#929]) -> [SKIP][181] ([Intel XE#1201] / [Intel XE#929]) +5 other tests skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-render.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-433/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][182] ([Intel XE#1149] / [Intel XE#1201]) -> [SKIP][183] ([Intel XE#1149]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-464/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2-set2: [SKIP][184] ([Intel XE#327]) -> [SKIP][185] ([Intel XE#1201] / [Intel XE#327]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: [SKIP][186] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][187] ([Intel XE#756]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-436/igt@kms_writeback@writeback-fb-id-xrgb2101010.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: [SKIP][188] ([Intel XE#756]) -> [SKIP][189] ([Intel XE#1201] / [Intel XE#756]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_writeback@writeback-pixel-formats.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-433/igt@kms_writeback@writeback-pixel-formats.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2-set2: [SKIP][190] ([Intel XE#1091] / [Intel XE#1201]) -> [SKIP][191] ([Intel XE#1091]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-435/igt@sriov_basic@enable-vfs-autoprobe-on.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: [SKIP][192] ([Intel XE#1123]) -> [SKIP][193] ([Intel XE#1123] / [Intel XE#1201]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x369.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][194] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][195] ([Intel XE#1126]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0x369.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x369.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: [FAIL][196] ([Intel XE#1600]) -> [FAIL][197] ([Intel XE#1041]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_exec_fault_mode@once-rebind-imm: - shard-dg2-set2: [SKIP][198] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][199] ([Intel XE#288]) +10 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-433/igt@xe_exec_fault_mode@once-rebind-imm.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@xe_exec_fault_mode@once-rebind-imm.html * igt@xe_exec_fault_mode@once-userptr-invalidate-race-prefetch: - shard-dg2-set2: [SKIP][200] ([Intel XE#288]) -> [SKIP][201] ([Intel XE#1201] / [Intel XE#288]) +8 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@xe_exec_fault_mode@once-userptr-invalidate-race-prefetch.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-464/igt@xe_exec_fault_mode@once-userptr-invalidate-race-prefetch.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][202] ([Intel XE#1201] / [Intel XE#560]) -> [SKIP][203] ([Intel XE#560]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-464/igt@xe_media_fill@media-fill.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@xe_media_fill@media-fill.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][204] ([Intel XE#1201] / [Intel XE#977]) -> [SKIP][205] ([Intel XE#977]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-433/igt@xe_pat@pat-index-xe2.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][206] ([Intel XE#979]) -> [SKIP][207] ([Intel XE#1201] / [Intel XE#979]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-435/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-mmap-system: - shard-dg2-set2: [SKIP][208] ([Intel XE#366]) -> [SKIP][209] ([Intel XE#1201] / [Intel XE#366]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@xe_pm@d3cold-mmap-system.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-435/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [DMESG-WARN][210] ([Intel XE#1162] / [Intel XE#1214] / [Intel XE#1941]) -> [INCOMPLETE][211] ([Intel XE#1195]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-435/igt@xe_pm@s3-vm-bind-unbind-all.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-434/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_query@multigpu-query-invalid-extension: - shard-dg2-set2: [SKIP][212] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][213] ([Intel XE#944]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-435/igt@xe_query@multigpu-query-invalid-extension.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-432/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][214] ([Intel XE#944]) -> [SKIP][215] ([Intel XE#1201] / [Intel XE#944]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-guc.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_wedged@wedged-at-any-timeout: - shard-dg2-set2: [DMESG-FAIL][216] ([Intel XE#1760]) -> [DMESG-WARN][217] ([Intel XE#1214] / [Intel XE#1760]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@xe_wedged@wedged-at-any-timeout.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/shard-dg2-433/igt@xe_wedged@wedged-at-any-timeout.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041 [Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069 [Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149 [Intel XE#1150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1150 [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201 [Intel XE#1207]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1207 [Intel XE#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211 [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1339 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1446 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551 [Intel XE#1595]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1595 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1608 [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 [Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1707 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1924 [Intel XE#1941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1941 [Intel XE#2016]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2016 [Intel XE#2022]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2022 [Intel XE#2024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2024 [Intel XE#2028]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2028 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2034]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2034 [Intel XE#2037]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2037 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/355 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_7880 -> IGTPW_11246 * Linux: xe-1413-cb97aa28be4f4b914c751ed27bae7782e027826c -> xe-1435-470ebe45d31c7fd7a7298d3a895e83eb7fedd743 IGTPW_11246: 11246 IGT_7880: 73618605b4370cf902267aaf1d25666ff5e26112 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1413-cb97aa28be4f4b914c751ed27bae7782e027826c: cb97aa28be4f4b914c751ed27bae7782e027826c xe-1435-470ebe45d31c7fd7a7298d3a895e83eb7fedd743: 470ebe45d31c7fd7a7298d3a895e83eb7fedd743 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11246/index.html [-- Attachment #2: Type: text/html, Size: 80349 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2024-06-10 18:19 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-06-10 16:34 [PATCH i-g-t 0/9] IGT KMS Test cleanup Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 1/9] tests/intel/kms_fence_pin_leak: " Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 2/9] tests/intel/kms_pipe_b_c_ivb: " Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 3/9] tests/intel/kms_pwrite_crc: " Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 4/9] tests/kms_dp_aux_dev: " Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 5/9] tests/kms_hdmi_inject: " Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 6/9] tests/kms_tiled_display: " Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 7/9] tests/kms_tv_load_detect: " Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 8/9] tests/kms_universal_plane: " Bhanuprakash Modem 2024-06-10 16:34 ` [PATCH i-g-t 9/9] tests/kms_properties: Create dynamic subtests Bhanuprakash Modem 2024-06-10 17:14 ` ✓ CI.xeBAT: success for IGT KMS Test cleanup Patchwork 2024-06-10 17:25 ` ✗ Fi.CI.BAT: failure " Patchwork 2024-06-10 18:19 ` ✗ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox