* [PATCH i-g-t v2 0/3] tests/kms_setmode: Convert to igt_display atomic API
@ 2026-06-23 8:09 Jeevan B
2026-06-23 8:09 ` [PATCH i-g-t v2 1/3] tests/kms_setmode: Drop invalid-clone-single-crtc-stealing subtest Jeevan B
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Jeevan B @ 2026-06-23 8:09 UTC (permalink / raw)
To: igt-dev; +Cc: Jeevan B
This series updates kms_setmode to use the modern IGT atomic display API
instead of legacy DRM calls, switches to public igt_display helper functions,
and cleans up outdated code. As part of this, the legacy TEST_STEALING subtest
is removed since its behavior does not apply to the atomic model. Overall, this
makes the test simpler, more maintainable, and aligned with current KMS
practices without changing existing test behavior.
Jeevan B (3):
tests/kms_setmode: Drop invalid-clone-single-crtc-stealing subtest
tests/kms_setmode: Convert modeset path to atomic API
tests/kms_setmode: Use public igt_display helper APIs
tests/kms_setmode.c | 346 ++++++++++++++++++++------------------------
1 file changed, 160 insertions(+), 186 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH i-g-t v2 1/3] tests/kms_setmode: Drop invalid-clone-single-crtc-stealing subtest 2026-06-23 8:09 [PATCH i-g-t v2 0/3] tests/kms_setmode: Convert to igt_display atomic API Jeevan B @ 2026-06-23 8:09 ` Jeevan B 2026-06-23 8:09 ` [PATCH i-g-t v2 2/3] tests/kms_setmode: Convert modeset path to atomic API Jeevan B ` (5 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Jeevan B @ 2026-06-23 8:09 UTC (permalink / raw) To: igt-dev; +Cc: Jeevan B Remove the TEST_STEALING subtest and all related code, as it relies on legacy drmModeSetCrtc() “CRTC stealing” behavior that is not compatible with the atomic display API, where all modeset changes are applied atomically and explicitly. This cleanup removes the enum, helper functions, documentation, related logic, and test registration, aligning the test suite with the atomic model and isolating the removal from ongoing conversion work. Signed-off-by: Jeevan B <jeevan.b@intel.com> --- tests/kms_setmode.c | 66 ++++++--------------------------------------- 1 file changed, 8 insertions(+), 58 deletions(-) diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c index 3adc4534c..5236078e0 100644 --- a/tests/kms_setmode.c +++ b/tests/kms_setmode.c @@ -64,10 +64,6 @@ * SUBTEST: invalid-clone-single-crtc * Description: Tests the mode by cloning the single crtc by iterating through all * invalid crtc/connector combinations - * - * SUBTEST: invalid-clone-single-crtc-stealing - * Description: Tests the stealing mode by cloning the single crtc by iterating - * through all invalid crtc/connector combinations */ #define MAX_CONNECTORS 10 @@ -112,7 +108,6 @@ enum test_flags { TEST_CLONE = 0x02, TEST_SINGLE_CRTC_CLONE = 0x04, TEST_EXCLUSIVE_CRTC_CLONE = 0x08, - TEST_STEALING = 0x10, TEST_TIMINGS = 0x20, }; @@ -471,47 +466,6 @@ static void cleanup_crtcs(struct crtc_config *crtcs, int crtc_count) } } -static uint32_t *get_connector_ids(struct crtc_config *crtc) -{ - uint32_t *ids; - int i; - - ids = malloc(sizeof(*ids) * crtc->connector_count); - igt_assert(ids); - for (i = 0; i < crtc->connector_count; i++) - ids[i] = crtc->cconfs[i].connector->connector_id; - - return ids; -} - -static int test_stealing(int fd, struct crtc_config *crtc, uint32_t *ids) -{ - int i, ret = 0; - - if (!crtc->connector_count) - return drmModeSetCrtc(fd, crtc->crtc_id, - crtc->fb_info.fb_id, 0, 0, - ids, crtc->connector_count, &crtc->mode); - - for (i = 0; i < crtc->connector_count; ++i) { - ret = drmModeSetCrtc(fd, crtc->crtc_id, - crtc->fb_info.fb_id, 0, 0, - &ids[i], 1, &crtc->mode); - - igt_assert_eq(ret, 0); - - ret = drmModeSetCrtc(fd, crtc->crtc_id, - crtc->fb_info.fb_id, 0, 0, - ids, crtc->connector_count, &crtc->mode); - - /* This should fail with -EINVAL */ - if (!ret) - return 0; - } - - return ret; -} - #define frame_time(km) (1000.0 * (km)->htotal * (km)->vtotal / (km)->clock) #define line_time(km) (1000.0 * (km)->htotal / (km)->clock) @@ -689,13 +643,14 @@ retry: create_fb_for_crtc(crtc, &crtc->fb_info); paint_fb(&crtc->fb_info, tconf->name, crtc_strs, crtc_count, i); - ids = get_connector_ids(crtc); - if (tconf->flags & TEST_STEALING) - ret = test_stealing(drm_fd, crtc, ids); - else - ret = drmModeSetCrtc(drm_fd, crtc->crtc_id, - crtc->fb_info.fb_id, 0, 0, ids, - crtc->connector_count, &crtc->mode); + ids = malloc(sizeof(*ids) * crtc->connector_count); + igt_assert(ids); + for (int j = 0; j < crtc->connector_count; j++) + ids[j] = crtc->cconfs[j].connector->connector_id; + + ret = drmModeSetCrtc(drm_fd, crtc->crtc_id, + crtc->fb_info.fb_id, 0, 0, ids, + crtc->connector_count, &crtc->mode); if (is_intel_device(drm_fd)) intel_drrs_disable_crtc_index(drm_fd, crtc->crtc_idx); @@ -973,9 +928,6 @@ static void test_combinations(const struct test_config *tconf, int i; int crtc_count = get_crtc_count(tconf->resources->count_crtcs, extended); - if (connector_count > 2 && (tconf->flags & TEST_STEALING)) - return; - igt_assert(tconf->resources); connector_combs.capacity = pow(tconf->resources->count_connectors, @@ -1075,8 +1027,6 @@ int igt_main_args("det:", NULL, help_str, opt_handler, NULL) "invalid-clone-exclusive-crtc" }, { TEST_CLONE | TEST_EXCLUSIVE_CRTC_CLONE, "clone-exclusive-crtc" }, - { TEST_INVALID | TEST_CLONE | TEST_SINGLE_CRTC_CLONE | TEST_STEALING, - "invalid-clone-single-crtc-stealing" } }; int i; -- 2.43.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t v2 2/3] tests/kms_setmode: Convert modeset path to atomic API 2026-06-23 8:09 [PATCH i-g-t v2 0/3] tests/kms_setmode: Convert to igt_display atomic API Jeevan B 2026-06-23 8:09 ` [PATCH i-g-t v2 1/3] tests/kms_setmode: Drop invalid-clone-single-crtc-stealing subtest Jeevan B @ 2026-06-23 8:09 ` Jeevan B 2026-06-23 8:26 ` Jani Nikula 2026-06-23 8:09 ` [PATCH i-g-t v2 3/3] tests/kms_setmode: Use public igt_display helper APIs Jeevan B ` (4 subsequent siblings) 6 siblings, 1 reply; 10+ messages in thread From: Jeevan B @ 2026-06-23 8:09 UTC (permalink / raw) To: igt-dev; +Cc: Jeevan B Replace legacy DRM modeset and resource handling with the IGT atomic display API, migrating the test to use igt_display_t, igt_output_t, and atomic commit helpers. This removes direct drmModeSetCrtc() usage in favor of igt_display_try_commit_atomic() and proper reset/commit flows, updates helper functions and data structures accordingly, and aligns the test with the modern atomic KMS model without introducing functional changes. Signed-off-by: Jeevan B <jeevan.b@intel.com> --- tests/kms_setmode.c | 264 ++++++++++++++++++++++---------------------- 1 file changed, 135 insertions(+), 129 deletions(-) diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c index 5236078e0..419f5b518 100644 --- a/tests/kms_setmode.c +++ b/tests/kms_setmode.c @@ -79,7 +79,7 @@ #define HDMI_2_0_MAX_CLOCK_KHZ 600000 static int drm_fd; -static drmModeRes *drm_resources; +static igt_display_t display; static int filter_test_id; static bool dry_run; static bool extended = false; @@ -114,19 +114,17 @@ enum test_flags { struct test_config { const char *name; enum test_flags flags; - drmModeRes *resources; + igt_display_t *display; }; struct connector_config { - drmModeConnector *connector; + igt_output_t *output; int crtc_idx; drmModeModeInfo default_mode; }; struct crtc_config { int crtc_idx; - int crtc_id; - int pipe_id; int connector_count; struct connector_config *cconfs; struct igt_fb fb_info; @@ -151,9 +149,10 @@ static bool drm_mode_equal(drmModeModeInfo *m1, drmModeModeInfo *m2) return true; } -static bool connector_supports_mode(drmModeConnector *connector, +static bool connector_supports_mode(igt_output_t *output, drmModeModeInfo *mode) { + drmModeConnector *connector = output->config.connector; int i; for (i = 0; i < connector->count_modes; i++) @@ -179,7 +178,7 @@ static bool mode_compatible_with_connectors(struct crtc_config *crtc, int i; for (i = 0; i < crtc->connector_count; i++) { - drmModeConnector *conn = crtc->cconfs[i].connector; + drmModeConnector *conn = crtc->cconfs[i].output->config.connector; /* Check HDMI 2.0 clock + per-connector compatibility */ if (hdmi_connector_mode_exceeds_hdmi20_limit(conn, mode)) @@ -194,13 +193,21 @@ static bool crtc_supports_mode(struct crtc_config *crtc, drmModeModeInfo *mode) int i; for (i = 0; i < crtc->connector_count; i++) { - if (!connector_supports_mode(crtc->cconfs[i].connector, mode)) + if (!connector_supports_mode(crtc->cconfs[i].output, mode)) return false; } return true; } +static int get_crtc_count(int count_crtcs, bool extend) +{ + if ((count_crtcs <= CRTC_RESTRICT_CNT) || extend) + return count_crtcs; + else + return CRTC_RESTRICT_CNT; +} + static int paint_fb(struct igt_fb *fb, const char *test_name, const char **crtc_str, int crtc_count, int current_crtc_idx) { @@ -272,8 +279,8 @@ static void get_mode_for_crtc(struct crtc_config *crtc, * Then just fall back to find any that is supported by all * connectors. */ - for (i = 0; i < crtc->cconfs[0].connector->count_modes; i++) { - mode = &crtc->cconfs[0].connector->modes[i]; + for (i = 0; i < crtc->cconfs[0].output->config.connector->count_modes; i++) { + mode = &crtc->cconfs[0].output->config.connector->modes[i]; if (crtc_supports_mode(crtc, mode)) { *mode_ret = *mode; return; @@ -286,7 +293,7 @@ static void get_mode_for_crtc(struct crtc_config *crtc, * incompatible with modes supported by external displays. */ for (i = 0; i < crtc->connector_count; i++) { - drmModeConnector *conn = crtc->cconfs[i].connector; + drmModeConnector *conn = crtc->cconfs[i].output->config.connector; if (conn->connector_type == DRM_MODE_CONNECTOR_eDP) { mode = &conn->modes[0]; @@ -329,17 +336,18 @@ static int get_encoder_idx(drmModeRes *resources, drmModeEncoder *encoder) static void get_crtc_config_str(struct crtc_config *crtc, char *buf, size_t buf_size) { + igt_crtc_t *igt_crtc = &display.crtcs[crtc->crtc_idx]; int pos; int i; pos = snprintf(buf, buf_size, "CRTC[%d] [Pipe %s] Mode: %s@%dHz Connectors: ", - crtc->crtc_id, kmstest_pipe_name(crtc->pipe_id), + igt_crtc->crtc_id, kmstest_pipe_name(igt_crtc->pipe), crtc->mode.name, crtc->mode.vrefresh); if (pos > buf_size) return; for (i = 0; i < crtc->connector_count; i++) { - drmModeConnector *connector = crtc->cconfs[i].connector; + drmModeConnector *connector = crtc->cconfs[i].output->config.connector; pos += snprintf(&buf[pos], buf_size - pos, "%s%s-%d[%d]", i ? ", " : "", @@ -355,14 +363,24 @@ static void setup_crtcs(const struct test_config *tconf, int connector_count, struct crtc_config *crtcs, int *crtc_count_ret, bool *config_valid_ret) { + igt_display_t *disp = tconf->display; struct crtc_config *crtc; int crtc_count; bool config_valid; int i; - drmModeRes *resources = tconf->resources; - int encoder_usage_count[resources->count_encoders]; + drmModeRes *resources; + int *encoder_usage_count; + + /* Fetch resources locally only for encoder clone validity checks */ + resources = drmModeGetResources(drm_fd); + igt_assert(resources); - kmstest_unset_all_crtcs(drm_fd, resources); + encoder_usage_count = calloc(resources->count_encoders, + sizeof(*encoder_usage_count)); + igt_assert(encoder_usage_count); + + /* Reset pending display state for a clean slate */ + igt_display_reset(disp); i = 0; crtc_count = 0; @@ -376,11 +394,6 @@ static void setup_crtcs(const struct test_config *tconf, igt_assert_lt(crtc_count, MAX_CRTCS); crtc->crtc_idx = cconf[i].crtc_idx; - crtc->crtc_id = resources->crtcs[crtc->crtc_idx]; - - /* FIXME: avoid __intel_get_pipe_from_crtc_index() */ - crtc->pipe_id = is_intel_device(drm_fd) ? - __intel_get_pipe_from_crtc_index(drm_fd, crtc->crtc_idx) : crtc->crtc_idx; crtc->connector_count = 1; for (j = i + 1; j < connector_count; j++) @@ -393,11 +406,18 @@ static void setup_crtcs(const struct test_config *tconf, encoder_mask = 0; for (j = 0; j < crtc->connector_count; j++) { + igt_output_t *output; drmModeConnector *connector; drmModeEncoder *encoder; + igt_crtc_t *igt_crtc; crtc->cconfs[j] = cconf[i + j]; - connector = cconf[i + j].connector; + output = cconf[i + j].output; + connector = output->config.connector; + igt_crtc = &disp->crtcs[crtc->crtc_idx]; + + /* Check CRTC/output compatibility using IGT helper */ + config_valid &= igt_crtc_connector_valid(igt_crtc, output); /* Intel connectors have only a single encoder */ if (connector->count_encoders == 1) { @@ -413,9 +433,6 @@ static void setup_crtcs(const struct test_config *tconf, } igt_assert(encoder); - config_valid &= !!(encoder->possible_crtcs & - (1 << crtc->crtc_idx)); - encoder_mask |= 1 << get_encoder_idx(resources, encoder); config_valid &= !(encoder_mask & @@ -424,16 +441,15 @@ static void setup_crtcs(const struct test_config *tconf, drmModeFreeEncoder(encoder); } get_mode_for_crtc(crtc, &crtc->mode); - create_fb_for_crtc(crtc, &crtc->fb_info); + memset(&crtc->fb_info, 0, sizeof(crtc->fb_info)); i += crtc->connector_count; crtc_count++; crtc++; } - memset(encoder_usage_count, 0, sizeof(encoder_usage_count)); for (i = 0; i < connector_count; i++) { - drmModeConnector *connector = cconf[i].connector; + drmModeConnector *connector = cconf[i].output->config.connector; drmModeEncoder *encoder; int idx = 0; @@ -450,6 +466,9 @@ static void setup_crtcs(const struct test_config *tconf, !!(tconf->flags & TEST_SINGLE_CRTC_CLONE)) config_valid = false; + free(encoder_usage_count); + drmModeFreeResources(resources); + *crtc_count_ret = crtc_count; *config_valid_ret = config_valid; } @@ -458,9 +477,12 @@ static void cleanup_crtcs(struct crtc_config *crtcs, int crtc_count) { int i; + igt_display_reset(&display); + igt_display_commit_atomic(&display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); + for (i = 0; i < crtc_count; i++) { - igt_remove_fb(drm_fd, &crtcs[i].fb_info); - drmModeSetCrtc(drm_fd, crtcs[i].crtc_id, 0, 0, 0, NULL, 0, NULL); + if (crtcs[i].fb_info.fb_id) + igt_remove_fb(drm_fd, &crtcs[i].fb_info); free(crtcs[i].cconfs); } @@ -481,9 +503,10 @@ static bool check_timings(int crtc_idx, const drmModeModeInfo *kmode) double mean; double stddev; int n; + int pipe_crtc_index = display.crtcs[crtc_idx].crtc_index; memset(&wait, 0, sizeof(wait)); - wait.request.type = kmstest_get_vbl_flag(crtc_idx); + wait.request.type = kmstest_get_vbl_flag(pipe_crtc_index); wait.request.type |= DRM_VBLANK_RELATIVE | DRM_VBLANK_NEXTONMISS; do_or_die(drmWaitVBlank(drm_fd, &wait)); @@ -493,7 +516,7 @@ static bool check_timings(int crtc_idx, const drmModeModeInfo *kmode) last_timestamp += wait.reply.tval_usec; memset(&wait, 0, sizeof(wait)); - wait.request.type = kmstest_get_vbl_flag(crtc_idx); + wait.request.type = kmstest_get_vbl_flag(pipe_crtc_index); wait.request.type |= DRM_VBLANK_ABSOLUTE | DRM_VBLANK_EVENT; wait.request.sequence = last_seq; for (n = 0; n < CALIBRATE_TS_STEPS; n++) { @@ -503,7 +526,7 @@ static bool check_timings(int crtc_idx, const drmModeModeInfo *kmode) do_or_die(drmWaitVBlank(drm_fd, &wait)); /* Double check that haven't already missed the vblank */ - check.request.type = kmstest_get_vbl_flag(crtc_idx); + check.request.type = kmstest_get_vbl_flag(pipe_crtc_index); check.request.type |= DRM_VBLANK_RELATIVE; do_or_die(drmWaitVBlank(drm_fd, &check)); @@ -611,14 +634,17 @@ static void test_crtc_config(const struct test_config *tconf, retry: if (retry) { - kmstest_unset_all_crtcs(drm_fd, tconf->resources); + igt_display_reset(tconf->display); for (i = 0; i < crtc_count; i++) { - /* Sort the modes in asending order by clock freq. */ - igt_sort_connector_modes(crtcs[i].cconfs->connector, + if (crtcs[i].fb_info.fb_id) + igt_remove_fb(drm_fd, &crtcs[i].fb_info); + /* Sort modes in ascending order by clock to find a lower-BW mode */ + igt_sort_connector_modes(crtcs[i].cconfs->output->config.connector, sort_drm_modes_by_clk_asc); - crtcs[i].mode = crtcs[i].cconfs->connector->modes[0]; + crtcs[i].mode = crtcs[i].cconfs->output->config.connector->modes[0]; + } } @@ -634,42 +660,63 @@ retry: } for (i = 0; i < crtc_count; i++) { - uint32_t *ids; + igt_plane_t *primary; + igt_crtc_t *igt_crtc; + bool invalid_clone; + int j; crtc = &crtcs[i]; + igt_crtc = &display.crtcs[crtc->crtc_idx]; + + /* Treat this as expected failure for invalid tests.*/ + invalid_clone = (tconf->flags & TEST_INVALID) && + (crtc->connector_count > 1); + + if (invalid_clone) { + config_failed = true; + continue; + } igt_info(" %s\n", crtc_strs[i]); create_fb_for_crtc(crtc, &crtc->fb_info); paint_fb(&crtc->fb_info, tconf->name, crtc_strs, crtc_count, i); - ids = malloc(sizeof(*ids) * crtc->connector_count); - igt_assert(ids); - for (int j = 0; j < crtc->connector_count; j++) - ids[j] = crtc->cconfs[j].connector->connector_id; + /* Assign each output to this CRTC with the selected mode */ + for (j = 0; j < crtc->connector_count; j++) { + igt_output_t *output = crtc->cconfs[j].output; - ret = drmModeSetCrtc(drm_fd, crtc->crtc_id, - crtc->fb_info.fb_id, 0, 0, ids, - crtc->connector_count, &crtc->mode); + igt_output_set_crtc(output, igt_crtc); + igt_output_override_mode(output, &crtc->mode); + } - if (is_intel_device(drm_fd)) - intel_drrs_disable_crtc_index(drm_fd, crtc->crtc_idx); + primary = igt_crtc_get_plane_type(igt_crtc, DRM_PLANE_TYPE_PRIMARY); + igt_plane_set_fb(primary, &crtc->fb_info); + } - free(ids); + ret = igt_display_try_commit_atomic(tconf->display, + DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); - if (ret < 0) { - if (errno == ENOSPC) { - igt_skip_on_f(retry, "No suitable mode(s) found to fit into the link BW.\n"); + if (is_intel_device(drm_fd) && ret == 0) { + for (i = 0; i < crtc_count; i++) + intel_drrs_disable(&display.crtcs[crtcs[i].crtc_idx]); + } - retry = true; - goto retry; - } + if (ret < 0) { + if (ret == -ENOSPC) { + igt_skip_on_f(retry, "No suitable mode(s) found to fit into the link BW.\n"); - igt_assert_eq(errno, EINVAL); - config_failed = true; + retry = true; + goto retry; } + + igt_assert_eq(ret, -EINVAL); + config_failed = true; } + if (!(tconf->flags & TEST_INVALID) && config_failed) + igt_skip("No compatible mode for this combination\n"); + igt_assert(config_failed == !!(tconf->flags & TEST_INVALID)); if (ret == 0 && tconf->flags & TEST_TIMINGS) { @@ -694,10 +741,11 @@ static int get_test_name_str(struct crtc_config *crtc, char *buf, int pos; int i; - pos = snprintf(buf, buf_size, "pipe-%s-", kmstest_pipe_name(crtc->pipe_id)); + pos = snprintf(buf, buf_size, "pipe-%s-", + kmstest_pipe_name(display.crtcs[crtc->crtc_idx].pipe)); for (i = 0; i < crtc->connector_count; i++) { - drmModeConnector *connector = crtc->cconfs[i].connector; + drmModeConnector *connector = crtc->cconfs[i].output->config.connector; pos += snprintf(&buf[pos], buf_size - pos, "%s%s-%d", i ? "-" : "", @@ -734,18 +782,15 @@ static void test_one_combination(const struct test_config *tconf, for (i = 0; i < crtc_count; i++) { struct crtc_config *crtc = &crtcs[i]; - char conn_name[24], prev_conn_name[24]; + char conn_name[64], prev_conn_name[64]; + int n_valid_crtcs = get_crtc_count(tconf->display->n_crtcs, extended); - snprintf(conn_name, sizeof(conn_name), - "%s-%d", - kmstest_connector_type_str(crtcs[i].cconfs->connector->connector_type), - crtcs[i].cconfs->connector->connector_type_id); + snprintf(conn_name, sizeof(conn_name), "%s", + igt_output_name(crtc->cconfs->output)); if (i > 0) - snprintf(prev_conn_name, sizeof(prev_conn_name), - "%s-%d", - kmstest_connector_type_str(crtcs[i - 1].cconfs->connector->connector_type), - crtcs[i - 1].cconfs->connector->connector_type_id); + snprintf(prev_conn_name, sizeof(prev_conn_name), "%s", + igt_output_name(crtcs[i - 1].cconfs->output)); /* * Handle BW limitations on intel hardware: @@ -762,7 +807,7 @@ static void test_one_combination(const struct test_config *tconf, */ if (((igt_check_force_joiner_status(drm_fd, conn_name) || igt_bigjoiner_possible(drm_fd, &crtc->mode, max_dotclock)) && - ((crtc->crtc_idx >= (tconf->resources->count_crtcs - 1)) || + ((crtc->crtc_idx >= (n_valid_crtcs - 1)) || ((i < (crtc_count - 1)) && (abs(crtcs[i + 1].crtc_idx - crtc->crtc_idx) <= 1)))) || ((i > 0) && (igt_check_force_joiner_status(drm_fd, prev_conn_name) || igt_bigjoiner_possible(drm_fd, &crtc[i - 1].mode, max_dotclock)) && @@ -807,63 +852,33 @@ static int assign_crtc_to_connectors(const struct test_config *tconf, return 0; } -static int get_one_connector(drmModeRes *resources, int connector_id, - struct connector_config *cconf) +static int get_one_output(igt_display_t *disp, int output_idx, + struct connector_config *cconf) { - drmModeConnector *connector; - - connector = drmModeGetConnectorCurrent(drm_fd, connector_id); - igt_assert(connector); - cconf->connector = connector; + igt_output_t *output = &disp->outputs[output_idx]; - if (connector->connection != DRM_MODE_CONNECTED) { - drmModeFreeConnector(connector); + if (!igt_output_is_connected(output)) return -1; - } - if (!kmstest_get_connector_default_mode(drm_fd, connector, - &cconf->default_mode)) { - drmModeFreeConnector(connector); - return -1; - } + cconf->output = output; + cconf->default_mode = *igt_output_get_mode(output); return 0; } -static int get_connectors(drmModeRes *resources, int *connector_idxs, +static int get_connectors(igt_display_t *disp, int *output_idxs, int connector_count, struct connector_config *cconfs) { int i; for (i = 0; i < connector_count; i++) { - int connector_idx; - int connector_id; - - connector_idx = connector_idxs[i]; - igt_assert_lt(connector_idx, resources->count_connectors); - connector_id = resources->connectors[connector_idx]; - - if (get_one_connector(resources, connector_id, &cconfs[i]) < 0) - goto err; + igt_assert_lt(output_idxs[i], disp->n_outputs); + if (get_one_output(disp, output_idxs[i], &cconfs[i]) < 0) + return -1; } return 0; - -err: - while (i--) - drmModeFreeConnector(cconfs[i].connector); - - return -1; -} - -static void free_connectors(struct connector_config *cconfs, - int connector_count) -{ - int i; - - for (i = 0; i < connector_count; i++) - drmModeFreeConnector(cconfs[i].connector); } struct combination { @@ -911,14 +926,6 @@ static void get_combinations(int n, int k, bool allow_repetitions, iterate_combinations(n, k, allow_repetitions, 0, 0, &comb, set); } -static int get_crtc_count(int count_crtcs, bool extend) -{ - if ((count_crtcs <= CRTC_RESTRICT_CNT) || extend) - return count_crtcs; - else - return CRTC_RESTRICT_CNT; -} - static void test_combinations(const struct test_config *tconf, int connector_count) { @@ -926,33 +933,33 @@ static void test_combinations(const struct test_config *tconf, struct combination_set crtc_combs; struct connector_config *cconfs; int i; - int crtc_count = get_crtc_count(tconf->resources->count_crtcs, extended); + int crtc_count = get_crtc_count(tconf->display->n_crtcs, extended); - igt_assert(tconf->resources); + igt_assert(tconf->display); - connector_combs.capacity = pow(tconf->resources->count_connectors, + connector_combs.capacity = pow(tconf->display->n_outputs, crtc_count + 1); crtc_combs.capacity = pow(crtc_count, crtc_count + 1); connector_combs.items = malloc(connector_combs.capacity * sizeof(struct combination)); crtc_combs.items = malloc(crtc_combs.capacity * sizeof(struct combination)); - get_combinations(tconf->resources->count_connectors, connector_count, + get_combinations(tconf->display->n_outputs, connector_count, false, &connector_combs); get_combinations(crtc_count, connector_count, true, &crtc_combs); igt_info("Testing: %s %d connector combinations\n", tconf->name, connector_count); for (i = 0; i < connector_combs.count; i++) { - int *connector_idxs; + int *output_idxs; int ret; int j; cconfs = malloc(sizeof(*cconfs) * connector_count); igt_assert(cconfs); - connector_idxs = &connector_combs.items[i].elems[0]; - ret = get_connectors(tconf->resources, connector_idxs, + output_idxs = &connector_combs.items[i].elems[0]; + ret = get_connectors(tconf->display, output_idxs, connector_count, cconfs); if (ret < 0) goto free_cconfs; @@ -968,7 +975,6 @@ static void test_combinations(const struct test_config *tconf, test_one_combination(tconf, cconfs, connector_count); } - free_connectors(cconfs, connector_count); free_cconfs: free(cconfs); } @@ -980,7 +986,7 @@ free_cconfs: static void run_test(const struct test_config *tconf) { int connector_num; - int crtc_count = get_crtc_count(tconf->resources->count_crtcs, extended); + int crtc_count = get_crtc_count(tconf->display->n_crtcs, extended); connector_num = tconf->flags & TEST_CLONE ? 2 : 1; for (; connector_num <= crtc_count; connector_num++) @@ -1038,8 +1044,8 @@ int igt_main_args("det:", NULL, help_str, opt_handler, NULL) if (!dry_run) kmstest_set_vt_graphics_mode(); - drm_resources = drmModeGetResources(drm_fd); - igt_require(drm_resources); + igt_display_require(&display, drm_fd); + igt_require(display.is_atomic); max_dotclock = igt_get_max_dotclock(drm_fd); } @@ -1050,14 +1056,14 @@ int igt_main_args("det:", NULL, help_str, opt_handler, NULL) struct test_config tconf = { .flags = tests[i].flags, .name = tests[i].name, - .resources = drm_resources, + .display = &display, }; run_test(&tconf); } } igt_fixture() { - drmModeFreeResources(drm_resources); + igt_display_fini(&display); drm_close_driver(drm_fd); } } -- 2.43.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t v2 2/3] tests/kms_setmode: Convert modeset path to atomic API 2026-06-23 8:09 ` [PATCH i-g-t v2 2/3] tests/kms_setmode: Convert modeset path to atomic API Jeevan B @ 2026-06-23 8:26 ` Jani Nikula 0 siblings, 0 replies; 10+ messages in thread From: Jani Nikula @ 2026-06-23 8:26 UTC (permalink / raw) To: Jeevan B, igt-dev; +Cc: Jeevan B On Tue, 23 Jun 2026, Jeevan B <jeevan.b@intel.com> wrote: > Replace legacy DRM modeset and resource handling with the IGT atomic > display API, migrating the test to use igt_display_t, igt_output_t, > and atomic commit helpers. This removes direct drmModeSetCrtc() usage > in favor of igt_display_try_commit_atomic() and proper reset/commit > flows, updates helper functions and data structures accordingly, > and aligns the test with the modern atomic KMS model without > introducing functional changes. Thanks for doing this. > Signed-off-by: Jeevan B <jeevan.b@intel.com> > --- > tests/kms_setmode.c | 264 ++++++++++++++++++++++---------------------- > 1 file changed, 135 insertions(+), 129 deletions(-) > > diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c > index 5236078e0..419f5b518 100644 > --- a/tests/kms_setmode.c > +++ b/tests/kms_setmode.c > @@ -79,7 +79,7 @@ > #define HDMI_2_0_MAX_CLOCK_KHZ 600000 > > static int drm_fd; > -static drmModeRes *drm_resources; > +static igt_display_t display; > static int filter_test_id; > static bool dry_run; > static bool extended = false; > @@ -114,19 +114,17 @@ enum test_flags { > struct test_config { > const char *name; > enum test_flags flags; > - drmModeRes *resources; > + igt_display_t *display; > }; > > struct connector_config { > - drmModeConnector *connector; > + igt_output_t *output; > int crtc_idx; > drmModeModeInfo default_mode; > }; > > struct crtc_config { > int crtc_idx; > - int crtc_id; > - int pipe_id; > int connector_count; > struct connector_config *cconfs; > struct igt_fb fb_info; > @@ -151,9 +149,10 @@ static bool drm_mode_equal(drmModeModeInfo *m1, drmModeModeInfo *m2) > return true; > } > > -static bool connector_supports_mode(drmModeConnector *connector, > +static bool connector_supports_mode(igt_output_t *output, > drmModeModeInfo *mode) > { > + drmModeConnector *connector = output->config.connector; > int i; > > for (i = 0; i < connector->count_modes; i++) > @@ -179,7 +178,7 @@ static bool mode_compatible_with_connectors(struct crtc_config *crtc, > int i; > > for (i = 0; i < crtc->connector_count; i++) { > - drmModeConnector *conn = crtc->cconfs[i].connector; > + drmModeConnector *conn = crtc->cconfs[i].output->config.connector; > > /* Check HDMI 2.0 clock + per-connector compatibility */ > if (hdmi_connector_mode_exceeds_hdmi20_limit(conn, mode)) > @@ -194,13 +193,21 @@ static bool crtc_supports_mode(struct crtc_config *crtc, drmModeModeInfo *mode) > int i; > > for (i = 0; i < crtc->connector_count; i++) { > - if (!connector_supports_mode(crtc->cconfs[i].connector, mode)) > + if (!connector_supports_mode(crtc->cconfs[i].output, mode)) > return false; > } > > return true; > } > > +static int get_crtc_count(int count_crtcs, bool extend) > +{ > + if ((count_crtcs <= CRTC_RESTRICT_CNT) || extend) > + return count_crtcs; > + else > + return CRTC_RESTRICT_CNT; > +} > + > static int paint_fb(struct igt_fb *fb, const char *test_name, > const char **crtc_str, int crtc_count, int current_crtc_idx) > { > @@ -272,8 +279,8 @@ static void get_mode_for_crtc(struct crtc_config *crtc, > * Then just fall back to find any that is supported by all > * connectors. > */ > - for (i = 0; i < crtc->cconfs[0].connector->count_modes; i++) { > - mode = &crtc->cconfs[0].connector->modes[i]; > + for (i = 0; i < crtc->cconfs[0].output->config.connector->count_modes; i++) { > + mode = &crtc->cconfs[0].output->config.connector->modes[i]; > if (crtc_supports_mode(crtc, mode)) { > *mode_ret = *mode; > return; > @@ -286,7 +293,7 @@ static void get_mode_for_crtc(struct crtc_config *crtc, > * incompatible with modes supported by external displays. > */ > for (i = 0; i < crtc->connector_count; i++) { > - drmModeConnector *conn = crtc->cconfs[i].connector; > + drmModeConnector *conn = crtc->cconfs[i].output->config.connector; > > if (conn->connector_type == DRM_MODE_CONNECTOR_eDP) { > mode = &conn->modes[0]; > @@ -329,17 +336,18 @@ static int get_encoder_idx(drmModeRes *resources, drmModeEncoder *encoder) > static void get_crtc_config_str(struct crtc_config *crtc, char *buf, > size_t buf_size) > { > + igt_crtc_t *igt_crtc = &display.crtcs[crtc->crtc_idx]; Please use "crtc" for igt_crtc_t. That's the naming convention everywhere. Please rename the old one first. Please don't access display.crtcs directly. Please use igt_crtc_for_crtc_index() instead. > int pos; > int i; > > pos = snprintf(buf, buf_size, > "CRTC[%d] [Pipe %s] Mode: %s@%dHz Connectors: ", > - crtc->crtc_id, kmstest_pipe_name(crtc->pipe_id), > + igt_crtc->crtc_id, kmstest_pipe_name(igt_crtc->pipe), igt_crtc_name() throughout. > crtc->mode.name, crtc->mode.vrefresh); > if (pos > buf_size) > return; > for (i = 0; i < crtc->connector_count; i++) { > - drmModeConnector *connector = crtc->cconfs[i].connector; > + drmModeConnector *connector = crtc->cconfs[i].output->config.connector; > > pos += snprintf(&buf[pos], buf_size - pos, > "%s%s-%d[%d]", i ? ", " : "", > @@ -355,14 +363,24 @@ static void setup_crtcs(const struct test_config *tconf, > int connector_count, struct crtc_config *crtcs, > int *crtc_count_ret, bool *config_valid_ret) > { > + igt_display_t *disp = tconf->display; igt_display_t *display is the naming convention everywhere. > struct crtc_config *crtc; > int crtc_count; > bool config_valid; > int i; > - drmModeRes *resources = tconf->resources; > - int encoder_usage_count[resources->count_encoders]; > + drmModeRes *resources; > + int *encoder_usage_count; > + > + /* Fetch resources locally only for encoder clone validity checks */ > + resources = drmModeGetResources(drm_fd); > + igt_assert(resources); > > - kmstest_unset_all_crtcs(drm_fd, resources); > + encoder_usage_count = calloc(resources->count_encoders, > + sizeof(*encoder_usage_count)); > + igt_assert(encoder_usage_count); > + > + /* Reset pending display state for a clean slate */ > + igt_display_reset(disp); > > i = 0; > crtc_count = 0; > @@ -376,11 +394,6 @@ static void setup_crtcs(const struct test_config *tconf, > igt_assert_lt(crtc_count, MAX_CRTCS); > > crtc->crtc_idx = cconf[i].crtc_idx; > - crtc->crtc_id = resources->crtcs[crtc->crtc_idx]; > - > - /* FIXME: avoid __intel_get_pipe_from_crtc_index() */ > - crtc->pipe_id = is_intel_device(drm_fd) ? > - __intel_get_pipe_from_crtc_index(drm_fd, crtc->crtc_idx) : crtc->crtc_idx; > > crtc->connector_count = 1; > for (j = i + 1; j < connector_count; j++) > @@ -393,11 +406,18 @@ static void setup_crtcs(const struct test_config *tconf, > > encoder_mask = 0; > for (j = 0; j < crtc->connector_count; j++) { > + igt_output_t *output; > drmModeConnector *connector; > drmModeEncoder *encoder; > + igt_crtc_t *igt_crtc; crtc > > crtc->cconfs[j] = cconf[i + j]; > - connector = cconf[i + j].connector; > + output = cconf[i + j].output; > + connector = output->config.connector; > + igt_crtc = &disp->crtcs[crtc->crtc_idx]; Please don't access display->crtcs directly. > + > + /* Check CRTC/output compatibility using IGT helper */ > + config_valid &= igt_crtc_connector_valid(igt_crtc, output); > > /* Intel connectors have only a single encoder */ > if (connector->count_encoders == 1) { > @@ -413,9 +433,6 @@ static void setup_crtcs(const struct test_config *tconf, > } > igt_assert(encoder); > > - config_valid &= !!(encoder->possible_crtcs & > - (1 << crtc->crtc_idx)); > - > encoder_mask |= 1 << get_encoder_idx(resources, > encoder); > config_valid &= !(encoder_mask & > @@ -424,16 +441,15 @@ static void setup_crtcs(const struct test_config *tconf, > drmModeFreeEncoder(encoder); > } > get_mode_for_crtc(crtc, &crtc->mode); > - create_fb_for_crtc(crtc, &crtc->fb_info); > + memset(&crtc->fb_info, 0, sizeof(crtc->fb_info)); > > i += crtc->connector_count; > crtc_count++; > crtc++; > } > > - memset(encoder_usage_count, 0, sizeof(encoder_usage_count)); > for (i = 0; i < connector_count; i++) { > - drmModeConnector *connector = cconf[i].connector; > + drmModeConnector *connector = cconf[i].output->config.connector; > drmModeEncoder *encoder; > int idx = 0; > > @@ -450,6 +466,9 @@ static void setup_crtcs(const struct test_config *tconf, > !!(tconf->flags & TEST_SINGLE_CRTC_CLONE)) > config_valid = false; > > + free(encoder_usage_count); > + drmModeFreeResources(resources); > + > *crtc_count_ret = crtc_count; > *config_valid_ret = config_valid; > } > @@ -458,9 +477,12 @@ static void cleanup_crtcs(struct crtc_config *crtcs, int crtc_count) > { > int i; > > + igt_display_reset(&display); > + igt_display_commit_atomic(&display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > + > for (i = 0; i < crtc_count; i++) { > - igt_remove_fb(drm_fd, &crtcs[i].fb_info); > - drmModeSetCrtc(drm_fd, crtcs[i].crtc_id, 0, 0, 0, NULL, 0, NULL); > + if (crtcs[i].fb_info.fb_id) > + igt_remove_fb(drm_fd, &crtcs[i].fb_info); > > free(crtcs[i].cconfs); > } > @@ -481,9 +503,10 @@ static bool check_timings(int crtc_idx, const drmModeModeInfo *kmode) > double mean; > double stddev; > int n; > + int pipe_crtc_index = display.crtcs[crtc_idx].crtc_index; Please don't access display.crtcs directly. pipe_crtc_index doesn't mean anything. It's either enum pipe (which should be avoided) or int crtc_index. > > memset(&wait, 0, sizeof(wait)); > - wait.request.type = kmstest_get_vbl_flag(crtc_idx); > + wait.request.type = kmstest_get_vbl_flag(pipe_crtc_index); It's just crtc_index here. Please don't confuse pipe here. > wait.request.type |= DRM_VBLANK_RELATIVE | DRM_VBLANK_NEXTONMISS; > do_or_die(drmWaitVBlank(drm_fd, &wait)); > > @@ -493,7 +516,7 @@ static bool check_timings(int crtc_idx, const drmModeModeInfo *kmode) > last_timestamp += wait.reply.tval_usec; > > memset(&wait, 0, sizeof(wait)); > - wait.request.type = kmstest_get_vbl_flag(crtc_idx); > + wait.request.type = kmstest_get_vbl_flag(pipe_crtc_index); Ditto. > wait.request.type |= DRM_VBLANK_ABSOLUTE | DRM_VBLANK_EVENT; > wait.request.sequence = last_seq; > for (n = 0; n < CALIBRATE_TS_STEPS; n++) { > @@ -503,7 +526,7 @@ static bool check_timings(int crtc_idx, const drmModeModeInfo *kmode) > do_or_die(drmWaitVBlank(drm_fd, &wait)); > > /* Double check that haven't already missed the vblank */ > - check.request.type = kmstest_get_vbl_flag(crtc_idx); > + check.request.type = kmstest_get_vbl_flag(pipe_crtc_index); Ditto. > check.request.type |= DRM_VBLANK_RELATIVE; > do_or_die(drmWaitVBlank(drm_fd, &check)); > > @@ -611,14 +634,17 @@ static void test_crtc_config(const struct test_config *tconf, > > retry: > if (retry) { > - kmstest_unset_all_crtcs(drm_fd, tconf->resources); > + igt_display_reset(tconf->display); > > for (i = 0; i < crtc_count; i++) { > - /* Sort the modes in asending order by clock freq. */ > - igt_sort_connector_modes(crtcs[i].cconfs->connector, > + if (crtcs[i].fb_info.fb_id) > + igt_remove_fb(drm_fd, &crtcs[i].fb_info); > + /* Sort modes in ascending order by clock to find a lower-BW mode */ > + igt_sort_connector_modes(crtcs[i].cconfs->output->config.connector, > sort_drm_modes_by_clk_asc); > > - crtcs[i].mode = crtcs[i].cconfs->connector->modes[0]; > + crtcs[i].mode = crtcs[i].cconfs->output->config.connector->modes[0]; > + > } > } > > @@ -634,42 +660,63 @@ retry: > } > > for (i = 0; i < crtc_count; i++) { for_each_crtc(), bail out early if you want to limit. Ditto everywhere for looping crtcs. > - uint32_t *ids; > + igt_plane_t *primary; > + igt_crtc_t *igt_crtc; crtc > + bool invalid_clone; > + int j; > > crtc = &crtcs[i]; > + igt_crtc = &display.crtcs[crtc->crtc_idx]; Please don't access display.crtcs directly. > + > + /* Treat this as expected failure for invalid tests.*/ > + invalid_clone = (tconf->flags & TEST_INVALID) && > + (crtc->connector_count > 1); > + > + if (invalid_clone) { > + config_failed = true; > + continue; > + } > > igt_info(" %s\n", crtc_strs[i]); > > create_fb_for_crtc(crtc, &crtc->fb_info); > paint_fb(&crtc->fb_info, tconf->name, crtc_strs, crtc_count, i); > > - ids = malloc(sizeof(*ids) * crtc->connector_count); > - igt_assert(ids); > - for (int j = 0; j < crtc->connector_count; j++) > - ids[j] = crtc->cconfs[j].connector->connector_id; > + /* Assign each output to this CRTC with the selected mode */ > + for (j = 0; j < crtc->connector_count; j++) { > + igt_output_t *output = crtc->cconfs[j].output; > > - ret = drmModeSetCrtc(drm_fd, crtc->crtc_id, > - crtc->fb_info.fb_id, 0, 0, ids, > - crtc->connector_count, &crtc->mode); > + igt_output_set_crtc(output, igt_crtc); > + igt_output_override_mode(output, &crtc->mode); > + } > > - if (is_intel_device(drm_fd)) > - intel_drrs_disable_crtc_index(drm_fd, crtc->crtc_idx); > + primary = igt_crtc_get_plane_type(igt_crtc, DRM_PLANE_TYPE_PRIMARY); > + igt_plane_set_fb(primary, &crtc->fb_info); > + } > > - free(ids); > + ret = igt_display_try_commit_atomic(tconf->display, > + DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > > - if (ret < 0) { > - if (errno == ENOSPC) { > - igt_skip_on_f(retry, "No suitable mode(s) found to fit into the link BW.\n"); > + if (is_intel_device(drm_fd) && ret == 0) { > + for (i = 0; i < crtc_count; i++) > + intel_drrs_disable(&display.crtcs[crtcs[i].crtc_idx]); > + } > > - retry = true; > - goto retry; > - } > + if (ret < 0) { > + if (ret == -ENOSPC) { > + igt_skip_on_f(retry, "No suitable mode(s) found to fit into the link BW.\n"); > > - igt_assert_eq(errno, EINVAL); > - config_failed = true; > + retry = true; > + goto retry; > } > + > + igt_assert_eq(ret, -EINVAL); > + config_failed = true; > } > > + if (!(tconf->flags & TEST_INVALID) && config_failed) > + igt_skip("No compatible mode for this combination\n"); > + > igt_assert(config_failed == !!(tconf->flags & TEST_INVALID)); > > if (ret == 0 && tconf->flags & TEST_TIMINGS) { > @@ -694,10 +741,11 @@ static int get_test_name_str(struct crtc_config *crtc, char *buf, > int pos; > int i; > > - pos = snprintf(buf, buf_size, "pipe-%s-", kmstest_pipe_name(crtc->pipe_id)); > + pos = snprintf(buf, buf_size, "pipe-%s-", > + kmstest_pipe_name(display.crtcs[crtc->crtc_idx].pipe)); Please have igt_crtc_* handy, use igt_crtc_name() instead of kmstest_pipe_name(), avoid pipe usage like the plague. > > for (i = 0; i < crtc->connector_count; i++) { > - drmModeConnector *connector = crtc->cconfs[i].connector; > + drmModeConnector *connector = crtc->cconfs[i].output->config.connector; > > pos += snprintf(&buf[pos], buf_size - pos, > "%s%s-%d", i ? "-" : "", > @@ -734,18 +782,15 @@ static void test_one_combination(const struct test_config *tconf, > > for (i = 0; i < crtc_count; i++) { > struct crtc_config *crtc = &crtcs[i]; > - char conn_name[24], prev_conn_name[24]; > + char conn_name[64], prev_conn_name[64]; > + int n_valid_crtcs = get_crtc_count(tconf->display->n_crtcs, extended); Don't access display->n_crtcs directly. Just throughout, check if there's an accessor function available, and use that instead. Please use igt_display_n_crtcs(). > > - snprintf(conn_name, sizeof(conn_name), > - "%s-%d", > - kmstest_connector_type_str(crtcs[i].cconfs->connector->connector_type), > - crtcs[i].cconfs->connector->connector_type_id); > + snprintf(conn_name, sizeof(conn_name), "%s", > + igt_output_name(crtc->cconfs->output)); > > if (i > 0) > - snprintf(prev_conn_name, sizeof(prev_conn_name), > - "%s-%d", > - kmstest_connector_type_str(crtcs[i - 1].cconfs->connector->connector_type), > - crtcs[i - 1].cconfs->connector->connector_type_id); > + snprintf(prev_conn_name, sizeof(prev_conn_name), "%s", > + igt_output_name(crtcs[i - 1].cconfs->output)); > > /* > * Handle BW limitations on intel hardware: > @@ -762,7 +807,7 @@ static void test_one_combination(const struct test_config *tconf, > */ > if (((igt_check_force_joiner_status(drm_fd, conn_name) || > igt_bigjoiner_possible(drm_fd, &crtc->mode, max_dotclock)) && > - ((crtc->crtc_idx >= (tconf->resources->count_crtcs - 1)) || > + ((crtc->crtc_idx >= (n_valid_crtcs - 1)) || > ((i < (crtc_count - 1)) && (abs(crtcs[i + 1].crtc_idx - crtc->crtc_idx) <= 1)))) || > ((i > 0) && (igt_check_force_joiner_status(drm_fd, prev_conn_name) || > igt_bigjoiner_possible(drm_fd, &crtc[i - 1].mode, max_dotclock)) && > @@ -807,63 +852,33 @@ static int assign_crtc_to_connectors(const struct test_config *tconf, > return 0; > } > > -static int get_one_connector(drmModeRes *resources, int connector_id, > - struct connector_config *cconf) > +static int get_one_output(igt_display_t *disp, int output_idx, > + struct connector_config *cconf) igt_display_t *display > { > - drmModeConnector *connector; > - > - connector = drmModeGetConnectorCurrent(drm_fd, connector_id); > - igt_assert(connector); > - cconf->connector = connector; > + igt_output_t *output = &disp->outputs[output_idx]; > > - if (connector->connection != DRM_MODE_CONNECTED) { > - drmModeFreeConnector(connector); > + if (!igt_output_is_connected(output)) > return -1; > - } > > - if (!kmstest_get_connector_default_mode(drm_fd, connector, > - &cconf->default_mode)) { > - drmModeFreeConnector(connector); > - return -1; > - } > + cconf->output = output; > + cconf->default_mode = *igt_output_get_mode(output); > > return 0; > } > > -static int get_connectors(drmModeRes *resources, int *connector_idxs, > +static int get_connectors(igt_display_t *disp, int *output_idxs, > int connector_count, struct connector_config *cconfs) igt_display_t *display > { > int i; > > for (i = 0; i < connector_count; i++) { > - int connector_idx; > - int connector_id; > - > - connector_idx = connector_idxs[i]; > - igt_assert_lt(connector_idx, resources->count_connectors); > - connector_id = resources->connectors[connector_idx]; > - > - if (get_one_connector(resources, connector_id, &cconfs[i]) < 0) > - goto err; > + igt_assert_lt(output_idxs[i], disp->n_outputs); > > + if (get_one_output(disp, output_idxs[i], &cconfs[i]) < 0) > + return -1; > } > > return 0; > - > -err: > - while (i--) > - drmModeFreeConnector(cconfs[i].connector); > - > - return -1; > -} > - > -static void free_connectors(struct connector_config *cconfs, > - int connector_count) > -{ > - int i; > - > - for (i = 0; i < connector_count; i++) > - drmModeFreeConnector(cconfs[i].connector); > } > > struct combination { > @@ -911,14 +926,6 @@ static void get_combinations(int n, int k, bool allow_repetitions, > iterate_combinations(n, k, allow_repetitions, 0, 0, &comb, set); > } > > -static int get_crtc_count(int count_crtcs, bool extend) > -{ > - if ((count_crtcs <= CRTC_RESTRICT_CNT) || extend) > - return count_crtcs; > - else > - return CRTC_RESTRICT_CNT; > -} > - > static void test_combinations(const struct test_config *tconf, > int connector_count) > { > @@ -926,33 +933,33 @@ static void test_combinations(const struct test_config *tconf, > struct combination_set crtc_combs; > struct connector_config *cconfs; > int i; > - int crtc_count = get_crtc_count(tconf->resources->count_crtcs, extended); > + int crtc_count = get_crtc_count(tconf->display->n_crtcs, extended); > > - igt_assert(tconf->resources); > + igt_assert(tconf->display); > > - connector_combs.capacity = pow(tconf->resources->count_connectors, > + connector_combs.capacity = pow(tconf->display->n_outputs, > crtc_count + 1); > crtc_combs.capacity = pow(crtc_count, > crtc_count + 1); > connector_combs.items = malloc(connector_combs.capacity * sizeof(struct combination)); > crtc_combs.items = malloc(crtc_combs.capacity * sizeof(struct combination)); > > - get_combinations(tconf->resources->count_connectors, connector_count, > + get_combinations(tconf->display->n_outputs, connector_count, > false, &connector_combs); > get_combinations(crtc_count, connector_count, true, &crtc_combs); > > igt_info("Testing: %s %d connector combinations\n", tconf->name, > connector_count); > for (i = 0; i < connector_combs.count; i++) { > - int *connector_idxs; > + int *output_idxs; > int ret; > int j; > > cconfs = malloc(sizeof(*cconfs) * connector_count); > igt_assert(cconfs); > > - connector_idxs = &connector_combs.items[i].elems[0]; > - ret = get_connectors(tconf->resources, connector_idxs, > + output_idxs = &connector_combs.items[i].elems[0]; > + ret = get_connectors(tconf->display, output_idxs, > connector_count, cconfs); > if (ret < 0) > goto free_cconfs; > @@ -968,7 +975,6 @@ static void test_combinations(const struct test_config *tconf, > test_one_combination(tconf, cconfs, connector_count); > } > > - free_connectors(cconfs, connector_count); > free_cconfs: > free(cconfs); > } > @@ -980,7 +986,7 @@ free_cconfs: > static void run_test(const struct test_config *tconf) > { > int connector_num; > - int crtc_count = get_crtc_count(tconf->resources->count_crtcs, extended); > + int crtc_count = get_crtc_count(tconf->display->n_crtcs, extended); > > connector_num = tconf->flags & TEST_CLONE ? 2 : 1; > for (; connector_num <= crtc_count; connector_num++) > @@ -1038,8 +1044,8 @@ int igt_main_args("det:", NULL, help_str, opt_handler, NULL) > if (!dry_run) > kmstest_set_vt_graphics_mode(); > > - drm_resources = drmModeGetResources(drm_fd); > - igt_require(drm_resources); > + igt_display_require(&display, drm_fd); > + igt_require(display.is_atomic); > > max_dotclock = igt_get_max_dotclock(drm_fd); > } > @@ -1050,14 +1056,14 @@ int igt_main_args("det:", NULL, help_str, opt_handler, NULL) > struct test_config tconf = { > .flags = tests[i].flags, > .name = tests[i].name, > - .resources = drm_resources, > + .display = &display, > }; > run_test(&tconf); > } > } > > igt_fixture() { > - drmModeFreeResources(drm_resources); > + igt_display_fini(&display); > drm_close_driver(drm_fd); > } > } -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t v2 3/3] tests/kms_setmode: Use public igt_display helper APIs 2026-06-23 8:09 [PATCH i-g-t v2 0/3] tests/kms_setmode: Convert to igt_display atomic API Jeevan B 2026-06-23 8:09 ` [PATCH i-g-t v2 1/3] tests/kms_setmode: Drop invalid-clone-single-crtc-stealing subtest Jeevan B 2026-06-23 8:09 ` [PATCH i-g-t v2 2/3] tests/kms_setmode: Convert modeset path to atomic API Jeevan B @ 2026-06-23 8:09 ` Jeevan B 2026-06-23 8:31 ` Jani Nikula 2026-06-23 13:26 ` ✓ i915.CI.BAT: success for tests/kms_setmode: Convert to igt_display atomic API (rev2) Patchwork ` (3 subsequent siblings) 6 siblings, 1 reply; 10+ messages in thread From: Jeevan B @ 2026-06-23 8:09 UTC (permalink / raw) To: igt-dev; +Cc: Jeevan B Replace all direct access to igt_display_t internals with public helper APIs to maintain proper encapsulation and improve forward compatibility with IGT. This refactoring updates code to use igt_display and igt_crtc accessors, adjusts function signatures to pass objects instead of indices, and removes reliance on internal struct fields, ensuring cleaner, more robust, and idiomatic usage without changing functionality. Signed-off-by: Jeevan B <jeevan.b@intel.com> --- tests/kms_setmode.c | 68 ++++++++++++++++++++++++++++----------------- 1 file changed, 43 insertions(+), 25 deletions(-) diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c index 419f5b518..1d5c4dfb0 100644 --- a/tests/kms_setmode.c +++ b/tests/kms_setmode.c @@ -334,12 +334,14 @@ static int get_encoder_idx(drmModeRes *resources, drmModeEncoder *encoder) } static void get_crtc_config_str(struct crtc_config *crtc, char *buf, - size_t buf_size) + size_t buf_size, igt_display_t *disp) { - igt_crtc_t *igt_crtc = &display.crtcs[crtc->crtc_idx]; + igt_crtc_t *igt_crtc = igt_crtc_for_crtc_index(disp, crtc->crtc_idx); int pos; int i; + igt_assert(igt_crtc); + pos = snprintf(buf, buf_size, "CRTC[%d] [Pipe %s] Mode: %s@%dHz Connectors: ", igt_crtc->crtc_id, kmstest_pipe_name(igt_crtc->pipe), @@ -374,7 +376,6 @@ static void setup_crtcs(const struct test_config *tconf, /* Fetch resources locally only for encoder clone validity checks */ resources = drmModeGetResources(drm_fd); igt_assert(resources); - encoder_usage_count = calloc(resources->count_encoders, sizeof(*encoder_usage_count)); igt_assert(encoder_usage_count); @@ -409,15 +410,16 @@ static void setup_crtcs(const struct test_config *tconf, igt_output_t *output; drmModeConnector *connector; drmModeEncoder *encoder; - igt_crtc_t *igt_crtc; + igt_crtc_t *crtc_obj; crtc->cconfs[j] = cconf[i + j]; output = cconf[i + j].output; connector = output->config.connector; - igt_crtc = &disp->crtcs[crtc->crtc_idx]; + crtc_obj = igt_crtc_for_crtc_index(disp, crtc->crtc_idx); + igt_assert(crtc_obj); /* Check CRTC/output compatibility using IGT helper */ - config_valid &= igt_crtc_connector_valid(igt_crtc, output); + config_valid &= igt_crtc_connector_valid(crtc_obj, output); /* Intel connectors have only a single encoder */ if (connector->count_encoders == 1) { @@ -491,7 +493,7 @@ static void cleanup_crtcs(struct crtc_config *crtcs, int crtc_count) #define frame_time(km) (1000.0 * (km)->htotal * (km)->vtotal / (km)->clock) #define line_time(km) (1000.0 * (km)->htotal / (km)->clock) -static bool check_timings(int crtc_idx, const drmModeModeInfo *kmode) +static bool check_timings(igt_crtc_t *crtc, const drmModeModeInfo *kmode) { #define CALIBRATE_TS_STEPS 120 /* ~2s has to be less than 128! */ drmVBlank wait; @@ -503,10 +505,9 @@ static bool check_timings(int crtc_idx, const drmModeModeInfo *kmode) double mean; double stddev; int n; - int pipe_crtc_index = display.crtcs[crtc_idx].crtc_index; memset(&wait, 0, sizeof(wait)); - wait.request.type = kmstest_get_vbl_flag(pipe_crtc_index); + wait.request.type = igt_crtc_get_vbl_flag(crtc); wait.request.type |= DRM_VBLANK_RELATIVE | DRM_VBLANK_NEXTONMISS; do_or_die(drmWaitVBlank(drm_fd, &wait)); @@ -516,7 +517,7 @@ static bool check_timings(int crtc_idx, const drmModeModeInfo *kmode) last_timestamp += wait.reply.tval_usec; memset(&wait, 0, sizeof(wait)); - wait.request.type = kmstest_get_vbl_flag(pipe_crtc_index); + wait.request.type = igt_crtc_get_vbl_flag(crtc); wait.request.type |= DRM_VBLANK_ABSOLUTE | DRM_VBLANK_EVENT; wait.request.sequence = last_seq; for (n = 0; n < CALIBRATE_TS_STEPS; n++) { @@ -526,7 +527,7 @@ static bool check_timings(int crtc_idx, const drmModeModeInfo *kmode) do_or_die(drmWaitVBlank(drm_fd, &wait)); /* Double check that haven't already missed the vblank */ - check.request.type = kmstest_get_vbl_flag(pipe_crtc_index); + check.request.type = igt_crtc_get_vbl_flag(crtc); check.request.type |= DRM_VBLANK_RELATIVE; do_or_die(drmWaitVBlank(drm_fd, &check)); @@ -649,7 +650,7 @@ retry: } for (i = 0; i < crtc_count; i++) { - get_crtc_config_str(&crtcs[i], str_buf[i], sizeof(str_buf[i])); + get_crtc_config_str(&crtcs[i], str_buf[i], sizeof(str_buf[i]), tconf->display); crtc_strs[i] = &str_buf[i][0]; } @@ -661,12 +662,13 @@ retry: for (i = 0; i < crtc_count; i++) { igt_plane_t *primary; - igt_crtc_t *igt_crtc; + igt_crtc_t *crtc_obj; bool invalid_clone; int j; crtc = &crtcs[i]; - igt_crtc = &display.crtcs[crtc->crtc_idx]; + crtc_obj = igt_crtc_for_crtc_index(tconf->display, crtc->crtc_idx); + igt_assert(crtc_obj); /* Treat this as expected failure for invalid tests.*/ invalid_clone = (tconf->flags & TEST_INVALID) && @@ -686,11 +688,11 @@ retry: for (j = 0; j < crtc->connector_count; j++) { igt_output_t *output = crtc->cconfs[j].output; - igt_output_set_crtc(output, igt_crtc); + igt_output_set_crtc(output, crtc_obj); igt_output_override_mode(output, &crtc->mode); } - primary = igt_crtc_get_plane_type(igt_crtc, DRM_PLANE_TYPE_PRIMARY); + primary = igt_crtc_get_plane_type(crtc_obj, DRM_PLANE_TYPE_PRIMARY); igt_plane_set_fb(primary, &crtc->fb_info); } @@ -698,8 +700,13 @@ retry: DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); if (is_intel_device(drm_fd) && ret == 0) { - for (i = 0; i < crtc_count; i++) - intel_drrs_disable(&display.crtcs[crtcs[i].crtc_idx]); + for (i = 0; i < crtc_count; i++) { + igt_crtc_t *crtc_obj = igt_crtc_for_crtc_index(tconf->display, + crtcs[i].crtc_idx); + + igt_assert(crtc_obj); + intel_drrs_disable(crtc_obj); + } } if (ret < 0) { @@ -721,9 +728,12 @@ retry: if (ret == 0 && tconf->flags & TEST_TIMINGS) { bool status = false; + igt_crtc_t *crtc_obj = igt_crtc_for_crtc_index(tconf->display, + crtcs[0].crtc_idx); + igt_assert(crtc_obj); for (int attempt = 1; attempt <= 2; attempt++) { - status = check_timings(crtcs[0].crtc_idx, &crtcs[0].mode); + status = check_timings(crtc_obj, &crtcs[0].mode); if (status) break; igt_info("Timing check failed on attempt %d, retrying...\n", attempt); @@ -736,13 +746,16 @@ retry: } static int get_test_name_str(struct crtc_config *crtc, char *buf, - size_t buf_size) + size_t buf_size, igt_display_t *disp) { + igt_crtc_t *crtc_obj = igt_crtc_for_crtc_index(disp, crtc->crtc_idx); int pos; int i; + igt_assert(crtc_obj); + pos = snprintf(buf, buf_size, "pipe-%s-", - kmstest_pipe_name(display.crtcs[crtc->crtc_idx].pipe)); + kmstest_pipe_name(crtc_obj->pipe)); for (i = 0; i < crtc->connector_count; i++) { drmModeConnector *connector = crtc->cconfs[i].output->config.connector; @@ -774,7 +787,9 @@ static void test_one_combination(const struct test_config *tconf, for (i = 0; i < crtc_count; i++) { if (i > 0) pos += snprintf(&test_name[pos], ARRAY_SIZE(test_name) - pos, "-"); - pos += get_test_name_str(&crtcs[i], &test_name[pos], ARRAY_SIZE(test_name) - pos); + pos += get_test_name_str(&crtcs[i], &test_name[pos], + ARRAY_SIZE(test_name) - pos, + tconf->display); } if (!is_intel_device(drm_fd)) @@ -783,7 +798,8 @@ static void test_one_combination(const struct test_config *tconf, for (i = 0; i < crtc_count; i++) { struct crtc_config *crtc = &crtcs[i]; char conn_name[64], prev_conn_name[64]; - int n_valid_crtcs = get_crtc_count(tconf->display->n_crtcs, extended); + int n_valid_crtcs = get_crtc_count(igt_display_n_crtcs(tconf->display), + extended); snprintf(conn_name, sizeof(conn_name), "%s", igt_output_name(crtc->cconfs->output)); @@ -933,7 +949,8 @@ static void test_combinations(const struct test_config *tconf, struct combination_set crtc_combs; struct connector_config *cconfs; int i; - int crtc_count = get_crtc_count(tconf->display->n_crtcs, extended); + int crtc_count = get_crtc_count(igt_display_n_crtcs(tconf->display), + extended); igt_assert(tconf->display); @@ -986,7 +1003,8 @@ free_cconfs: static void run_test(const struct test_config *tconf) { int connector_num; - int crtc_count = get_crtc_count(tconf->display->n_crtcs, extended); + int crtc_count = get_crtc_count(igt_display_n_crtcs(tconf->display), + extended); connector_num = tconf->flags & TEST_CLONE ? 2 : 1; for (; connector_num <= crtc_count; connector_num++) -- 2.43.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t v2 3/3] tests/kms_setmode: Use public igt_display helper APIs 2026-06-23 8:09 ` [PATCH i-g-t v2 3/3] tests/kms_setmode: Use public igt_display helper APIs Jeevan B @ 2026-06-23 8:31 ` Jani Nikula 0 siblings, 0 replies; 10+ messages in thread From: Jani Nikula @ 2026-06-23 8:31 UTC (permalink / raw) To: Jeevan B, igt-dev; +Cc: Jeevan B On Tue, 23 Jun 2026, Jeevan B <jeevan.b@intel.com> wrote: > Replace all direct access to igt_display_t internals with public > helper APIs to maintain proper encapsulation and improve forward > compatibility with IGT. This refactoring updates code to use > igt_display and igt_crtc accessors, adjusts function signatures > to pass objects instead of indices, and removes reliance on internal > struct fields, ensuring cleaner, more robust, and idiomatic > usage without changing functionality. These changes need to be folded into the previous patch instead of adding a broken intermediate step. > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > --- > tests/kms_setmode.c | 68 ++++++++++++++++++++++++++++----------------- > 1 file changed, 43 insertions(+), 25 deletions(-) > > diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c > index 419f5b518..1d5c4dfb0 100644 > --- a/tests/kms_setmode.c > +++ b/tests/kms_setmode.c > @@ -334,12 +334,14 @@ static int get_encoder_idx(drmModeRes *resources, drmModeEncoder *encoder) > } > > static void get_crtc_config_str(struct crtc_config *crtc, char *buf, > - size_t buf_size) > + size_t buf_size, igt_display_t *disp) > { > - igt_crtc_t *igt_crtc = &display.crtcs[crtc->crtc_idx]; > + igt_crtc_t *igt_crtc = igt_crtc_for_crtc_index(disp, crtc->crtc_idx); > int pos; > int i; > > + igt_assert(igt_crtc); > + > pos = snprintf(buf, buf_size, > "CRTC[%d] [Pipe %s] Mode: %s@%dHz Connectors: ", > igt_crtc->crtc_id, kmstest_pipe_name(igt_crtc->pipe), > @@ -374,7 +376,6 @@ static void setup_crtcs(const struct test_config *tconf, > /* Fetch resources locally only for encoder clone validity checks */ > resources = drmModeGetResources(drm_fd); > igt_assert(resources); > - > encoder_usage_count = calloc(resources->count_encoders, > sizeof(*encoder_usage_count)); > igt_assert(encoder_usage_count); > @@ -409,15 +410,16 @@ static void setup_crtcs(const struct test_config *tconf, > igt_output_t *output; > drmModeConnector *connector; > drmModeEncoder *encoder; > - igt_crtc_t *igt_crtc; > + igt_crtc_t *crtc_obj; Please no. The convention everywhere is igt_crtc_t *crtc. Use it. Everywhere. > > crtc->cconfs[j] = cconf[i + j]; > output = cconf[i + j].output; > connector = output->config.connector; > - igt_crtc = &disp->crtcs[crtc->crtc_idx]; > + crtc_obj = igt_crtc_for_crtc_index(disp, crtc->crtc_idx); > + igt_assert(crtc_obj); > > /* Check CRTC/output compatibility using IGT helper */ > - config_valid &= igt_crtc_connector_valid(igt_crtc, output); > + config_valid &= igt_crtc_connector_valid(crtc_obj, output); > > /* Intel connectors have only a single encoder */ > if (connector->count_encoders == 1) { > @@ -491,7 +493,7 @@ static void cleanup_crtcs(struct crtc_config *crtcs, int crtc_count) > #define frame_time(km) (1000.0 * (km)->htotal * (km)->vtotal / (km)->clock) > #define line_time(km) (1000.0 * (km)->htotal / (km)->clock) > > -static bool check_timings(int crtc_idx, const drmModeModeInfo *kmode) > +static bool check_timings(igt_crtc_t *crtc, const drmModeModeInfo *kmode) > { > #define CALIBRATE_TS_STEPS 120 /* ~2s has to be less than 128! */ > drmVBlank wait; > @@ -503,10 +505,9 @@ static bool check_timings(int crtc_idx, const drmModeModeInfo *kmode) > double mean; > double stddev; > int n; > - int pipe_crtc_index = display.crtcs[crtc_idx].crtc_index; > > memset(&wait, 0, sizeof(wait)); > - wait.request.type = kmstest_get_vbl_flag(pipe_crtc_index); > + wait.request.type = igt_crtc_get_vbl_flag(crtc); > wait.request.type |= DRM_VBLANK_RELATIVE | DRM_VBLANK_NEXTONMISS; > do_or_die(drmWaitVBlank(drm_fd, &wait)); > > @@ -516,7 +517,7 @@ static bool check_timings(int crtc_idx, const drmModeModeInfo *kmode) > last_timestamp += wait.reply.tval_usec; > > memset(&wait, 0, sizeof(wait)); > - wait.request.type = kmstest_get_vbl_flag(pipe_crtc_index); > + wait.request.type = igt_crtc_get_vbl_flag(crtc); > wait.request.type |= DRM_VBLANK_ABSOLUTE | DRM_VBLANK_EVENT; > wait.request.sequence = last_seq; > for (n = 0; n < CALIBRATE_TS_STEPS; n++) { > @@ -526,7 +527,7 @@ static bool check_timings(int crtc_idx, const drmModeModeInfo *kmode) > do_or_die(drmWaitVBlank(drm_fd, &wait)); > > /* Double check that haven't already missed the vblank */ > - check.request.type = kmstest_get_vbl_flag(pipe_crtc_index); > + check.request.type = igt_crtc_get_vbl_flag(crtc); > check.request.type |= DRM_VBLANK_RELATIVE; > do_or_die(drmWaitVBlank(drm_fd, &check)); > > @@ -649,7 +650,7 @@ retry: > } > > for (i = 0; i < crtc_count; i++) { > - get_crtc_config_str(&crtcs[i], str_buf[i], sizeof(str_buf[i])); > + get_crtc_config_str(&crtcs[i], str_buf[i], sizeof(str_buf[i]), tconf->display); > crtc_strs[i] = &str_buf[i][0]; > } > > @@ -661,12 +662,13 @@ retry: > > for (i = 0; i < crtc_count; i++) { > igt_plane_t *primary; > - igt_crtc_t *igt_crtc; > + igt_crtc_t *crtc_obj; > bool invalid_clone; > int j; > > crtc = &crtcs[i]; > - igt_crtc = &display.crtcs[crtc->crtc_idx]; > + crtc_obj = igt_crtc_for_crtc_index(tconf->display, crtc->crtc_idx); > + igt_assert(crtc_obj); > > /* Treat this as expected failure for invalid tests.*/ > invalid_clone = (tconf->flags & TEST_INVALID) && > @@ -686,11 +688,11 @@ retry: > for (j = 0; j < crtc->connector_count; j++) { > igt_output_t *output = crtc->cconfs[j].output; > > - igt_output_set_crtc(output, igt_crtc); > + igt_output_set_crtc(output, crtc_obj); > igt_output_override_mode(output, &crtc->mode); > } > > - primary = igt_crtc_get_plane_type(igt_crtc, DRM_PLANE_TYPE_PRIMARY); > + primary = igt_crtc_get_plane_type(crtc_obj, DRM_PLANE_TYPE_PRIMARY); > igt_plane_set_fb(primary, &crtc->fb_info); > } > > @@ -698,8 +700,13 @@ retry: > DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > > if (is_intel_device(drm_fd) && ret == 0) { > - for (i = 0; i < crtc_count; i++) > - intel_drrs_disable(&display.crtcs[crtcs[i].crtc_idx]); > + for (i = 0; i < crtc_count; i++) { > + igt_crtc_t *crtc_obj = igt_crtc_for_crtc_index(tconf->display, > + crtcs[i].crtc_idx); > + > + igt_assert(crtc_obj); > + intel_drrs_disable(crtc_obj); > + } > } > > if (ret < 0) { > @@ -721,9 +728,12 @@ retry: > > if (ret == 0 && tconf->flags & TEST_TIMINGS) { > bool status = false; > + igt_crtc_t *crtc_obj = igt_crtc_for_crtc_index(tconf->display, > + crtcs[0].crtc_idx); > + igt_assert(crtc_obj); > > for (int attempt = 1; attempt <= 2; attempt++) { > - status = check_timings(crtcs[0].crtc_idx, &crtcs[0].mode); > + status = check_timings(crtc_obj, &crtcs[0].mode); > if (status) > break; > igt_info("Timing check failed on attempt %d, retrying...\n", attempt); > @@ -736,13 +746,16 @@ retry: > } > > static int get_test_name_str(struct crtc_config *crtc, char *buf, > - size_t buf_size) > + size_t buf_size, igt_display_t *disp) Parameters should be ordered from the highest level context to the lowest level. igt_display_t *display should be first. > { > + igt_crtc_t *crtc_obj = igt_crtc_for_crtc_index(disp, crtc->crtc_idx); > int pos; > int i; > > + igt_assert(crtc_obj); > + > pos = snprintf(buf, buf_size, "pipe-%s-", > - kmstest_pipe_name(display.crtcs[crtc->crtc_idx].pipe)); > + kmstest_pipe_name(crtc_obj->pipe)); > > for (i = 0; i < crtc->connector_count; i++) { > drmModeConnector *connector = crtc->cconfs[i].output->config.connector; > @@ -774,7 +787,9 @@ static void test_one_combination(const struct test_config *tconf, > for (i = 0; i < crtc_count; i++) { > if (i > 0) > pos += snprintf(&test_name[pos], ARRAY_SIZE(test_name) - pos, "-"); > - pos += get_test_name_str(&crtcs[i], &test_name[pos], ARRAY_SIZE(test_name) - pos); > + pos += get_test_name_str(&crtcs[i], &test_name[pos], > + ARRAY_SIZE(test_name) - pos, > + tconf->display); > } > > if (!is_intel_device(drm_fd)) > @@ -783,7 +798,8 @@ static void test_one_combination(const struct test_config *tconf, > for (i = 0; i < crtc_count; i++) { > struct crtc_config *crtc = &crtcs[i]; > char conn_name[64], prev_conn_name[64]; > - int n_valid_crtcs = get_crtc_count(tconf->display->n_crtcs, extended); > + int n_valid_crtcs = get_crtc_count(igt_display_n_crtcs(tconf->display), > + extended); > > snprintf(conn_name, sizeof(conn_name), "%s", > igt_output_name(crtc->cconfs->output)); > @@ -933,7 +949,8 @@ static void test_combinations(const struct test_config *tconf, > struct combination_set crtc_combs; > struct connector_config *cconfs; > int i; > - int crtc_count = get_crtc_count(tconf->display->n_crtcs, extended); > + int crtc_count = get_crtc_count(igt_display_n_crtcs(tconf->display), > + extended); > > igt_assert(tconf->display); > > @@ -986,7 +1003,8 @@ free_cconfs: > static void run_test(const struct test_config *tconf) > { > int connector_num; > - int crtc_count = get_crtc_count(tconf->display->n_crtcs, extended); > + int crtc_count = get_crtc_count(igt_display_n_crtcs(tconf->display), > + extended); > > connector_num = tconf->flags & TEST_CLONE ? 2 : 1; > for (; connector_num <= crtc_count; connector_num++) -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_setmode: Convert to igt_display atomic API (rev2) 2026-06-23 8:09 [PATCH i-g-t v2 0/3] tests/kms_setmode: Convert to igt_display atomic API Jeevan B ` (2 preceding siblings ...) 2026-06-23 8:09 ` [PATCH i-g-t v2 3/3] tests/kms_setmode: Use public igt_display helper APIs Jeevan B @ 2026-06-23 13:26 ` Patchwork 2026-06-23 13:43 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-06-23 13:26 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1716 bytes --] == Series Details == Series: tests/kms_setmode: Convert to igt_display atomic API (rev2) URL : https://patchwork.freedesktop.org/series/164189/ State : success == Summary == CI Bug Log - changes from IGT_8980 -> IGTPW_15426 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/index.html Participating hosts (41 -> 39) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_15426 that come from known issues: ### IGT changes ### #### Warnings #### * igt@kms_setmode@basic-clone-single-crtc: - bat-atsm-1: [SKIP][1] ([i915#6094]) -> [SKIP][2] ([i915#6078]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#6094]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6094 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8980 -> IGTPW_15426 CI-20190529: 20190529 CI_DRM_18709: 60326b17f877e12846167bf8ef83680b9875218a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15426: ef5d931cbf7814b3dd2e606bd71d018cb372c7c4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8980: 65d820119e86b017bf801c8f2bb500e557b29d1c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/index.html [-- Attachment #2: Type: text/html, Size: 2300 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_setmode: Convert to igt_display atomic API (rev2) 2026-06-23 8:09 [PATCH i-g-t v2 0/3] tests/kms_setmode: Convert to igt_display atomic API Jeevan B ` (3 preceding siblings ...) 2026-06-23 13:26 ` ✓ i915.CI.BAT: success for tests/kms_setmode: Convert to igt_display atomic API (rev2) Patchwork @ 2026-06-23 13:43 ` Patchwork 2026-06-23 16:53 ` ✓ Xe.CI.FULL: " Patchwork 2026-06-23 21:33 ` ✗ i915.CI.Full: failure " Patchwork 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-06-23 13:43 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4119 bytes --] == Series Details == Series: tests/kms_setmode: Convert to igt_display atomic API (rev2) URL : https://patchwork.freedesktop.org/series/164189/ State : success == Summary == CI Bug Log - changes from XEIGT_8980_BAT -> XEIGTPW_15426_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between XEIGT_8980_BAT and XEIGTPW_15426_BAT: ### New IGT tests (20) ### * igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-edp-1: - Statuses : 4 pass(s) - Exec time: [2.24, 2.54] s * igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-edp-1: - Statuses : 4 pass(s) - Exec time: [2.81, 3.18] s * igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-edp-1: - Statuses : 4 pass(s) - Exec time: [2.79, 3.19] s * igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-edp-1: - Statuses : 2 pass(s) - Exec time: [2.75, 2.90] s * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-edp-1: - Statuses : 4 pass(s) - Exec time: [0.79, 1.05] s * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-edp-1: - Statuses : 4 pass(s) - Exec time: [1.46, 1.69] s * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-edp-1: - Statuses : 4 pass(s) - Exec time: [1.47, 1.67] s * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-edp-1: - Statuses : 2 pass(s) - Exec time: [1.41, 1.50] s * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-a-edp-1: - Statuses : 4 pass(s) - Exec time: [0.81, 1.09] s * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-b-edp-1: - Statuses : 4 pass(s) - Exec time: [1.44, 1.70] s * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-edp-1: - Statuses : 4 pass(s) - Exec time: [1.47, 1.67] s * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-edp-1: - Statuses : 2 pass(s) - Exec time: [1.40, 1.52] s * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1: - Statuses : 4 pass(s) - Exec time: [0.72, 0.99] s * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-edp-1: - Statuses : 4 pass(s) - Exec time: [1.43, 1.55] s * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-edp-1: - Statuses : 4 pass(s) - Exec time: [1.46, 1.62] s * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - Statuses : 2 pass(s) - Exec time: [1.39, 1.50] s * igt@kms_pipe_crc_basic@read-crc@pipe-a-edp-1: - Statuses : 4 pass(s) - Exec time: [0.72, 0.99] s * igt@kms_pipe_crc_basic@read-crc@pipe-b-edp-1: - Statuses : 4 pass(s) - Exec time: [1.36, 1.57] s * igt@kms_pipe_crc_basic@read-crc@pipe-c-edp-1: - Statuses : 4 pass(s) - Exec time: [1.40, 1.59] s * igt@kms_pipe_crc_basic@read-crc@pipe-d-edp-1: - Statuses : 2 pass(s) - Exec time: [1.40, 1.51] s Known issues ------------ Here are the changes found in XEIGTPW_15426_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_live_ktest@xe_dma_buf: - bat-bmg-vm: [PASS][1] -> [ABORT][2] ([Intel XE#8007] / [Intel XE#8023]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/bat-bmg-vm/igt@xe_live_ktest@xe_dma_buf.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/bat-bmg-vm/igt@xe_live_ktest@xe_dma_buf.html [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8023]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8023 Build changes ------------- * IGT: IGT_8980 -> IGTPW_15426 IGTPW_15426: ef5d931cbf7814b3dd2e606bd71d018cb372c7c4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8980: 65d820119e86b017bf801c8f2bb500e557b29d1c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5290-60326b17f877e12846167bf8ef83680b9875218a: 60326b17f877e12846167bf8ef83680b9875218a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/index.html [-- Attachment #2: Type: text/html, Size: 5283 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.FULL: success for tests/kms_setmode: Convert to igt_display atomic API (rev2) 2026-06-23 8:09 [PATCH i-g-t v2 0/3] tests/kms_setmode: Convert to igt_display atomic API Jeevan B ` (4 preceding siblings ...) 2026-06-23 13:43 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-06-23 16:53 ` Patchwork 2026-06-23 21:33 ` ✗ i915.CI.Full: failure " Patchwork 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-06-23 16:53 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 15632 bytes --] == Series Details == Series: tests/kms_setmode: Convert to igt_display atomic API (rev2) URL : https://patchwork.freedesktop.org/series/164189/ State : success == Summary == CI Bug Log - changes from XEIGT_8980_FULL -> XEIGTPW_15426_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_15426_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2887]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2320]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_flip@2x-wf_vblank-ts-check@cd-dp2-hdmi-a3: - shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#3149] / [Intel XE#6266]) +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/shard-bmg-2/igt@kms_flip@2x-wf_vblank-ts-check@cd-dp2-hdmi-a3.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-2/igt@kms_flip@2x-wf_vblank-ts-check@cd-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [PASS][5] -> [FAIL][6] ([Intel XE#301]) +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [PASS][7] -> [FAIL][8] ([Intel XE#301] / [Intel XE#3149]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: [PASS][9] -> [INCOMPLETE][10] ([Intel XE#2049] / [Intel XE#2597] / [Intel XE#8155]) +1 other test incomplete [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/shard-bmg-5/igt@kms_flip@flip-vs-suspend.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2311]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#7399]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#7061] / [Intel XE#7356]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2313]) +5 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [PASS][15] -> [SKIP][16] ([Intel XE#7308]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/shard-bmg-4/igt@kms_hdmi_inject@inject-audio.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-5/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#1503]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/shard-bmg-2/igt@kms_hdr@invalid-hdr.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-10/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#4090] / [Intel XE#7443]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#8303]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1489]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-1/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2330] / [Intel XE#5813]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7636]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-10/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-prefetch: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#8374]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-prefetch.html * igt@xe_exec_multi_queue@max-queues-basic: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#8364]) +4 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-4/igt@xe_exec_multi_queue@max-queues-basic.html * igt@xe_exec_threads@threads-multi-queue-mixed-rebind: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#8378]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-mixed-rebind.html * igt@xe_oa@oa-tlb-invalidate: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_pxp@pxp-stale-queue-post-suspend: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-3/igt@xe_pxp@pxp-stale-queue-post-suspend.html #### Possible fixes #### * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][30] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2: - shard-bmg: [FAIL][32] ([Intel XE#6078]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][34] ([Intel XE#3149] / [Intel XE#3321]) -> [PASS][35] +1 other test pass [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-bmg: [FAIL][36] ([Intel XE#3149] / [Intel XE#5408] / [Intel XE#6266]) -> [PASS][37] +1 other test pass [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/shard-bmg-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-lnl: [SKIP][38] ([Intel XE#8361]) -> [PASS][39] [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/shard-lnl-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-lnl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][40] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][41] +1 other test pass [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_wedged@wedged-mode-toggle: - shard-bmg: [ABORT][42] ([Intel XE#8007]) -> [PASS][43] [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/shard-bmg-6/igt@xe_wedged@wedged-mode-toggle.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-2/igt@xe_wedged@wedged-mode-toggle.html #### Warnings #### * igt@kms_flip@flip-vs-expired-vblank: - shard-lnl: [FAIL][44] ([Intel XE#301]) -> [FAIL][45] ([Intel XE#301] / [Intel XE#3149]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][46] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][47] ([Intel XE#1729] / [Intel XE#7424]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html * igt@xe_exec_multi_queue@two-queues-dyn-priority-smem: - shard-lnl: [SKIP][48] ([Intel XE#8364]) -> [ABORT][49] ([Intel XE#8007]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/shard-lnl-7/igt@xe_exec_multi_queue@two-queues-dyn-priority-smem.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-lnl-3/igt@xe_exec_multi_queue@two-queues-dyn-priority-smem.html - shard-bmg: [SKIP][50] ([Intel XE#8364]) -> [ABORT][51] ([Intel XE#8007]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8980/shard-bmg-7/igt@xe_exec_multi_queue@two-queues-dyn-priority-smem.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-dyn-priority-smem.html [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408 [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078 [Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8155]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8155 [Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303 [Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355 [Intel XE#8361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8361 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 Build changes ------------- * IGT: IGT_8980 -> IGTPW_15426 IGTPW_15426: ef5d931cbf7814b3dd2e606bd71d018cb372c7c4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8980: 65d820119e86b017bf801c8f2bb500e557b29d1c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5290-60326b17f877e12846167bf8ef83680b9875218a: 60326b17f877e12846167bf8ef83680b9875218a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15426/index.html [-- Attachment #2: Type: text/html, Size: 17740 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for tests/kms_setmode: Convert to igt_display atomic API (rev2) 2026-06-23 8:09 [PATCH i-g-t v2 0/3] tests/kms_setmode: Convert to igt_display atomic API Jeevan B ` (5 preceding siblings ...) 2026-06-23 16:53 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-06-23 21:33 ` Patchwork 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-06-23 21:33 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 153539 bytes --] == Series Details == Series: tests/kms_setmode: Convert to igt_display atomic API (rev2) URL : https://patchwork.freedesktop.org/series/164189/ State : failure == Summary == CI Bug Log - changes from IGT_8980_full -> IGTPW_15426_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15426_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15426_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15426_full: ### IGT changes ### #### Possible regressions #### * igt@asahi/asahi_get_time@get-time-flags-1: - shard-rkl: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@asahi/asahi_get_time@get-time-flags-1.html * igt@asahi/asahi_get_time@get-time-flags-2: - shard-dg2: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-6/igt@asahi/asahi_get_time@get-time-flags-2.html * igt@kms_setmode@basic-clone-single-crtc@pipe-a-vga-1-hdmi-a-1: - shard-snb: [PASS][3] -> [FAIL][4] +3 other tests fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-snb6/igt@kms_setmode@basic-clone-single-crtc@pipe-a-vga-1-hdmi-a-1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-snb6/igt@kms_setmode@basic-clone-single-crtc@pipe-a-vga-1-hdmi-a-1.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1: - shard-snb: [PASS][5] -> [DMESG-WARN][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-snb5/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-snb5/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html * igt@perf_pmu@gt-awake: - shard-dg1: [PASS][7] -> [FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg1-19/igt@perf_pmu@gt-awake.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-16/igt@perf_pmu@gt-awake.html Known issues ------------ Here are the changes found in IGTPW_15426_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-1/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#6230]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-7/igt@api_intel_bb@crc32.html * igt@asahi/asahi_get_time@get-time-flags-1: - shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#2575]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@asahi/asahi_get_time@get-time-flags-1.html * igt@asahi/asahi_get_time@get-time-flags-2: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#2575]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-8/igt@asahi/asahi_get_time@get-time-flags-2.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#11078]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-1/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][14] ([i915#11078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-12/igt@device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][15] ([i915#11078]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-8/igt@device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#11078]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-2/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][17] ([i915#11078]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-6/igt@device_reset@unbind-cold-reset-rebind.html * igt@fbdev@pan: - shard-snb: NOTRUN -> [FAIL][18] ([i915#15792]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-snb5/igt@fbdev@pan.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#3281]) +11 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@gem_bad_reloc@negative-reloc-lut.html - shard-dg1: NOTRUN -> [SKIP][20] ([i915#3281]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-16/igt@gem_bad_reloc@negative-reloc-lut.html - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#3281]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-2/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-3/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][23] ([i915#13356] / [i915#16466]) +1 other test incomplete [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk3/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_persistence@engines-hostile: - shard-snb: NOTRUN -> [SKIP][24] ([i915#1099]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-snb1/igt@gem_ctx_persistence@engines-hostile.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#5882]) +7 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-3/igt@gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-14/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-8/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#14544] / [i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-16/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4036]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-5/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-3/igt@gem_exec_balancer@parallel-balancer.html - shard-tglu-1: NOTRUN -> [SKIP][34] ([i915#4525]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-contexts: - shard-tglu: NOTRUN -> [SKIP][35] ([i915#4525]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-6/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_endless@dispatch@bcs0: - shard-rkl: NOTRUN -> [TIMEOUT][36] ([i915#3778]) +1 other test timeout [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-3/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-5/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#14544] / [i915#3281]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +10 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-5/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_suspend@basic-s3: - shard-glk: NOTRUN -> [INCOMPLETE][40] ([i915#13196] / [i915#13356]) +1 other test incomplete [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk6/igt@gem_exec_suspend@basic-s3.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-8/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4860]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-threaded-none.html - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#2190]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@gem_huc_copy@huc-copy.html - shard-tglu: NOTRUN -> [SKIP][45] ([i915#2190]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-8/igt@gem_huc_copy@huc-copy.html * igt@gem_linear_blits@interruptible: - shard-dg1: [PASS][46] -> [FAIL][47] ([i915#15391]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg1-12/igt@gem_linear_blits@interruptible.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-14/igt@gem_linear_blits@interruptible.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#14544] / [i915#4613]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu: NOTRUN -> [SKIP][49] ([i915#4613]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][50] ([i915#4613]) +8 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk3/igt@gem_lmem_swapping@verify-ccs.html - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-7/igt@gem_lmem_swapping@verify-ccs.html - shard-dg1: NOTRUN -> [SKIP][52] ([i915#12193]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-15/igt@gem_lmem_swapping@verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4613]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-4/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4565]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-15/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][55] ([i915#4613]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_mmap@short-mmap: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4083]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-17/igt@gem_mmap@short-mmap.html - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4083]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-3/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@basic-write-read: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4077]) +5 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-7/igt@gem_mmap_gtt@basic-write-read.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4077]) +12 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-7/igt@gem_mmap_gtt@zero-extend.html - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4077]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-19/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083]) +5 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-6/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#14544] / [i915#3282]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][63] ([i915#14702] / [i915#2658]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk9/igt@gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][64] ([i915#2658]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-10/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-6/igt@gem_pwrite@basic-random.html - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3282]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-14/igt@gem_pwrite@basic-random.html - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-2/igt@gem_pwrite@basic-random.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4270]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-6/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4270]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-12/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_render_copy@y-tiled: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#8428]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-2/igt@gem_render_copy@y-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#5190] / [i915#8428]) +5 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282]) +6 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-2/igt@gem_set_tiling_vs_pwrite.html - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4079]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-13/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@noreloc-s3: - shard-rkl: NOTRUN -> [INCOMPLETE][74] ([i915#13809] / [i915#16226]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@gem_softpin@noreloc-s3.html - shard-tglu: [PASS][75] -> [ABORT][76] ([i915#15840]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-tglu-9/igt@gem_softpin@noreloc-s3.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-3/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_pread_basic@basic: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#15656]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@gem_tiled_pread_basic@basic.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#14544] / [i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#4880]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3281] / [i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-1/igt@gem_userptr_blits@relocations.html - shard-rkl: NOTRUN -> [SKIP][81] ([i915#14544] / [i915#3281] / [i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@gem_userptr_blits@relocations.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3281] / [i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-18/igt@gem_userptr_blits@relocations.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3281] / [i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-5/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_workarounds@suspend-resume: - shard-glk11: NOTRUN -> [INCOMPLETE][85] ([i915#13356] / [i915#14586]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk11/igt@gem_workarounds@suspend-resume.html * igt@gem_workarounds@suspend-resume-context: - shard-glk: [PASS][86] -> [INCOMPLETE][87] ([i915#13356]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-glk3/igt@gem_workarounds@suspend-resume-context.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk2/igt@gem_workarounds@suspend-resume-context.html * igt@gem_workarounds@suspend-resume-fd: - shard-rkl: NOTRUN -> [ABORT][88] ([i915#15152]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-1/igt@gem_workarounds@suspend-resume-fd.html - shard-glk: NOTRUN -> [INCOMPLETE][89] ([i915#13356] / [i915#14586]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk1/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#2527]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html - shard-dg1: NOTRUN -> [SKIP][91] ([i915#2527]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-17/igt@gen9_exec_parse@batch-invalid-length.html - shard-tglu: NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-9/igt@gen9_exec_parse@batch-invalid-length.html - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#2856]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-2/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#2527] / [i915#2856]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#2856]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-4/igt@gen9_exec_parse@bb-start-param.html * igt@i915_drm_fdinfo@busy-idle-check-all@vcs0: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#11527]) +7 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-5/igt@i915_drm_fdinfo@busy-idle-check-all@vcs0.html * igt@i915_drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#14118]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-4/igt@i915_drm_fdinfo@virtual-busy-idle-all.html - shard-dg1: NOTRUN -> [SKIP][98] ([i915#14118]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-15/igt@i915_drm_fdinfo@virtual-busy-idle-all.html - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#14118]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-7/igt@i915_drm_fdinfo@virtual-busy-idle-all.html * igt@i915_fb_tiling@basic-x-tiling: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#13786]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-13/igt@i915_fb_tiling@basic-x-tiling.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#6590]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-dg1: NOTRUN -> [SKIP][102] ([i915#6590]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][103] ([i915#13356] / [i915#15172]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk8/igt@i915_pm_rpm@system-suspend-execbuf.html - shard-rkl: [PASS][104] -> [INCOMPLETE][105] ([i915#13356]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-8/igt@i915_pm_rpm@system-suspend-execbuf.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#11681] / [i915#6621]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-8/igt@i915_pm_rps@min-max-config-loaded.html - shard-dg1: NOTRUN -> [SKIP][107] ([i915#11681] / [i915#6621]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-13/igt@i915_pm_rps@min-max-config-loaded.html - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#11681] / [i915#6621]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-8/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#11681]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-3/igt@i915_pm_rps@thresholds-idle.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#7984]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@i915_power@sanity.html * igt@i915_query@query-topology-known-pci-ids: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#16109]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-9/igt@i915_query@query-topology-known-pci-ids.html - shard-rkl: NOTRUN -> [SKIP][112] ([i915#16109]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_suspend@forcewake: - shard-glk11: NOTRUN -> [INCOMPLETE][113] ([i915#16182] / [i915#4817]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk11/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#12454] / [i915#12712]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-tglu: NOTRUN -> [SKIP][115] ([i915#12454] / [i915#12712]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#12454] / [i915#12712]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#9531]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][118] ([i915#1769]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][119] ([i915#1769] / [i915#3555]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][120] ([i915#1769] / [i915#3555]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][121] ([i915#1769] / [i915#3555]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-snb: NOTRUN -> [SKIP][122] ([i915#1769]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][123] ([i915#1769] / [i915#3555]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][124] ([i915#5956]) +1 other test fail [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#5286]) +4 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][126] +10 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#5286]) +5 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][128] +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#14544] / [i915#5286]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#5286]) +4 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-6/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5286]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3638]) +6 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-2/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#3828]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#4538] / [i915#5190]) +6 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#5190]) +5 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#6187]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-glk11: NOTRUN -> [SKIP][137] +46 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk11/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#14544] / [i915#6095]) +11 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#6095]) +170 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6095]) +4 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][141] +638 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#14098] / [i915#14544] / [i915#6095]) +8 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#12805]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#6095]) +14 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][145] ([i915#15582]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: NOTRUN -> [INCOMPLETE][146] ([i915#15582]) +1 other test incomplete [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-glk10: NOTRUN -> [INCOMPLETE][147] ([i915#15582]) +1 other test incomplete [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk10/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#12313]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][149] ([i915#12313]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-16/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][150] ([i915#12313]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#12313]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-dg2: NOTRUN -> [SKIP][152] ([i915#12313]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#10307] / [i915#6095]) +83 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#6095]) +34 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#6095]) +74 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-2/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#6095]) +75 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-8/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#14098] / [i915#6095]) +52 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#10307] / [i915#10434] / [i915#6095]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#13783]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +8 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-5/igt@kms_chamelium_audio@dp-audio.html - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-7/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-14/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#16471]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#14544] / [i915#16471]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#16471]) +2 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-4/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#16471]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-15/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html - shard-tglu: NOTRUN -> [SKIP][167] ([i915#16471]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-5/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#16464] / [i915#16471]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-7/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +5 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-7/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#14544] / [i915#7828]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +6 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +11 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#12655] / [i915#3555]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#15865]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-1/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#15865]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-17/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#15330] / [i915#3116] / [i915#3299]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#15330] / [i915#3299]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-1/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#15330] / [i915#3116]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1.html - shard-dg1: NOTRUN -> [SKIP][179] ([i915#15330] / [i915#3299]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-13/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#15865]) +3 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_content_protection@srm.html * igt@kms_content_protection@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#15865]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-3/igt@kms_content_protection@suspend-resume.html * igt@kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#15865]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#13049]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#13049]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-tglu: [PASS][185] -> [FAIL][186] ([i915#13566]) +1 other test fail [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8814]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#8814]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#3555]) +6 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555]) +6 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-rkl: NOTRUN -> [SKIP][191] ([i915#3555]) +5 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#3555]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#13049]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: NOTRUN -> [FAIL][194] ([i915#13566]) +2 other tests fail [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#3555]) +4 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][196] ([i915#12358] / [i915#14152] / [i915#7882]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk5/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][197] ([i915#12358] / [i915#14152]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#13046] / [i915#5354]) +4 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#4103]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#4103]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg1: NOTRUN -> [SKIP][201] ([i915#4103]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-tglu: NOTRUN -> [SKIP][202] ([i915#4103]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#16119] / [i915#4213]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#9067]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#13691]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-8/igt@kms_display_modes@extended-mode-basic.html - shard-tglu: NOTRUN -> [SKIP][206] ([i915#13691]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#3804]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev@basic: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#1257]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-7/igt@kms_dp_aux_dev@basic.html - shard-rkl: NOTRUN -> [SKIP][209] ([i915#1257]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-2/igt@kms_dp_aux_dev@basic.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#1257]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-13/igt@kms_dp_aux_dev@basic.html - shard-tglu: NOTRUN -> [SKIP][211] ([i915#1257]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-9/igt@kms_dp_aux_dev@basic.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#13749]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-5/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-mst: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#13748]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-5/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#13707]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-basic: - shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#16361]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#16361]) +3 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html - shard-rkl: NOTRUN -> [SKIP][217] ([i915#14544] / [i915#16361]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][218] ([i915#16361]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-12/igt@kms_dsc@dsc-with-output-formats.html - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#16361]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#16361]) +4 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#16361]) +4 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-5/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][222] ([i915#9878]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk1/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#3955]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#3469]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-16/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#16084]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-3/igt@kms_feature_discovery@chamelium.html - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#2065]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_feature_discovery@chamelium.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#3637] / [i915#9934]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#9934]) +10 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-1/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#9934]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-8/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#9934]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#8381]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#9934]) +5 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-7/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#9934]) +2 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-16/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-tglu: NOTRUN -> [SKIP][234] ([i915#3637] / [i915#9934]) +5 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#3637] / [i915#9934]) +2 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][236] ([i915#12314] / [i915#12745] / [i915#4839]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk8/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk10: NOTRUN -> [INCOMPLETE][237] ([i915#12745] / [i915#4839]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk10/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk10: NOTRUN -> [INCOMPLETE][238] ([i915#12745]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk10/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][239] ([i915#12314] / [i915#12745]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk8/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#15643]) +6 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][241] ([i915#15643]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#15643]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#15643] / [i915#5190]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#15643]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#15643]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#15643]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#15104] / [i915#15990]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][249] ([i915#15104] / [i915#15990]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#15104] / [i915#15990]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#15990] / [i915#8708]) +12 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][252] +75 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#15991] / [i915#1825]) +5 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [PASS][254] -> [INCOMPLETE][255] ([i915#10056]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-suspend.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#5439]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [PASS][257] -> [SKIP][258] ([i915#15989]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-blt.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#15989]) +3 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-14/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-fullscreen: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#15989]) +8 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbchdr-1p-shrfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#15990]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbchdr-1p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt: - shard-tglu: NOTRUN -> [SKIP][262] +91 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-10/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#15991]) +11 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][264] +22 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-18/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#1825]) +6 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][266] ([i915#15990] / [i915#8708]) +3 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#15990] / [i915#8708]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#14544] / [i915#15102] / [i915#3023]) +5 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#15102]) +10 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt: - shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#15102]) +29 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#15989]) +28 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#15989]) +10 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-7/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#15989]) +19 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-7/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#15990]) +28 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][275] ([i915#15990]) +8 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-12/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-glk: [PASS][276] -> [SKIP][277] +7 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk3/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-indfb-scaledprimary: - shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#15989]) +15 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc: - shard-rkl: [PASS][279] -> [SKIP][280] ([i915#15989]) +6 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-8/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#15102] / [i915#3023]) +17 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#15102]) +33 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#15991] / [i915#5354]) +20 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html - shard-rkl: NOTRUN -> [SKIP][284] ([i915#14544]) +26 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#15102]) +45 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#15102]) +35 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][287] +106 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-1/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#15991]) +26 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-1/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#14544] / [i915#15102]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@bpc-switch: - shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8228]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8228]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-5/igt@kms_hdr@bpc-switch-suspend.html - shard-dg2: NOTRUN -> [SKIP][292] ([i915#3555] / [i915#8228]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-5/igt@kms_hdr@bpc-switch-suspend.html - shard-rkl: NOTRUN -> [SKIP][293] ([i915#3555] / [i915#8228]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-8/igt@kms_hdr@bpc-switch-suspend.html - shard-dg1: NOTRUN -> [SKIP][294] ([i915#3555] / [i915#8228]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-14/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#12713]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-5/igt@kms_hdr@brightness-with-hdr.html - shard-dg2: NOTRUN -> [SKIP][296] ([i915#12713]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-1/igt@kms_hdr@brightness-with-hdr.html - shard-dg1: NOTRUN -> [SKIP][297] ([i915#12713]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-18/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][298] ([i915#12713]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-7/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#15460]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#15459]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-8/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#13688]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-2/igt@kms_joiner@basic-max-non-joiner.html - shard-dg2: NOTRUN -> [SKIP][302] ([i915#13688]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-8/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#15458]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][304] ([i915#15460]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-19/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#14544] / [i915#15459]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#15458]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][307] ([i915#15458]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#15458]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][309] ([i915#15458]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-14/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#14544] / [i915#15638] / [i915#15722]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][311] ([i915#15638] / [i915#15722]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#6301]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-6/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#15709]) +4 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-7/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#14544] / [i915#15709]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#15709]) +3 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7: - shard-tglu: NOTRUN -> [SKIP][316] ([i915#16386]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-8/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-2: - shard-snb: NOTRUN -> [SKIP][317] +93 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-snb1/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-2.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][318] ([i915#16386]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html - shard-mtlp: NOTRUN -> [SKIP][319] ([i915#16386]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#16386]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-15/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#15709]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#15709]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane_multiple@2x-tiling-4: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#13958]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-x: - shard-dg1: NOTRUN -> [SKIP][324] ([i915#13958]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-13/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@2x-tiling-y: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#13958]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu: NOTRUN -> [SKIP][326] ([i915#13958]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-5/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#6953] / [i915#9423]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#15329]) +7 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][329] ([i915#15329] / [i915#3555] / [i915#6953]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#15329]) +3 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu: NOTRUN -> [SKIP][331] ([i915#12343] / [i915#9812]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-10/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#12343] / [i915#5354]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-pageflip-negative: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#9685]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-1/igt@kms_pm_dc@dc5-pageflip-negative.html - shard-rkl: NOTRUN -> [SKIP][334] ([i915#9685]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_pm_dc@dc5-pageflip-negative.html - shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#9685]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_pm_dc@dc5-pageflip-negative.html - shard-dg1: NOTRUN -> [SKIP][336] ([i915#9685]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-16/igt@kms_pm_dc@dc5-pageflip-negative.html * igt@kms_pm_lpsp@kms-lpsp: - shard-glk10: NOTRUN -> [SKIP][337] +87 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk10/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg2: [PASS][338] -> [SKIP][339] ([i915#9340]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-7/igt@kms_pm_lpsp@kms-lpsp.html - shard-tglu: NOTRUN -> [SKIP][340] ([i915#3828]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-3/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#8430]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@kms_pm_lpsp@screens-disabled.html - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#8430]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#14544] / [i915#15073]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][344] ([i915#15073]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg1: [PASS][345] -> [DMESG-WARN][346] ([i915#4423]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg1-16/igt@kms_pm_rpm@i2c.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-13/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][347] -> [SKIP][348] ([i915#15073]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#15073]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg1: [PASS][350] -> [SKIP][351] ([i915#15073]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#6524] / [i915#6805]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-7/igt@kms_prime@basic-crc-vgem.html - shard-dg1: NOTRUN -> [SKIP][353] ([i915#6524]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-16/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][354] ([i915#11520] / [i915#14544]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][355] ([i915#11520]) +10 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk5/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][356] ([i915#11520]) +2 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-12/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][357] ([i915#11520]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-snb5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][358] ([i915#12316]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#9808]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-glk10: NOTRUN -> [SKIP][360] ([i915#11520]) +3 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#11520]) +5 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#11520]) +7 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-4/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-glk11: NOTRUN -> [SKIP][363] ([i915#11520]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk11/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#11520]) +7 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-3/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][365] ([i915#11520]) +4 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][366] ([i915#9683]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][367] ([i915#9683]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-15/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][368] ([i915#9683]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-mtlp: NOTRUN -> [SKIP][369] ([i915#4348]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#9683]) +2 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][371] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-plane-onoff.html - shard-dg1: NOTRUN -> [SKIP][372] ([i915#1072] / [i915#9732]) +6 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-18/igt@kms_psr@fbc-pr-sprite-plane-onoff.html - shard-mtlp: NOTRUN -> [SKIP][373] ([i915#9688]) +2 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-5/igt@kms_psr@fbc-pr-sprite-plane-onoff.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#1072] / [i915#9732]) +18 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-6/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr-sprite-plane-move: - shard-tglu-1: NOTRUN -> [SKIP][375] ([i915#9732]) +14 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][376] ([i915#1072] / [i915#9732]) +23 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-1/igt@kms_psr@psr2-cursor-mmap-gtt.html - shard-tglu: NOTRUN -> [SKIP][377] ([i915#9732]) +17 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-8/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][378] ([i915#12755] / [i915#15867]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-6/igt@kms_rotation_crc@bad-tiling.html - shard-mtlp: NOTRUN -> [SKIP][379] ([i915#12755] / [i915#15867]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-2/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#4235]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-4/igt@kms_rotation_crc@exhaust-fences.html - shard-dg1: NOTRUN -> [SKIP][381] ([i915#4884]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-15/igt@kms_rotation_crc@exhaust-fences.html - shard-mtlp: NOTRUN -> [SKIP][382] ([i915#4235]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-7/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk: NOTRUN -> [INCOMPLETE][383] ([i915#15500] / [i915#16184]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][384] ([i915#5289]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][385] ([i915#5289]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_selftest@drm_framebuffer: - shard-tglu: NOTRUN -> [ABORT][386] ([i915#13179]) +1 other test abort [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-3/igt@kms_selftest@drm_framebuffer.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][387] ([i915#8623]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu-1: NOTRUN -> [SKIP][388] ([i915#8623]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-suspend: - shard-snb: [PASS][389] -> [ABORT][390] ([i915#15840]) +2 other tests abort [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-snb5/igt@kms_vblank@ts-continuation-suspend.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-snb5/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][391] ([i915#9906]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - shard-dg2: NOTRUN -> [SKIP][392] ([i915#15243] / [i915#3555]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-5/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - shard-rkl: NOTRUN -> [SKIP][393] ([i915#15243] / [i915#3555]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-3/igt@kms_vrr@flipline.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][394] ([i915#2434]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][395] ([i915#2435]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html - shard-dg1: NOTRUN -> [SKIP][396] ([i915#2433]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-17/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][397] -> [FAIL][398] ([i915#4349]) +4 other tests fail [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@busy-idle@bcs0: - shard-mtlp: [PASS][399] -> [FAIL][400] ([i915#4349]) +5 other tests fail [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-mtlp-4/igt@perf_pmu@busy-idle@bcs0.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-7/igt@perf_pmu@busy-idle@bcs0.html * igt@perf_pmu@module-unload: - shard-glk11: NOTRUN -> [ABORT][401] ([i915#15778]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk11/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][402] ([i915#8516]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-7/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_udl@share-import: - shard-tglu: NOTRUN -> [SKIP][403] ([i915#16420]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-10/igt@prime_udl@share-import.html * igt@prime_udl@share-import-addfb: - shard-rkl: NOTRUN -> [SKIP][404] ([i915#16420]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-1/igt@prime_udl@share-import-addfb.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][405] ([i915#3291] / [i915#3708]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][406] ([i915#3291] / [i915#3708]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-6/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][407] ([i915#3708]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-3/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][408] ([i915#9917]) +2 other tests skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@bind-unbind-vf@vf-1: - shard-tglu-1: NOTRUN -> [SKIP][409] ([i915#16066]) +9 other tests skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-1/igt@sriov_basic@bind-unbind-vf@vf-1.html #### Possible fixes #### * igt@gem_exec_big@single: - shard-mtlp: [FAIL][410] ([i915#15871]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-mtlp-6/igt@gem_exec_big@single.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-1/igt@gem_exec_big@single.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [INCOMPLETE][412] ([i915#13356]) -> [PASS][413] +1 other test pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html * igt@gem_exec_suspend@basic-s3: - shard-rkl: [INCOMPLETE][414] ([i915#13356]) -> [PASS][415] +1 other test pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-7/igt@gem_exec_suspend@basic-s3.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-3/igt@gem_exec_suspend@basic-s3.html * igt@i915_selftest@live@execlists: - shard-tglu: [INCOMPLETE][416] -> [PASS][417] +1 other test pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-tglu-9/igt@i915_selftest@live@execlists.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-5/igt@i915_selftest@live@execlists.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg2: [DMESG-WARN][418] ([i915#14545]) -> [PASS][419] +1 other test pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg2-8/igt@i915_suspend@basic-s3-without-i915.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-5/igt@i915_suspend@basic-s3-without-i915.html - shard-dg1: [DMESG-WARN][420] ([i915#14545]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg1-16/igt@i915_suspend@basic-s3-without-i915.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-14/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: [INCOMPLETE][422] ([i915#4817]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-7/igt@i915_suspend@fence-restore-untiled.html - shard-glk: [INCOMPLETE][424] ([i915#16182] / [i915#4817]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-glk8/igt@i915_suspend@fence-restore-untiled.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk3/igt@i915_suspend@fence-restore-untiled.html * igt@kms_3d@basic: - shard-mtlp: [SKIP][426] ([i915#15726]) -> [PASS][427] [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-mtlp-1/igt@kms_3d@basic.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-3/igt@kms_3d@basic.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][428] ([i915#15582]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-glk4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [INCOMPLETE][430] ([i915#14694] / [i915#15582]) -> [PASS][431] +1 other test pass [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-2.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][432] ([i915#13566]) -> [PASS][433] +3 other tests pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-vga1-hdmi-a1: - shard-snb: [FAIL][434] ([i915#13027]) -> [PASS][435] +1 other test pass [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-snb6/igt@kms_flip@2x-flip-vs-expired-vblank@ab-vga1-hdmi-a1.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-snb6/igt@kms_flip@2x-flip-vs-expired-vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@bo-too-big-interruptible: - shard-dg1: [DMESG-WARN][436] ([i915#4423]) -> [PASS][437] +3 other tests pass [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg1-13/igt@kms_flip@bo-too-big-interruptible.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-14/igt@kms_flip@bo-too-big-interruptible.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite: - shard-rkl: [SKIP][438] ([i915#15989]) -> [PASS][439] +10 other tests pass [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@hdr-rgb565-draw-pwrite: - shard-glk: [SKIP][440] -> [PASS][441] +2 other tests pass [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-glk6/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-pwrite.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk8/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-pwrite.html * igt@kms_hdmi_inject@inject-audio: - shard-mtlp: [SKIP][442] ([i915#15725]) -> [PASS][443] [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-8/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [SKIP][444] ([i915#6953]) -> [PASS][445] [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [SKIP][446] ([i915#15073]) -> [PASS][447] [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][448] ([i915#15073]) -> [PASS][449] [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg1: [SKIP][450] ([i915#15073]) -> [PASS][451] +1 other test pass [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: [INCOMPLETE][452] ([i915#12276]) -> [PASS][453] +1 other test pass [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-suspend.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-7/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@perf_pmu@rc6-suspend: - shard-glk: [INCOMPLETE][454] ([i915#13356] / [i915#14242] / [i915#16236]) -> [PASS][455] [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-glk9/igt@perf_pmu@rc6-suspend.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk4/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@render-node-busy-idle: - shard-mtlp: [FAIL][456] ([i915#4349]) -> [PASS][457] +6 other tests pass [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-mtlp-2/igt@perf_pmu@render-node-busy-idle.html #### Warnings #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: [SKIP][458] ([i915#14544] / [i915#8411]) -> [SKIP][459] ([i915#8411]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@api_intel_bb@object-reloc-purge-cache.html * igt@gem_basic@multigpu-create-close: - shard-rkl: [SKIP][460] ([i915#7697]) -> [SKIP][461] ([i915#14544] / [i915#7697]) +1 other test skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-5/igt@gem_basic@multigpu-create-close.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@gem_basic@multigpu-create-close.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: [SKIP][462] ([i915#4525]) -> [SKIP][463] ([i915#14544] / [i915#4525]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-2/igt@gem_exec_balancer@parallel-contexts.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: [SKIP][464] ([i915#14544] / [i915#6344]) -> [SKIP][465] ([i915#6344]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_reloc@basic-wc: - shard-rkl: [SKIP][466] ([i915#14544] / [i915#3281]) -> [SKIP][467] ([i915#3281]) +3 other tests skip [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@gem_exec_reloc@basic-wc.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: [SKIP][468] ([i915#3281]) -> [SKIP][469] ([i915#14544] / [i915#3281]) +3 other tests skip [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-8/igt@gem_exec_reloc@basic-write-read-noreloc.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: [SKIP][470] ([i915#13717]) -> [SKIP][471] ([i915#13717] / [i915#14544]) [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-context.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: [SKIP][472] ([i915#3297]) -> [SKIP][473] ([i915#14544] / [i915#3297]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-2/igt@gem_userptr_blits@create-destroy-unsync.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gen9_exec_parse@basic-rejected: - shard-rkl: [SKIP][474] ([i915#14544] / [i915#2527]) -> [SKIP][475] ([i915#2527]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@gen9_exec_parse@basic-rejected.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: [SKIP][476] ([i915#2527]) -> [SKIP][477] ([i915#14544] / [i915#2527]) +1 other test skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-8/igt@gen9_exec_parse@bb-start-out.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: [SKIP][478] ([i915#14498] / [i915#14544]) -> [SKIP][479] ([i915#14498]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_query@hwconfig_table: - shard-rkl: [SKIP][480] ([i915#14544] / [i915#6245]) -> [SKIP][481] ([i915#6245]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@i915_query@hwconfig_table.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-8/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: [SKIP][482] ([i915#5723]) -> [SKIP][483] ([i915#14544] / [i915#5723]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: [SKIP][484] ([i915#14544] / [i915#9531]) -> [SKIP][485] ([i915#9531]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: [SKIP][486] ([i915#14544] / [i915#1769] / [i915#3555]) -> [SKIP][487] ([i915#1769] / [i915#3555]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: [SKIP][488] ([i915#14544] / [i915#5286]) -> [SKIP][489] ([i915#5286]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: [SKIP][490] ([i915#5286]) -> [SKIP][491] ([i915#14544] / [i915#5286]) +2 other tests skip [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: [SKIP][492] ([i915#3828]) -> [SKIP][493] ([i915#14544] / [i915#3828]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][494] ([i915#3638]) -> [SKIP][495] ([i915#14544] / [i915#3638]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][496] ([i915#14544] / [i915#3638]) -> [SKIP][497] ([i915#3638]) +1 other test skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-2/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][498] ([i915#14544]) -> [SKIP][499] +29 other tests skip [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][500] ([i915#14098] / [i915#6095]) -> [SKIP][501] ([i915#14098] / [i915#14544] / [i915#6095]) +10 other tests skip [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: [SKIP][502] ([i915#12313] / [i915#14544]) -> [SKIP][503] ([i915#12313]) +1 other test skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][504] ([i915#14544] / [i915#6095]) -> [SKIP][505] ([i915#6095]) +5 other tests skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][506] ([i915#6095]) -> [SKIP][507] ([i915#14544] / [i915#6095]) +4 other tests skip [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][508] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][509] ([i915#14098] / [i915#6095]) +5 other tests skip [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_cdclk@plane-scaling: - shard-rkl: [SKIP][510] ([i915#3742]) -> [SKIP][511] ([i915#14544] / [i915#3742]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-4/igt@kms_cdclk@plane-scaling.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d: - shard-rkl: [SKIP][512] ([i915#16471]) -> [SKIP][513] ([i915#14544] / [i915#16471]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-4/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: [SKIP][514] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][515] ([i915#11151] / [i915#7828]) +1 other test skip [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-rkl: [SKIP][516] ([i915#11151] / [i915#7828]) -> [SKIP][517] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-storm.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-rkl: [SKIP][518] ([i915#15330]) -> [SKIP][519] ([i915#14544] / [i915#15330]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@lic-type-0: - shard-rkl: [SKIP][520] ([i915#15865]) -> [SKIP][521] ([i915#14544] / [i915#15865]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-3/igt@kms_content_protection@lic-type-0.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][522] ([i915#9433]) -> [SKIP][523] ([i915#15865]) [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg1-12/igt@kms_content_protection@mei-interface.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-14/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent-hdcp14: - shard-rkl: [SKIP][524] ([i915#14544] / [i915#15865]) -> [SKIP][525] ([i915#15865]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_content_protection@uevent-hdcp14.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-8/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: [SKIP][526] ([i915#13049] / [i915#14544]) -> [SKIP][527] ([i915#13049]) +1 other test skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: [SKIP][528] ([i915#13049] / [i915#3359]) -> [SKIP][529] ([i915#13049]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: [SKIP][530] ([i915#4103]) -> [SKIP][531] ([i915#14544] / [i915#4103]) [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-rkl: [SKIP][532] ([i915#13749] / [i915#14544]) -> [SKIP][533] ([i915#13749]) [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-2/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dsc@dsc-with-bpc-ultrajoiner: - shard-rkl: [SKIP][534] ([i915#14544] / [i915#16361]) -> [SKIP][535] ([i915#16361]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-8/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html * igt@kms_feature_discovery@display-3x: - shard-rkl: [SKIP][536] ([i915#14544] / [i915#16081]) -> [SKIP][537] ([i915#16081]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_feature_discovery@display-3x.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-5/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-panning: - shard-rkl: [SKIP][538] ([i915#9934]) -> [SKIP][539] ([i915#14544] / [i915#9934]) +2 other tests skip [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-5/igt@kms_flip@2x-flip-vs-panning.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][540] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][541] ([i915#12314] / [i915#12745] / [i915#4839]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [INCOMPLETE][542] ([i915#12745]) -> [INCOMPLETE][543] ([i915#12314] / [i915#12745]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-rkl: [SKIP][544] ([i915#14544] / [i915#15643]) -> [SKIP][545] ([i915#15643]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: [SKIP][546] ([i915#15643]) -> [SKIP][547] ([i915#14544] / [i915#15643]) +1 other test skip [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-dg2: [SKIP][548] ([i915#15102]) -> [SKIP][549] ([i915#10433] / [i915#15102]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][550] ([i915#15102] / [i915#3023]) -> [SKIP][551] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: [SKIP][552] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][553] ([i915#15102] / [i915#3023]) +3 other tests skip [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][554] -> [SKIP][555] ([i915#14544]) +37 other tests skip [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt: - shard-rkl: [SKIP][556] ([i915#14544] / [i915#15102]) -> [SKIP][557] ([i915#15102]) +9 other tests skip [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: [SKIP][558] ([i915#14544] / [i915#1825]) -> [SKIP][559] ([i915#1825]) +4 other tests skip [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-rkl: [SKIP][560] ([i915#1825]) -> [SKIP][561] ([i915#14544] / [i915#1825]) [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt: - shard-dg1: [SKIP][562] ([i915#4423]) -> [SKIP][563] [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: [SKIP][564] ([i915#15102]) -> [SKIP][565] ([i915#14544] / [i915#15102]) +14 other tests skip [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-msflip-blt.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: [SKIP][566] ([i915#6301]) -> [SKIP][567] ([i915#14544] / [i915#6301]) [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier: - shard-rkl: [SKIP][568] ([i915#15709]) -> [SKIP][569] ([i915#14544] / [i915#15709]) [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping: - shard-rkl: [SKIP][570] ([i915#14544] / [i915#15709]) -> [SKIP][571] ([i915#15709]) [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][572] ([i915#16479]) -> [SKIP][573] ([i915#15128]) [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@package-g7: - shard-rkl: [SKIP][574] ([i915#15403]) -> [SKIP][575] ([i915#14544] / [i915#15403]) [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-2/igt@kms_pm_rpm@package-g7.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_pm_rpm@package-g7.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-rkl: [INCOMPLETE][576] ([i915#14419]) -> [ABORT][577] ([i915#15132]) [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-1/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@d3hot: - shard-rkl: [SKIP][578] ([i915#14544] / [i915#6524]) -> [SKIP][579] ([i915#6524]) [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_prime@d3hot.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-rkl: [SKIP][580] ([i915#11520] / [i915#14544]) -> [SKIP][581] ([i915#11520]) +1 other test skip [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][582] ([i915#11520]) -> [SKIP][583] ([i915#11520] / [i915#14544]) +3 other tests skip [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: [SKIP][584] ([i915#9683]) -> [SKIP][585] ([i915#14544] / [i915#9683]) [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-5/igt@kms_psr2_su@page_flip-nv12.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@pr-cursor-mmap-gtt: - shard-dg1: [SKIP][586] ([i915#1072] / [i915#9732]) -> [SKIP][587] ([i915#1072] / [i915#4423] / [i915#9732]) [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg1-14/igt@kms_psr@pr-cursor-mmap-gtt.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-13/igt@kms_psr@pr-cursor-mmap-gtt.html * igt@kms_psr@pr-primary-render: - shard-rkl: [SKIP][588] ([i915#1072] / [i915#9732]) -> [SKIP][589] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-2/igt@kms_psr@pr-primary-render.html [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_psr@pr-primary-render.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: [SKIP][590] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][591] ([i915#1072] / [i915#9732]) +8 other tests skip [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: [SKIP][592] ([i915#15949]) -> [SKIP][593] ([i915#14544] / [i915#15949]) [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: [SKIP][594] ([i915#5289]) -> [SKIP][595] ([i915#14544] / [i915#5289]) [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: [SKIP][596] ([i915#14544] / [i915#5289]) -> [SKIP][597] ([i915#5289]) [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: [SKIP][598] ([i915#4423] / [i915#5289]) -> [SKIP][599] ([i915#5289]) [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-rkl: [SKIP][600] ([i915#3555]) -> [SKIP][601] ([i915#14544] / [i915#3555]) +1 other test skip [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_vrr@lobf: - shard-rkl: [SKIP][602] ([i915#11920] / [i915#14544]) -> [SKIP][603] ([i915#11920]) [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@kms_vrr@lobf.html [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-8/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: [SKIP][604] ([i915#9906]) -> [SKIP][605] ([i915#14544] / [i915#9906]) [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-drrs.html [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: [SKIP][606] ([i915#14544] / [i915#2436]) -> [SKIP][607] ([i915#2436]) [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-8/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: [SKIP][608] ([i915#14544] / [i915#8516]) -> [SKIP][609] ([i915#8516]) [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-4/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-read: - shard-rkl: [SKIP][610] ([i915#3291] / [i915#3708]) -> [SKIP][611] ([i915#14544] / [i915#3291] / [i915#3708]) [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-8/igt@prime_vgem@basic-fence-read.html [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-read-hang: - shard-rkl: [SKIP][612] ([i915#14544] / [i915#3708]) -> [SKIP][613] ([i915#3708]) [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8980/shard-rkl-6/igt@prime_vgem@fence-read-hang.html [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/shard-rkl-2/igt@prime_vgem@fence-read-hang.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152 [i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15391 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725 [i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15792 [i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871 [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084 [i915#16109]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109 [i915#16119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16119 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184 [i915#16226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16226 [i915#16236]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16236 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386 [i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420 [i915#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464 [i915#16466]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16466 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#16479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16479 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8980 -> IGTPW_15426 CI-20190529: 20190529 CI_DRM_18709: 60326b17f877e12846167bf8ef83680b9875218a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15426: ef5d931cbf7814b3dd2e606bd71d018cb372c7c4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8980: 65d820119e86b017bf801c8f2bb500e557b29d1c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15426/index.html [-- Attachment #2: Type: text/html, Size: 205035 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-06-23 21:33 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-06-23 8:09 [PATCH i-g-t v2 0/3] tests/kms_setmode: Convert to igt_display atomic API Jeevan B 2026-06-23 8:09 ` [PATCH i-g-t v2 1/3] tests/kms_setmode: Drop invalid-clone-single-crtc-stealing subtest Jeevan B 2026-06-23 8:09 ` [PATCH i-g-t v2 2/3] tests/kms_setmode: Convert modeset path to atomic API Jeevan B 2026-06-23 8:26 ` Jani Nikula 2026-06-23 8:09 ` [PATCH i-g-t v2 3/3] tests/kms_setmode: Use public igt_display helper APIs Jeevan B 2026-06-23 8:31 ` Jani Nikula 2026-06-23 13:26 ` ✓ i915.CI.BAT: success for tests/kms_setmode: Convert to igt_display atomic API (rev2) Patchwork 2026-06-23 13:43 ` ✓ Xe.CI.BAT: " Patchwork 2026-06-23 16:53 ` ✓ Xe.CI.FULL: " Patchwork 2026-06-23 21:33 ` ✗ i915.CI.Full: failure " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.