* [PATCH i-g-t] tests/kms_setmode: Convert to igt_display atomic API
@ 2026-03-31 17:45 Jeevan B
2026-03-31 21:49 ` ✓ Xe.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Jeevan B @ 2026-03-31 17:45 UTC (permalink / raw)
To: igt-dev; +Cc: ville.syrjala, ankit.k.nautiyal, jani.nikula, Jeevan B
Replace legacy drmModeSetCrtc()-based modeset handling with the
igt_display atomic commit API.
Use igt_output/igt_crtc abstractions for connector and pipe handling,
and perform modesets via igt_display_try_commit_atomic() with
ALLOW_MODESET.
Drop legacy resource handling and switch to igt_display_t for
managing outputs and CRTCs. Update connector handling to use
igt_output_t and igt_crtc_connector_valid() for compatibility checks.
Simplify cleanup by using igt_display_reset() instead of manually
unsetting CRTCs.
Remove the TEST_STEALING subtest, as its behavior relies on legacy
drmModeSetCrtc() semantics that do not map to the atomic API.
Update related helpers and data structures accordingly.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/kms_setmode.c | 314 +++++++++++++++++++-------------------------
1 file changed, 135 insertions(+), 179 deletions(-)
diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c
index 1f2849bc2..28ba50a64 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
@@ -80,7 +76,7 @@
#define CRTC_RESTRICT_CNT 2
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;
@@ -109,26 +105,23 @@ enum test_flags {
TEST_CLONE = 0x02,
TEST_SINGLE_CRTC_CLONE = 0x04,
TEST_EXCLUSIVE_CRTC_CLONE = 0x08,
- TEST_STEALING = 0x10,
TEST_TIMINGS = 0x20,
};
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;
@@ -153,9 +146,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++)
@@ -170,13 +164,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)
{
@@ -248,8 +250,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;
@@ -262,7 +264,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];
@@ -302,17 +304,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 ? ", " : "",
@@ -328,14 +331,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);
+
+ encoder_usage_count = calloc(resources->count_encoders,
+ sizeof(*encoder_usage_count));
+ igt_assert(encoder_usage_count);
- kmstest_unset_all_crtcs(drm_fd, resources);
+ /* Reset pending display state for a clean slate */
+ igt_display_reset(disp);
i = 0;
crtc_count = 0;
@@ -349,11 +362,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++)
@@ -366,11 +374,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) {
@@ -386,9 +401,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 &
@@ -397,16 +409,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;
@@ -423,6 +434,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;
}
@@ -431,55 +445,17 @@ 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);
}
}
-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)
@@ -495,9 +471,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));
@@ -507,7 +484,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++) {
@@ -517,7 +494,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));
@@ -625,14 +602,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];
+
}
}
@@ -648,41 +628,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 = 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);
+ /* 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;
- if (is_intel_device(drm_fd))
- intel_drrs_disable_crtc_index(drm_fd, crtc->crtc_idx);
+ igt_output_set_crtc(output, igt_crtc);
+ igt_output_override_mode(output, &crtc->mode);
+ }
- free(ids);
+ primary = igt_crtc_get_plane_type(igt_crtc, DRM_PLANE_TYPE_PRIMARY);
+ igt_plane_set_fb(primary, &crtc->fb_info);
+ }
- if (ret < 0) {
- if (errno == ENOSPC) {
- igt_skip_on_f(retry, "No suitable mode(s) found to fit into the link BW.\n");
+ ret = igt_display_try_commit_atomic(tconf->display,
+ DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
- retry = true;
- goto retry;
- }
+ if (is_intel_device(drm_fd) && ret == 0) {
+ for (i = 0; i < crtc_count; i++)
+ intel_drrs_disable(&display.crtcs[crtcs[i].crtc_idx]);
+ }
- igt_assert_eq(errno, EINVAL);
- config_failed = true;
+ if (ret < 0) {
+ if (ret == -ENOSPC) {
+ igt_skip_on_f(retry, "No suitable mode(s) found to fit into the link BW.\n");
+
+ 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) {
@@ -707,10 +709,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 ? "-" : "",
@@ -747,18 +750,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:
@@ -775,7 +775,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)) &&
@@ -820,63 +820,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;
+ igt_output_t *output = &disp->outputs[output_idx];
- connector = drmModeGetConnectorCurrent(drm_fd, connector_id);
- igt_assert(connector);
- cconf->connector = connector;
-
- 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 {
@@ -924,14 +894,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)
{
@@ -939,36 +901,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);
-
- if (connector_count > 2 && (tconf->flags & TEST_STEALING))
- return;
+ 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;
@@ -984,7 +943,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);
}
@@ -996,7 +954,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++)
@@ -1043,8 +1001,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;
@@ -1056,8 +1012,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);
}
@@ -1068,14 +1024,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] 6+ messages in thread* ✓ Xe.CI.BAT: success for tests/kms_setmode: Convert to igt_display atomic API 2026-03-31 17:45 [PATCH i-g-t] tests/kms_setmode: Convert to igt_display atomic API Jeevan B @ 2026-03-31 21:49 ` Patchwork 2026-03-31 22:18 ` ✓ i915.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-03-31 21:49 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1077 bytes --] == Series Details == Series: tests/kms_setmode: Convert to igt_display atomic API URL : https://patchwork.freedesktop.org/series/164189/ State : success == Summary == CI Bug Log - changes from XEIGT_8839_BAT -> XEIGTPW_14896_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8839 -> IGTPW_14896 * Linux: xe-4826-e15bf8dd9e5cd3aa1352b5b9a16eeffd3b1b193d -> xe-4828-3ad1bb41eb2b0a6f40601c2b69ebf4b8a2f09e69 IGTPW_14896: 990f2bbdb84c5a6a8a2c108a2130fa28a2928394 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8839: 8839 xe-4826-e15bf8dd9e5cd3aa1352b5b9a16eeffd3b1b193d: e15bf8dd9e5cd3aa1352b5b9a16eeffd3b1b193d xe-4828-3ad1bb41eb2b0a6f40601c2b69ebf4b8a2f09e69: 3ad1bb41eb2b0a6f40601c2b69ebf4b8a2f09e69 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14896/index.html [-- Attachment #2: Type: text/html, Size: 1636 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_setmode: Convert to igt_display atomic API 2026-03-31 17:45 [PATCH i-g-t] tests/kms_setmode: Convert to igt_display atomic API Jeevan B 2026-03-31 21:49 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2026-03-31 22:18 ` Patchwork 2026-04-01 5:18 ` ✓ Xe.CI.FULL: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-03-31 22:18 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3478 bytes --] == Series Details == Series: tests/kms_setmode: Convert to igt_display atomic API URL : https://patchwork.freedesktop.org/series/164189/ State : success == Summary == CI Bug Log - changes from IGT_8839 -> IGTPW_14896 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/index.html Participating hosts (42 -> 39) ------------------------------ Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6 Known issues ------------ Here are the changes found in IGTPW_14896 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8839/bat-mtlp-8/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/bat-mtlp-8/igt@i915_selftest@live.html - bat-dg2-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8839/bat-dg2-8/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/bat-dg2-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-dg2-9: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8839/bat-dg2-9/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/bat-dg2-9/igt@i915_selftest@live@workarounds.html - bat-dg2-14: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8839/bat-dg2-14/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/bat-dg2-14/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [PASS][9] -> [DMESG-FAIL][10] ([i915#12061]) +1 other test dmesg-fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8839/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/bat-mtlp-9/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@kms_setmode@basic-clone-single-crtc: - bat-atsm-1: [SKIP][11] ([i915#6094]) -> [SKIP][12] ([i915#6078]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8839/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [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_8839 -> IGTPW_14896 * Linux: CI_DRM_18255 -> CI_DRM_18257 CI-20190529: 20190529 CI_DRM_18255: e15bf8dd9e5cd3aa1352b5b9a16eeffd3b1b193d @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18257: 3ad1bb41eb2b0a6f40601c2b69ebf4b8a2f09e69 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14896: 990f2bbdb84c5a6a8a2c108a2130fa28a2928394 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8839: 8839 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/index.html [-- Attachment #2: Type: text/html, Size: 4456 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Xe.CI.FULL: success for tests/kms_setmode: Convert to igt_display atomic API 2026-03-31 17:45 [PATCH i-g-t] tests/kms_setmode: Convert to igt_display atomic API Jeevan B 2026-03-31 21:49 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-03-31 22:18 ` ✓ i915.CI.BAT: " Patchwork @ 2026-04-01 5:18 ` Patchwork 2026-04-01 8:06 ` [PATCH i-g-t] " Jani Nikula 2026-04-01 14:16 ` ✗ i915.CI.Full: failure for " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-04-01 5:18 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4424 bytes --] == Series Details == Series: tests/kms_setmode: Convert to igt_display atomic API URL : https://patchwork.freedesktop.org/series/164189/ State : success == Summary == CI Bug Log - changes from XEIGT_8839_FULL -> XEIGTPW_14896_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14896_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [PASS][1] -> [FAIL][2] ([Intel XE#301]) +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8839/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14896/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-lnl: [PASS][3] -> [SKIP][4] ([Intel XE#4692] / [Intel XE#7508]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8839/shard-lnl-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14896/shard-lnl-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_setmode@basic@pipe-a-edp-1: - shard-lnl: [PASS][5] -> [FAIL][6] ([Intel XE#6361]) +2 other tests fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8839/shard-lnl-6/igt@kms_setmode@basic@pipe-a-edp-1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14896/shard-lnl-4/igt@kms_setmode@basic@pipe-a-edp-1.html * igt@xe_exec_multi_queue@many-queues-close-fd: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#6874]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14896/shard-lnl-5/igt@xe_exec_multi_queue@many-queues-close-fd.html #### Warnings #### * igt@xe_pat@pat-index-xehpc: - shard-lnl: [SKIP][8] ([Intel XE#1420] / [Intel XE#2838]) -> [SKIP][9] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8839/shard-lnl-2/igt@xe_pat@pat-index-xehpc.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14896/shard-lnl-3/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - shard-lnl: [SKIP][10] ([Intel XE#977]) -> [SKIP][11] ([Intel XE#7590] / [Intel XE#977]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8839/shard-lnl-8/igt@xe_pat@pat-index-xelp.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14896/shard-lnl-7/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - shard-lnl: [SKIP][12] ([Intel XE#979]) -> [SKIP][13] ([Intel XE#7590] / [Intel XE#979]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8839/shard-lnl-6/igt@xe_pat@pat-index-xelpg.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14896/shard-lnl-8/igt@xe_pat@pat-index-xelpg.html [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692 [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#7508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7508 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_8839 -> IGTPW_14896 * Linux: xe-4826-e15bf8dd9e5cd3aa1352b5b9a16eeffd3b1b193d -> xe-4828-3ad1bb41eb2b0a6f40601c2b69ebf4b8a2f09e69 IGTPW_14896: 990f2bbdb84c5a6a8a2c108a2130fa28a2928394 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8839: 8839 xe-4826-e15bf8dd9e5cd3aa1352b5b9a16eeffd3b1b193d: e15bf8dd9e5cd3aa1352b5b9a16eeffd3b1b193d xe-4828-3ad1bb41eb2b0a6f40601c2b69ebf4b8a2f09e69: 3ad1bb41eb2b0a6f40601c2b69ebf4b8a2f09e69 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14896/index.html [-- Attachment #2: Type: text/html, Size: 5550 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] tests/kms_setmode: Convert to igt_display atomic API 2026-03-31 17:45 [PATCH i-g-t] tests/kms_setmode: Convert to igt_display atomic API Jeevan B ` (2 preceding siblings ...) 2026-04-01 5:18 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-04-01 8:06 ` Jani Nikula 2026-04-01 14:16 ` ✗ i915.CI.Full: failure for " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Jani Nikula @ 2026-04-01 8:06 UTC (permalink / raw) To: Jeevan B, igt-dev; +Cc: ville.syrjala, ankit.k.nautiyal, Jeevan B On Tue, 31 Mar 2026, Jeevan B <jeevan.b@intel.com> wrote: > Replace legacy drmModeSetCrtc()-based modeset handling with the > igt_display atomic commit API. > > Use igt_output/igt_crtc abstractions for connector and pipe handling, > and perform modesets via igt_display_try_commit_atomic() with > ALLOW_MODESET. > > Drop legacy resource handling and switch to igt_display_t for > managing outputs and CRTCs. Update connector handling to use > igt_output_t and igt_crtc_connector_valid() for compatibility checks. > > Simplify cleanup by using igt_display_reset() instead of manually > unsetting CRTCs. > > Remove the TEST_STEALING subtest, as its behavior relies on legacy > drmModeSetCrtc() semantics that do not map to the atomic API. > > Update related helpers and data structures accordingly. You're doing way, *way* too many things at once. I've read this through, there are so many changes that it's impossible to do thorough review. I'm commenting on some changes anyway, because there's a lot of things that are just plain wrong here. > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > --- > tests/kms_setmode.c | 314 +++++++++++++++++++------------------------- > 1 file changed, 135 insertions(+), 179 deletions(-) > > diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c > index 1f2849bc2..28ba50a64 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 > @@ -80,7 +76,7 @@ > #define CRTC_RESTRICT_CNT 2 > > static int drm_fd; > -static drmModeRes *drm_resources; > +static igt_display_t display; More common is to pass a pointer to display around than accessing this directly in the test. > static int filter_test_id; > static bool dry_run; > static bool extended = false; > @@ -109,26 +105,23 @@ enum test_flags { > TEST_CLONE = 0x02, > TEST_SINGLE_CRTC_CLONE = 0x04, > TEST_EXCLUSIVE_CRTC_CLONE = 0x08, > - TEST_STEALING = 0x10, How's this related? > TEST_TIMINGS = 0x20, > }; > > 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; Well, maybe store igt_crtc_t * here instead of leaving crtc_idx. > int connector_count; > struct connector_config *cconfs; > struct igt_fb fb_info; > @@ -153,9 +146,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++) > @@ -170,13 +164,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) > { > @@ -248,8 +250,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; > @@ -262,7 +264,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]; > @@ -302,17 +304,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]; display.crtcs is strictly off-limits to tests. See igt_crtc_for_crtc_index(). You can't even index it with CRTC index. However, I think it would be better to embrace this higher up in the whole test than doing the conversion at the last minute. Usually the variable name is just "crtc", absolutely everywhere. This test is an outlier. It would be *much* better to rename the existing struct crtc_config *crtc to something else than using igt_crtc. We'll want everything to conform instead of deviate. > 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 ? ", " : "", > @@ -328,14 +331,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); > + > + encoder_usage_count = calloc(resources->count_encoders, > + sizeof(*encoder_usage_count)); > + igt_assert(encoder_usage_count); Why does this have to be dynamically allocated, and why is it done in the same patch with a bunch of other changes? > > - kmstest_unset_all_crtcs(drm_fd, resources); > + /* Reset pending display state for a clean slate */ > + igt_display_reset(disp); > > i = 0; > crtc_count = 0; > @@ -349,11 +362,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++) > @@ -366,11 +374,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]; Worth repeating, do not access disp->crtcs in tests. > + > + /* 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) { > @@ -386,9 +401,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 & > @@ -397,16 +409,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; > > @@ -423,6 +434,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; > } > @@ -431,55 +445,17 @@ 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); > } > } > > -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; > -} > - Again, should not be part of the same patch with everything else that's going on. > #define frame_time(km) (1000.0 * (km)->htotal * (km)->vtotal / (km)->clock) > #define line_time(km) (1000.0 * (km)->htotal / (km)->clock) > > @@ -495,9 +471,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; Hey, no, absolutely not. Pass igt_crtc_t* around, and you can look at crtc->crtc_index. But you can't look at display.crtcs, and it's not "pipe_crtc_index". It's just CRTC index. Nothing pipe about it. > > memset(&wait, 0, sizeof(wait)); > - wait.request.type = kmstest_get_vbl_flag(crtc_idx); > + wait.request.type = kmstest_get_vbl_flag(pipe_crtc_index); I don't know what you're trying to achieve here. > wait.request.type |= DRM_VBLANK_RELATIVE | DRM_VBLANK_NEXTONMISS; > do_or_die(drmWaitVBlank(drm_fd, &wait)); > > @@ -507,7 +484,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++) { > @@ -517,7 +494,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)); > > @@ -625,14 +602,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]; > + > } > } > > @@ -648,41 +628,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]; No. > + > + /* 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 = 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); > + /* 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; > > - if (is_intel_device(drm_fd)) > - intel_drrs_disable_crtc_index(drm_fd, crtc->crtc_idx); > + igt_output_set_crtc(output, igt_crtc); > + igt_output_override_mode(output, &crtc->mode); > + } > > - free(ids); > + primary = igt_crtc_get_plane_type(igt_crtc, DRM_PLANE_TYPE_PRIMARY); > + igt_plane_set_fb(primary, &crtc->fb_info); > + } > > - if (ret < 0) { > - if (errno == ENOSPC) { > - igt_skip_on_f(retry, "No suitable mode(s) found to fit into the link BW.\n"); > + ret = igt_display_try_commit_atomic(tconf->display, > + DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > > - retry = true; > - goto retry; > - } > + if (is_intel_device(drm_fd) && ret == 0) { > + for (i = 0; i < crtc_count; i++) > + intel_drrs_disable(&display.crtcs[crtcs[i].crtc_idx]); > + } > > - igt_assert_eq(errno, EINVAL); > - config_failed = true; > + if (ret < 0) { > + if (ret == -ENOSPC) { > + igt_skip_on_f(retry, "No suitable mode(s) found to fit into the link BW.\n"); > + > + 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) { > @@ -707,10 +709,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)); What? Why? What are you doing? > > 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 ? "-" : "", > @@ -747,18 +750,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); display->n_crtcs is not for tests to look at. igt_display_n_crtcs() is the function. > > - 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: > @@ -775,7 +775,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)) && > @@ -820,63 +820,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; > + igt_output_t *output = &disp->outputs[output_idx]; > > - connector = drmModeGetConnectorCurrent(drm_fd, connector_id); > - igt_assert(connector); > - cconf->connector = connector; > - > - 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 { > @@ -924,14 +894,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) > { > @@ -939,36 +901,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); > - > - if (connector_count > 2 && (tconf->flags & TEST_STEALING)) > - return; > + 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; > @@ -984,7 +943,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); > } > @@ -996,7 +954,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++) > @@ -1043,8 +1001,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; > > @@ -1056,8 +1012,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); > } > @@ -1068,14 +1024,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] 6+ messages in thread
* ✗ i915.CI.Full: failure for tests/kms_setmode: Convert to igt_display atomic API 2026-03-31 17:45 [PATCH i-g-t] tests/kms_setmode: Convert to igt_display atomic API Jeevan B ` (3 preceding siblings ...) 2026-04-01 8:06 ` [PATCH i-g-t] " Jani Nikula @ 2026-04-01 14:16 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-04-01 14:16 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 131281 bytes --] == Series Details == Series: tests/kms_setmode: Convert to igt_display atomic API URL : https://patchwork.freedesktop.org/series/164189/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18257_full -> IGTPW_14896_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14896_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14896_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_14896/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_14896_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_schedule@u-fairslice-all: - shard-tglu: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-tglu-8/igt@gem_exec_schedule@u-fairslice-all.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-5/igt@gem_exec_schedule@u-fairslice-all.html * igt@kms_setmode@basic-clone-single-crtc@pipe-a-vga-1-hdmi-a-1: - shard-snb: [PASS][3] -> [FAIL][4] +2 other tests fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-snb1/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_14896/shard-snb7/igt@kms_setmode@basic-clone-single-crtc@pipe-a-vga-1-hdmi-a-1.html Known issues ------------ Here are the changes found in IGTPW_14896_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#9323]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#9323]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#13008]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-3/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-process: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#7697]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][9] ([i915#6335]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-3/igt@gem_create@create-ext-cpu-access-big.html - shard-rkl: NOTRUN -> [SKIP][10] ([i915#6335]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-8/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@file: - shard-snb: NOTRUN -> [SKIP][11] ([i915#1099]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-snb7/igt@gem_ctx_persistence@file.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8555]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-3/igt@gem_ctx_persistence@hang.html - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-7/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8555]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-19/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#280]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-3/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#280]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-2/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#4812]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-7/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#4525]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#4525]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-9/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_big@single: - shard-tglu-1: NOTRUN -> [FAIL][20] ([i915#15816]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#6334]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-8/igt@gem_exec_capture@capture-invisible@lmem0.html - shard-dg1: NOTRUN -> [SKIP][22] ([i915#6334]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-19/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#6334]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-8/igt@gem_exec_capture@capture-invisible@smem0.html - shard-tglu: NOTRUN -> [SKIP][24] ([i915#6334]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-8/igt@gem_exec_capture@capture-invisible@smem0.html - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#6334]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-2/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#3539]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-5/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-8/igt@gem_exec_flush@basic-wb-ro-before-default.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-19/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_reloc@basic-concurrent16: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3281]) +4 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-13/igt@gem_exec_reloc@basic-concurrent16.html * igt@gem_exec_reloc@basic-cpu-active: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#3281]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-active.html * igt@gem_exec_reloc@basic-gtt-wc: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#14544] / [i915#3281]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#3281]) +6 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-range-active: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3281]) +4 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-7/igt@gem_exec_reloc@basic-range-active.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#7276]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html - shard-dg1: NOTRUN -> [SKIP][35] ([i915#4812]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-15/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s3: - shard-rkl: NOTRUN -> [INCOMPLETE][36] ([i915#13356]) +1 other test incomplete [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@gem_exec_suspend@basic-s3.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4860]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-none.html - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4860]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-none.html - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4860]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613] / [i915#7582]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-7/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#14544] / [i915#4613]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@massive-random: - shard-tglu-1: NOTRUN -> [SKIP][42] ([i915#4613]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-3/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][44] ([i915#4613]) +5 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk5/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-3/igt@gem_lmem_swapping@smem-oom.html - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4613]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-4/igt@gem_lmem_swapping@smem-oom.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4077]) +7 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-1/igt@gem_mmap_gtt@cpuset-big-copy-odd.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4077]) +5 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-12/igt@gem_mmap_gtt@cpuset-big-copy-odd.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4077]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_wc@pf-nonblock: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4083]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-3/igt@gem_mmap_wc@pf-nonblock.html - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4083]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-17/igt@gem_mmap_wc@pf-nonblock.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4083]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-2/igt@gem_mmap_wc@pf-nonblock.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3282]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-3/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3282]) +6 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html - shard-dg1: NOTRUN -> [SKIP][55] ([i915#3282]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3282]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-2/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][57] ([i915#2658]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk5/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][58] ([i915#14702] / [i915#2658]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk9/igt@gem_pwrite@basic-exhaustion.html - shard-tglu-1: NOTRUN -> [WARN][59] ([i915#2658]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4270]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-13/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#13717]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4270]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-5/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#5190] / [i915#8428]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-8/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#8428]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-2/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html * igt@gem_set_tiling_vs_gtt: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4079]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-7/igt@gem_set_tiling_vs_gtt.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3297] / [i915#4880]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate.html - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3297]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-1/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#3297] / [i915#4880]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#3297]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3281] / [i915#3297]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-5/igt@gem_userptr_blits@relocations.html - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3281] / [i915#3297]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-4/igt@gem_userptr_blits@relocations.html - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3281] / [i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-15/igt@gem_userptr_blits@relocations.html - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3281] / [i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-8/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-4/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_workarounds@suspend-resume-fd: - shard-glk: NOTRUN -> [INCOMPLETE][76] ([i915#13356] / [i915#14586]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk4/igt@gem_workarounds@suspend-resume-fd.html * igt@gen7_exec_parse@basic-allocation: - shard-mtlp: NOTRUN -> [SKIP][77] +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-7/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@basic-rejected: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#14544]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@allowed-all: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#2527]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-15/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#2527] / [i915#2856]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#2527] / [i915#2856]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-9/igt@gen9_exec_parse@bb-start-cmd.html - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#2856]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-2/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@unaligned-jump: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#2856]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-1/igt@gen9_exec_parse@unaligned-jump.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#2527]) +4 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@busy-idle@bcs0: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#14073]) +11 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-19/igt@i915_drm_fdinfo@busy-idle@bcs0.html * igt@i915_drm_fdinfo@busy-idle@rcs0: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#14073]) +13 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-2/igt@i915_drm_fdinfo@busy-idle@rcs0.html * igt@i915_drm_fdinfo@busy-idle@vecs0: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#14073]) +15 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-8/igt@i915_drm_fdinfo@busy-idle@vecs0.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#15479]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-rkl: NOTRUN -> [ABORT][89] ([i915#15342]) +1 other test abort [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#8399]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-8/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#11681]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-3/igt@i915_pm_rps@thresholds.html - shard-dg1: NOTRUN -> [SKIP][92] ([i915#11681]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-13/igt@i915_pm_rps@thresholds.html - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#11681]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-5/igt@i915_pm_rps@thresholds.html * igt@i915_query@query-topology-known-pci-ids: - shard-tglu-1: NOTRUN -> [SKIP][94] +28 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#5723]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@i915_query@test-query-geometry-subslices.html - shard-dg1: NOTRUN -> [SKIP][96] ([i915#5723]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-17/igt@i915_query@test-query-geometry-subslices.html - shard-tglu: NOTRUN -> [SKIP][97] ([i915#5723]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-4/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@live@workarounds: - shard-dg2: [PASS][98] -> [DMESG-FAIL][99] ([i915#12061]) +1 other test dmesg-fail [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-dg2-8/igt@i915_selftest@live@workarounds.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-4/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@basic-s3-without-i915: - shard-glk: NOTRUN -> [INCOMPLETE][100] ([i915#4817]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk2/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-glk11: NOTRUN -> [INCOMPLETE][101] ([i915#4817]) +1 other test incomplete [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk11/igt@i915_suspend@debugfs-reader.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4212]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-3/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][103] ([i915#4212]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-17/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#4212]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1: - shard-dg2: [PASS][105] -> [FAIL][106] ([i915#14888]) +1 other test fail [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-dg2-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][107] ([i915#12761]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-2.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#14544] / [i915#5286]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#5286]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html - shard-tglu: NOTRUN -> [SKIP][111] ([i915#5286]) +5 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#5286]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#14544] / [i915#3638]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][114] ([i915#3638]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-14/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#3638]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][116] +22 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5190]) +5 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-17/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#5190]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-1/igt@kms_big_fb@yf-tiled-addfb.html - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#6187]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-4/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-glk10: NOTRUN -> [SKIP][121] +72 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk10/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#10307] / [i915#6095]) +88 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-4/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#14098] / [i915#6095]) +39 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#12313]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][125] ([i915#12313]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][126] ([i915#12313]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-15/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][127] ([i915#12313]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#12313]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#6095]) +33 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-7/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#14544] / [i915#6095]) +5 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#6095]) +24 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#12805]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#6095]) +64 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#12805]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#12313]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6095]) +24 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#6095]) +190 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs: - shard-snb: NOTRUN -> [SKIP][139] +160 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-snb1/igt@kms_ccs@random-ccs-data-y-tiled-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#6095]) +55 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/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-2: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#13783]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#11151] / [i915#7828]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-5/igt@kms_chamelium_edid@hdmi-mode-timings.html - shard-dg1: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-15/igt@kms_chamelium_edid@hdmi-mode-timings.html - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#11151] / [i915#7828]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-8/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +5 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-5/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +7 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@content-type-change: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#15865]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#14544] / [i915#15330]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html - shard-dg1: NOTRUN -> [SKIP][152] ([i915#15330]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html - shard-tglu: NOTRUN -> [SKIP][153] ([i915#15330]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#15330]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-3/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html - shard-dg2: NOTRUN -> [SKIP][155] ([i915#15330]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@legacy-hdcp14: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#15865]) +4 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@kms_content_protection@legacy-hdcp14.html - shard-tglu: NOTRUN -> [SKIP][157] ([i915#15865]) +4 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-4/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#15865]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-4/igt@kms_content_protection@lic-type-0-hdcp14.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#15865]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-16/igt@kms_content_protection@lic-type-0-hdcp14.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#15865]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-5/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#8814]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#3555]) +6 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-rkl: [PASS][163] -> [FAIL][164] ([i915#13566]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-128x42.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][165] ([i915#13566]) +1 other test fail [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html - shard-tglu: NOTRUN -> [FAIL][166] ([i915#13566]) +1 other test fail [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#3555]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#13049]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#9809]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#4103]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-dg1: NOTRUN -> [SKIP][171] ([i915#4103] / [i915#4213]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-tglu: NOTRUN -> [SKIP][172] ([i915#4103]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#4213]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-dg2: NOTRUN -> [SKIP][174] ([i915#4103] / [i915#4213]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#13046] / [i915#5354]) +3 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][176] ([i915#15804]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#13691]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-4/igt@kms_display_modes@extended-mode-basic.html - shard-rkl: NOTRUN -> [SKIP][178] ([i915#13691]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3804]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3555]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-7/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev@basic: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#1257]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-10/igt@kms_dp_aux_dev@basic.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#13707]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#13707] / [i915#14544]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-4/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#3840] / [i915#9053]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3840] / [i915#9053]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][187] ([i915#3840] / [i915#9053]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-19/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][188] ([i915#3840] / [i915#9053]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840] / [i915#9053]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#3955]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html - shard-tglu: NOTRUN -> [SKIP][191] ([i915#3469]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-10/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#2065] / [i915#4854]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-10/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#14544] / [i915#1839]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#1839]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-3/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#1839]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-8/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#658]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#658]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-16/igt@kms_feature_discovery@psr2.html - shard-tglu: NOTRUN -> [SKIP][198] ([i915#658]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-7/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][199] ([i915#658]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-7/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][200] ([i915#658]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#9934]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-4/igt@kms_flip@2x-blocking-wf_vblank.html - shard-rkl: NOTRUN -> [SKIP][202] ([i915#9934]) +4 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-3/igt@kms_flip@2x-blocking-wf_vblank.html - shard-dg1: NOTRUN -> [SKIP][203] ([i915#9934]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-17/igt@kms_flip@2x-blocking-wf_vblank.html - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#3637] / [i915#9934]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#14544] / [i915#9934]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-dpms: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#3637] / [i915#9934]) +4 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-4/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#9934]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][208] ([i915#12745] / [i915#4839]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk10/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2: - shard-glk10: NOTRUN -> [INCOMPLETE][209] ([i915#4839]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk10/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#3637] / [i915#9934]) +3 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][211] ([i915#12745] / [i915#4839]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-rkl: [PASS][212] -> [INCOMPLETE][213] ([i915#6113]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-5/igt@kms_flip@flip-vs-suspend-interruptible.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][214] ([i915#12745]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2: - shard-rkl: NOTRUN -> [INCOMPLETE][215] ([i915#6113]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#15643]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#15643]) +3 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][218] ([i915#15643]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html - shard-tglu: NOTRUN -> [SKIP][219] ([i915#15643]) +4 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#15643]) +2 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#15643]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#14544] / [i915#15643]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg1: [PASS][223] -> [DMESG-WARN][224] ([i915#4423]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#8708]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][226] +58 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#1825]) +15 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#15102]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html - shard-dg1: NOTRUN -> [SKIP][229] ([i915#15102]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#14544] / [i915#15102] / [i915#3023]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#15102] / [i915#3023]) +13 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#1825]) +35 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][233] +28 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#14544] / [i915#1825]) +4 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#5439]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#15102]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#15104]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][238] ([i915#15104]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw: - shard-glk: NOTRUN -> [SKIP][239] +406 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk2/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#8708]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#15102] / [i915#3458]) +4 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#5354]) +25 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#15102]) +8 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#15102] / [i915#3458]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#8708]) +7 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#15102]) +18 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8228]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-8/igt@kms_hdr@static-swap.html - shard-dg1: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#8228]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-17/igt@kms_hdr@static-swap.html - shard-tglu: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8228]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-6/igt@kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#12713] / [i915#3555] / [i915#8228]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-2/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#3555] / [i915#8228]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#13688]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-5/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][253] ([i915#15458]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-2/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#15458]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#15638] / [i915#15722]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#15815]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#6301]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-4/igt@kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][258] ([i915#6301]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][259] ([i915#6301]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-16/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#6301]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-8/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][261] ([i915#12756] / [i915#13409] / [i915#13476]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][262] ([i915#13409] / [i915#13476]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#14712]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#14712]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-dg2: NOTRUN -> [SKIP][265] ([i915#14712]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-rkl: NOTRUN -> [SKIP][266] ([i915#14712]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-dg1: NOTRUN -> [SKIP][267] ([i915#14712]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-19/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#15709]) +4 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#15608]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#15709]) +3 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#15608]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#15608]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#15709]) +3 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-3/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#15709]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#15709]) +3 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-19/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][276] ([i915#13026]) +1 other test incomplete [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][277] ([i915#10647] / [i915#12169]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk5/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][278] ([i915#10647]) +3 other tests fail [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk5/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][279] ([i915#10647] / [i915#12177]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk3/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_multiple@2x-tiling-x: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#13958]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@2x-tiling-y: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#13958]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-y.html - shard-tglu: NOTRUN -> [SKIP][282] ([i915#13958]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-3/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#14259]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-1/igt@kms_plane_multiple@tiling-y.html - shard-dg2: NOTRUN -> [SKIP][284] ([i915#14259]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-8/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#15329]) +7 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][286] ([i915#15329]) +4 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#15329]) +4 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#14544] / [i915#15329]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#12343]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-7/igt@kms_pm_backlight@brightness-with-dpms.html - shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#12343]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#9812]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-3/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#9685]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-1/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-rkl: NOTRUN -> [SKIP][293] ([i915#9685]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#13441]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-2/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#3828]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-8/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [PASS][296] -> [SKIP][297] ([i915#9340]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][298] ([i915#9340]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#8430]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-9/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg1: [PASS][300] -> [SKIP][301] ([i915#15073]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-dg1-18/igt@kms_pm_rpm@dpms-non-lpsp.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-15/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@pc8-residency: - shard-dg2: NOTRUN -> [SKIP][302] +8 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-1/igt@kms_pm_rpm@pc8-residency.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][303] ([i915#10553]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk6/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#6524]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-3/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#11520]) +6 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#12316]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][307] ([i915#11520]) +2 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk11/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#11520]) +2 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][309] ([i915#11520]) +9 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-snb: NOTRUN -> [SKIP][310] ([i915#11520]) +3 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-snb5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg1: NOTRUN -> [SKIP][311] ([i915#11520]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-16/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html - shard-tglu: NOTRUN -> [SKIP][312] ([i915#11520]) +5 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-9/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html - shard-glk10: NOTRUN -> [SKIP][313] ([i915#11520]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk10/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#11520]) +3 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-5/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#9683]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][316] ([i915#9683]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][317] ([i915#9683]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-16/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][318] ([i915#9683]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-mtlp: NOTRUN -> [SKIP][319] ([i915#4348]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#9732]) +22 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-10/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr2-primary-page-flip@edp-1: - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#9688]) +8 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-6/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html * igt@kms_psr@psr-primary-render: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_psr@psr-primary-render.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#1072] / [i915#9732]) +19 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-3/igt@kms_psr@psr-sprite-plane-move.html - shard-dg1: NOTRUN -> [SKIP][324] ([i915#1072] / [i915#9732]) +5 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-18/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#1072] / [i915#9732]) +10 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-1/igt@kms_psr@psr2-cursor-blt.html - shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#9732]) +8 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#9685]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk: NOTRUN -> [INCOMPLETE][328] ([i915#15492]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk5/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk10: NOTRUN -> [INCOMPLETE][329] ([i915#15500]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#5289]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#5289]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#3555]) +5 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_selftest@drm_framebuffer: - shard-glk10: NOTRUN -> [ABORT][333] ([i915#13179]) +1 other test abort [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk10/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-tglu: [PASS][334] -> [FAIL][335] ([i915#15106]) +2 other tests fail [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-tglu-10/igt@kms_setmode@basic.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-2/igt@kms_setmode@basic.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][336] ([i915#10959]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk3/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][337] ([i915#12276]) +1 other test incomplete [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk8/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#9906]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-dpms: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#15243] / [i915#3555]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-5/igt@kms_vrr@flip-dpms.html - shard-rkl: NOTRUN -> [SKIP][340] ([i915#15243] / [i915#3555]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-4/igt@kms_vrr@flip-dpms.html - shard-dg1: NOTRUN -> [SKIP][341] ([i915#3555]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-15/igt@kms_vrr@flip-dpms.html - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#3555] / [i915#8808]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-8/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@max-min: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#9906]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-5/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#3555] / [i915#9906]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@kms_vrr@negative-basic.html - shard-tglu: NOTRUN -> [SKIP][345] ([i915#3555] / [i915#9906]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-9/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#9906]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-3/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-dg1: NOTRUN -> [SKIP][347] ([i915#9906]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-tglu: NOTRUN -> [SKIP][348] ([i915#9906]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-2/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#8808] / [i915#9906]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][350] ([i915#2436]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][351] ([i915#2434]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-4/igt@perf@mi-rpc.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][352] ([i915#2433]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html - shard-dg1: NOTRUN -> [SKIP][353] ([i915#2433]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-14/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start: - shard-glk: [PASS][354] -> [DMESG-WARN][355] ([i915#118]) +1 other test dmesg-warn [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-glk4/igt@perf_pmu@busy-double-start.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk4/igt@perf_pmu@busy-double-start.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [ABORT][356] ([i915#13029] / [i915#15778]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-5/igt@perf_pmu@module-unload.html - shard-rkl: NOTRUN -> [ABORT][357] ([i915#15778]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-5/igt@perf_pmu@module-unload.html - shard-dg1: NOTRUN -> [ABORT][358] ([i915#13029] / [i915#15778]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-18/igt@perf_pmu@module-unload.html - shard-snb: NOTRUN -> [ABORT][359] ([i915#15778]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-snb1/igt@perf_pmu@module-unload.html - shard-mtlp: NOTRUN -> [ABORT][360] ([i915#15778]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-3/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-glk11: NOTRUN -> [SKIP][361] +85 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk11/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6-suspend: - shard-glk: [PASS][362] -> [INCOMPLETE][363] ([i915#13356] / [i915#14242]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-glk9/igt@perf_pmu@rc6-suspend.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk1/igt@perf_pmu@rc6-suspend.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#14121]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-8/igt@prime_mmap@test_aperture_limit.html * igt@prime_vgem@basic-read: - shard-mtlp: NOTRUN -> [SKIP][365] ([i915#3708]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-4/igt@prime_vgem@basic-read.html - shard-dg2: NOTRUN -> [SKIP][366] ([i915#3291] / [i915#3708]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-1/igt@prime_vgem@basic-read.html - shard-rkl: NOTRUN -> [SKIP][367] ([i915#3291] / [i915#3708]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-1/igt@prime_vgem@basic-read.html - shard-dg1: NOTRUN -> [SKIP][368] ([i915#3708]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-19/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][369] ([i915#14544] / [i915#3708]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#3708]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-7/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][371] ([i915#12910]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][372] ([i915#13356]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-dg2-6/igt@gem_ccs@suspend-resume.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-7/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [INCOMPLETE][374] ([i915#12392] / [i915#13356]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-dg2-6/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-7/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: [SKIP][376] ([i915#4270]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-on.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-on.html * igt@i915_module_load@reload-no-display: - shard-tglu: [DMESG-WARN][378] ([i915#13029] / [i915#14545]) -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-tglu-10/igt@i915_module_load@reload-no-display.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-5/igt@i915_module_load@reload-no-display.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - shard-rkl: [INCOMPLETE][380] ([i915#12761]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: [FAIL][382] ([i915#5956]) -> [PASS][383] +1 other test pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-dg2-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg1: [DMESG-WARN][384] ([i915#4423]) -> [PASS][385] +2 other tests pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-dg1-18/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-17/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-rkl: [INCOMPLETE][386] ([i915#14694] / [i915#15582]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-tglu: [FAIL][388] ([i915#13566]) -> [PASS][389] +5 other tests pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: [FAIL][390] ([i915#13566]) -> [PASS][391] +4 other tests pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-256x85.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_force_connector_basic@force-edid: - shard-mtlp: [SKIP][392] ([i915#15672]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-mtlp-4/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-dg2: [FAIL][394] ([i915#15389] / [i915#6880]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [SKIP][396] ([i915#6953]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [SKIP][398] ([i915#15073]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][400] ([i915#15073]) -> [PASS][401] +2 other tests pass [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-dg1: [SKIP][402] ([i915#15073]) -> [PASS][403] +1 other test pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp.html #### Warnings #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: [SKIP][404] ([i915#14544] / [i915#8411]) -> [SKIP][405] ([i915#8411]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-5/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@drm_buddy@drm_buddy: - shard-rkl: [SKIP][406] ([i915#15678]) -> [SKIP][407] ([i915#14544] / [i915#15678]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-2/igt@drm_buddy@drm_buddy.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@drm_buddy@drm_buddy.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: [SKIP][408] ([i915#3281]) -> [SKIP][409] ([i915#14544] / [i915#3281]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-5/igt@gem_bad_reloc@negative-reloc-lut.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: [SKIP][410] ([i915#14544] / [i915#3281]) -> [SKIP][411] ([i915#3281]) +2 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-rkl: [SKIP][412] ([i915#14544] / [i915#4613]) -> [SKIP][413] ([i915#4613]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-8/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: [SKIP][414] ([i915#3282]) -> [SKIP][415] ([i915#14544] / [i915#3282]) +2 other tests skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-5/igt@gem_partial_pwrite_pread@reads-uncached.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_readwrite@write-bad-handle: - shard-rkl: [SKIP][416] ([i915#14544] / [i915#3282]) -> [SKIP][417] ([i915#3282]) +1 other test skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@gem_readwrite@write-bad-handle.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-4/igt@gem_readwrite@write-bad-handle.html * igt@gem_softpin@noreloc-s3: - shard-rkl: [INCOMPLETE][418] ([i915#13809]) -> [ABORT][419] ([i915#15131]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@gem_softpin@noreloc-s3.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-1/igt@gem_softpin@noreloc-s3.html * igt@gen3_render_linear_blits: - shard-rkl: [SKIP][420] ([i915#14544]) -> [SKIP][421] +3 other tests skip [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@gen3_render_linear_blits.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-7/igt@gen3_render_linear_blits.html * igt@gen9_exec_parse@batch-without-end: - shard-rkl: [SKIP][422] ([i915#14544] / [i915#2527]) -> [SKIP][423] ([i915#2527]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@gen9_exec_parse@batch-without-end.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: [SKIP][424] ([i915#2527]) -> [SKIP][425] ([i915#14544] / [i915#2527]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-4/igt@gen9_exec_parse@bb-start-param.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: [SKIP][426] ([i915#14498] / [i915#14544]) -> [SKIP][427] ([i915#14498]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-rkl: [ABORT][428] ([i915#15060]) -> [INCOMPLETE][429] ([i915#13356]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-1/igt@i915_pm_rpm@system-suspend-execbuf.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: [SKIP][430] ([i915#14544] / [i915#1769] / [i915#3555]) -> [SKIP][431] ([i915#1769] / [i915#3555]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][432] ([i915#5286]) -> [SKIP][433] ([i915#14544] / [i915#5286]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg1: [SKIP][434] ([i915#4538] / [i915#5286]) -> [SKIP][435] ([i915#4423] / [i915#4538] / [i915#5286]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-rkl: [SKIP][436] ([i915#14544] / [i915#5286]) -> [SKIP][437] ([i915#5286]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: [SKIP][438] ([i915#14544] / [i915#3638]) -> [SKIP][439] ([i915#3638]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][440] ([i915#14544] / [i915#6095]) -> [SKIP][441] ([i915#6095]) +1 other test skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][442] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][443] ([i915#14098] / [i915#6095]) +2 other tests skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-rkl: [SKIP][444] ([i915#14098] / [i915#6095]) -> [SKIP][445] ([i915#14098] / [i915#14544] / [i915#6095]) +8 other tests skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][446] ([i915#6095]) -> [SKIP][447] ([i915#14544] / [i915#6095]) +6 other tests skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-7/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-rkl: [SKIP][448] ([i915#11151] / [i915#7828]) -> [SKIP][449] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-4/igt@kms_chamelium_audio@dp-audio-edid.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-rkl: [SKIP][450] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][451] ([i915#11151] / [i915#7828]) +1 other test skip [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_chamelium_hpd@common-hpd-after-suspend.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_content_protection@content-type-change: - shard-rkl: [SKIP][452] ([i915#14544] / [i915#15865]) -> [SKIP][453] ([i915#15865]) +1 other test skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_content_protection@content-type-change.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-7/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: [SKIP][454] ([i915#15330] / [i915#3116]) -> [SKIP][455] ([i915#14544] / [i915#15330] / [i915#3116]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@uevent-hdcp14: - shard-rkl: [SKIP][456] ([i915#15865]) -> [SKIP][457] ([i915#14544] / [i915#15865]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-8/igt@kms_content_protection@uevent-hdcp14.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: [SKIP][458] ([i915#4103]) -> [SKIP][459] ([i915#14544] / [i915#4103]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: [SKIP][460] -> [SKIP][461] ([i915#14544]) +11 other tests skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_dsc@dsc-basic: - shard-rkl: [SKIP][462] ([i915#3555] / [i915#3840]) -> [SKIP][463] ([i915#14544] / [i915#3555] / [i915#3840]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-7/igt@kms_dsc@dsc-basic.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_dsc@dsc-basic.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-rkl: [SKIP][464] ([i915#14544] / [i915#9934]) -> [SKIP][465] ([i915#9934]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-5/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-busy-flip: - shard-rkl: [SKIP][466] ([i915#9934]) -> [SKIP][467] ([i915#14544] / [i915#9934]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-2/igt@kms_flip@2x-busy-flip.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_flip@2x-busy-flip.html * igt@kms_flip@flip-vs-suspend: - shard-glk: [INCOMPLETE][468] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][469] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-glk3/igt@kms_flip@flip-vs-suspend.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk5/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: [INCOMPLETE][470] ([i915#12745] / [i915#6113]) -> [INCOMPLETE][471] ([i915#12314] / [i915#12745] / [i915#6113]) [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-glk3/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-rkl: [SKIP][472] ([i915#14544] / [i915#15643]) -> [SKIP][473] ([i915#15643]) +1 other test skip [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-rkl: [SKIP][474] ([i915#15643]) -> [SKIP][475] ([i915#14544] / [i915#15643]) +1 other test skip [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: [SKIP][476] ([i915#1825]) -> [SKIP][477] ([i915#14544] / [i915#1825]) +12 other tests skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-dg2: [SKIP][478] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][479] ([i915#15102] / [i915#3458]) +3 other tests skip [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][480] ([i915#14544] / [i915#15102]) -> [SKIP][481] ([i915#15102]) +1 other test skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][482] ([i915#15102] / [i915#3458]) -> [SKIP][483] ([i915#10433] / [i915#15102] / [i915#3458]) +3 other tests skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][484] ([i915#15102] / [i915#3023]) -> [SKIP][485] ([i915#14544] / [i915#15102] / [i915#3023]) +8 other tests skip [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-rkl: [SKIP][486] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][487] ([i915#15102] / [i915#3023]) +2 other tests skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-rkl: [SKIP][488] ([i915#14544] / [i915#1825]) -> [SKIP][489] ([i915#1825]) +7 other tests skip [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: [SKIP][490] ([i915#15460]) -> [SKIP][491] ([i915#14544] / [i915#15460]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-4/igt@kms_joiner@basic-big-joiner.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-rkl: [SKIP][492] ([i915#15709]) -> [SKIP][493] ([i915#14544] / [i915#15709]) +2 other tests skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane_multiple@2x-tiling-x: - shard-rkl: [SKIP][494] ([i915#13958] / [i915#14544]) -> [SKIP][495] ([i915#13958]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: [SKIP][496] ([i915#14544] / [i915#15329]) -> [SKIP][497] ([i915#15329]) +3 other tests skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_pm_backlight@fade: - shard-rkl: [SKIP][498] ([i915#14544] / [i915#5354]) -> [SKIP][499] ([i915#5354]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_pm_backlight@fade.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-4/igt@kms_pm_backlight@fade.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][500] ([i915#15073]) -> [SKIP][501] ([i915#14544] / [i915#15073]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-rkl: [SKIP][502] ([i915#11520] / [i915#14544]) -> [SKIP][503] ([i915#11520]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][504] ([i915#11520]) -> [SKIP][505] ([i915#11520] / [i915#14544]) +1 other test skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-3/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: [SKIP][506] ([i915#9683]) -> [SKIP][507] ([i915#14544] / [i915#9683]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-1/igt@kms_psr2_su@page_flip-nv12.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@pr-primary-mmap-gtt: - shard-rkl: [SKIP][508] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][509] ([i915#1072] / [i915#9732]) +4 other tests skip [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_psr@pr-primary-mmap-gtt.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-1/igt@kms_psr@pr-primary-mmap-gtt.html * igt@kms_psr@psr-cursor-render: - shard-rkl: [SKIP][510] ([i915#1072] / [i915#9732]) -> [SKIP][511] ([i915#1072] / [i915#14544] / [i915#9732]) +6 other tests skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-8/igt@kms_psr@psr-cursor-render.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@kms_psr@psr-cursor-render.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-rkl: [SKIP][512] ([i915#14544] / [i915#3555]) -> [SKIP][513] ([i915#3555]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: [SKIP][514] ([i915#14544] / [i915#3708]) -> [SKIP][515] ([i915#3708]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-2/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-rkl: [SKIP][516] ([i915#3708]) -> [SKIP][517] ([i915#14544] / [i915#3708]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-4/igt@prime_vgem@fence-read-hang.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: [SKIP][518] ([i915#9917]) -> [SKIP][519] ([i915#14544] / [i915#9917]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18257/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-on.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html [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#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [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#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [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#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [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#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121 [i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [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#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888 [i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060 [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#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [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#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [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#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [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#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [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#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [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#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#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [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#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [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#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [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#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [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_8839 -> IGTPW_14896 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18257: 3ad1bb41eb2b0a6f40601c2b69ebf4b8a2f09e69 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14896: 990f2bbdb84c5a6a8a2c108a2130fa28a2928394 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8839: 8839 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14896/index.html [-- Attachment #2: Type: text/html, Size: 175806 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-04-01 14:17 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-03-31 17:45 [PATCH i-g-t] tests/kms_setmode: Convert to igt_display atomic API Jeevan B 2026-03-31 21:49 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-03-31 22:18 ` ✓ i915.CI.BAT: " Patchwork 2026-04-01 5:18 ` ✓ Xe.CI.FULL: " Patchwork 2026-04-01 8:06 ` [PATCH i-g-t] " Jani Nikula 2026-04-01 14:16 ` ✗ i915.CI.Full: failure for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox