* [PATCH i-g-t 0/8] kms: Small cleanups and refactoring
@ 2025-11-21 19:06 Ville Syrjala
2025-11-21 19:06 ` [PATCH i-g-t 1/8] igt: Name drmModeCrtc variables 'drm_crtc' Ville Syrjala
` (12 more replies)
0 siblings, 13 replies; 19+ messages in thread
From: Ville Syrjala @ 2025-11-21 19:06 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Some fairly trivial cleanups and some refactoring.
Ville Syrjälä (8):
igt: Name drmModeCrtc variables 'drm_crtc'
lib/kms: Nuke PIPE_ANY
lib/kms: Nuke unused kmstest_{crtc,plane}
igt/kms: Nuke unused igt_pipe_*prop*() marcos and functions
lib/kms: Turn the igt_plane*prop*() marcos into functions
lib/kms: Turn the igt_output*prop*() marcos into functions
lib/kms: Turn the igt_pipe_obj*prop*() marcos into functions
test/kms_color: Don't dig around in display->pipes[] so much
lib/igt_kms.c | 10 +-
lib/igt_kms.h | 238 ++++++++++--------------------
tests/intel/kms_fb_coherency.c | 2 +-
tests/intel/kms_flip_scaled_crc.c | 8 +-
tests/intel/kms_flip_tiling.c | 2 +-
tests/intel/perf_pmu.c | 2 +-
tests/intel/prime_mmap_kms.c | 2 +-
tests/kms_atomic.c | 25 ++--
tests/kms_color.c | 41 +++--
tests/kms_cursor_legacy.c | 4 +-
tests/kms_flip_event_leak.c | 2 +-
tests/kms_lease.c | 14 +-
tests/kms_plane.c | 16 +-
tests/kms_plane_multiple.c | 2 +-
tests/kms_rmfb.c | 14 +-
tests/vmwgfx/vmw_prime.c | 2 +-
tools/msm_dp_compliance.c | 12 +-
17 files changed, 156 insertions(+), 240 deletions(-)
--
2.49.1
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH i-g-t 1/8] igt: Name drmModeCrtc variables 'drm_crtc'
2025-11-21 19:06 [PATCH i-g-t 0/8] kms: Small cleanups and refactoring Ville Syrjala
@ 2025-11-21 19:06 ` Ville Syrjala
2025-11-24 9:37 ` Jani Nikula
2025-11-21 19:06 ` [PATCH i-g-t 2/8] lib/kms: Nuke PIPE_ANY Ville Syrjala
` (11 subsequent siblings)
12 siblings, 1 reply; 19+ messages in thread
From: Ville Syrjala @ 2025-11-21 19:06 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
The current situation with pipes vs. crtcs is a giant mess.
In order to untangle things properly I think we need to
move away from the pipe stuff into a more pure crtc world.
I suspect the best way to get there is by renaming igt_pipe_t
into igt_crtc_t and making everyone use it instead of the raw
index/pipe numbers. And presumable we'll want to call the
igt_crtc_t variables 'crtc', so let's clear out the namespace
for that by using 'drm_crtc' as the variable name for the
lower level drmModeCrtc stuff.
Done with cocci:
\#include "scripts/iterators.cocci"
@@
identifier X;
typedef drmModeCrtcPtr;
@@
- drmModeCrtcPtr X;
+ drmModeCrtcPtr drm_crtc;
<+...
- X
+ drm_crtc
...+>
@@
identifier X;
typedef drmModeCrtc;
@@
- drmModeCrtc *X;
+ drmModeCrtc *drm_crtc;
<+...
- X
+ drm_crtc
...+>
@@
identifier X;
expression E;
typedef drmModeCrtcPtr;
@@
- drmModeCrtcPtr X = E;
+ drmModeCrtcPtr drm_crtc = E;
<+...
- X
+ drm_crtc
...+>
@@
identifier X;
expression E;
typedef drmModeCrtc;
@@
- drmModeCrtc *X = E;
+ drmModeCrtc *drm_crtc = E;
<+...
- X
+ drm_crtc
...+>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
lib/igt_kms.c | 10 +++++-----
tests/intel/kms_flip_scaled_crc.c | 8 ++++----
tests/kms_atomic.c | 25 +++++++++++++------------
tests/kms_color.c | 16 ++++++++--------
tests/kms_lease.c | 14 +++++++-------
tests/kms_plane.c | 16 ++++++++--------
tests/kms_rmfb.c | 14 +++++++-------
tools/msm_dp_compliance.c | 12 ++++++------
8 files changed, 58 insertions(+), 57 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 8973ffdb22a6..fb72b118605c 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -1253,17 +1253,17 @@ static int __intel_get_pipe_from_crtc_id(int fd, int crtc_id, int crtc_idx)
int kmstest_get_pipe_from_crtc_id(int fd, int crtc_id)
{
drmModeRes *res;
- drmModeCrtc *crtc;
+ drmModeCrtc *drm_crtc;
int i, cur_id;
res = drmModeGetResources(fd);
igt_assert(res);
for (i = 0; i < res->count_crtcs; i++) {
- crtc = drmModeGetCrtc(fd, res->crtcs[i]);
- igt_assert(crtc);
- cur_id = crtc->crtc_id;
- drmModeFreeCrtc(crtc);
+ drm_crtc = drmModeGetCrtc(fd, res->crtcs[i]);
+ igt_assert(drm_crtc);
+ cur_id = drm_crtc->crtc_id;
+ drmModeFreeCrtc(drm_crtc);
if (cur_id == crtc_id)
break;
}
diff --git a/tests/intel/kms_flip_scaled_crc.c b/tests/intel/kms_flip_scaled_crc.c
index e866c62fc2bb..93e9791c29b9 100644
--- a/tests/intel/kms_flip_scaled_crc.c
+++ b/tests/intel/kms_flip_scaled_crc.c
@@ -539,12 +539,12 @@ static void set_lut(data_t *data, enum pipe pipe)
{
igt_pipe_t *pipe_obj = &data->display.pipes[pipe];
struct drm_color_lut *lut;
- drmModeCrtc *crtc;
+ drmModeCrtc *drm_crtc;
int i, lut_size;
- crtc = drmModeGetCrtc(data->drm_fd, pipe_obj->crtc_id);
- lut_size = crtc->gamma_size;
- drmModeFreeCrtc(crtc);
+ drm_crtc = drmModeGetCrtc(data->drm_fd, pipe_obj->crtc_id);
+ lut_size = drm_crtc->gamma_size;
+ drmModeFreeCrtc(drm_crtc);
lut = malloc(sizeof(lut[0]) * lut_size);
diff --git a/tests/kms_atomic.c b/tests/kms_atomic.c
index 474df3fa4f6b..e072653ddf4c 100644
--- a/tests/kms_atomic.c
+++ b/tests/kms_atomic.c
@@ -242,7 +242,7 @@ static void crtc_check_current_state(igt_pipe_t *pipe,
enum kms_atomic_check_relax relax)
{
uint64_t current_pipe_values[IGT_NUM_CRTC_PROPS];
- drmModeCrtcPtr legacy;
+ drmModeCrtcPtr drm_crtc;
drmModePropertyBlobRes *mode_prop = NULL;
struct drm_mode_modeinfo *mode = NULL;
@@ -256,22 +256,23 @@ static void crtc_check_current_state(igt_pipe_t *pipe,
mode = mode_prop->data;
}
- legacy = drmModeGetCrtc(pipe->display->drm_fd, pipe->crtc_id);
- igt_assert(legacy);
+ drm_crtc = drmModeGetCrtc(pipe->display->drm_fd, pipe->crtc_id);
+ igt_assert(drm_crtc);
- igt_assert_eq_u32(legacy->crtc_id, pipe->crtc_id);
- igt_assert_eq_u32(legacy->x, primary_values[IGT_PLANE_SRC_X] >> 16);
- igt_assert_eq_u32(legacy->y, primary_values[IGT_PLANE_SRC_Y] >> 16);
+ igt_assert_eq_u32(drm_crtc->crtc_id, pipe->crtc_id);
+ igt_assert_eq_u32(drm_crtc->x, primary_values[IGT_PLANE_SRC_X] >> 16);
+ igt_assert_eq_u32(drm_crtc->y, primary_values[IGT_PLANE_SRC_Y] >> 16);
- igt_assert_eq_u32(legacy->buffer_id, primary_values[IGT_PLANE_FB_ID]);
+ igt_assert_eq_u32(drm_crtc->buffer_id,
+ primary_values[IGT_PLANE_FB_ID]);
- if (legacy->mode_valid) {
+ if (drm_crtc->mode_valid) {
igt_assert(mode_prop);
- do_or_die(memcmp(&legacy->mode, mode, sizeof(*mode)));
+ do_or_die(memcmp(&drm_crtc->mode, mode, sizeof(*mode)));
- igt_assert_eq(legacy->width, legacy->mode.hdisplay);
- igt_assert_eq(legacy->height, legacy->mode.vdisplay);
+ igt_assert_eq(drm_crtc->width, drm_crtc->mode.hdisplay);
+ igt_assert_eq(drm_crtc->height, drm_crtc->mode.vdisplay);
igt_assert_neq(pipe_values[IGT_CRTC_MODE_ID], 0);
} else {
@@ -302,7 +303,7 @@ static void crtc_check_current_state(igt_pipe_t *pipe,
do_or_die(memcmp(pipe_values, current_pipe_values, sizeof(current_pipe_values)));
- drmModeFreeCrtc(legacy);
+ drmModeFreeCrtc(drm_crtc);
drmModeFreePropertyBlob(mode_prop);
}
diff --git a/tests/kms_color.c b/tests/kms_color.c
index c424083b7fd4..16155bc4bcaf 100644
--- a/tests/kms_color.c
+++ b/tests/kms_color.c
@@ -269,7 +269,7 @@ static bool test_pipe_legacy_gamma(data_t *data,
{ 0.0, 1.0, 0.0 },
{ 0.0, 0.0, 1.0 },
};
- drmModeCrtc *kms_crtc;
+ drmModeCrtc *drm_crtc;
uint32_t i, legacy_lut_size;
uint16_t *red_lut, *green_lut, *blue_lut;
drmModeModeInfo *mode = data->mode;
@@ -278,9 +278,9 @@ static bool test_pipe_legacy_gamma(data_t *data,
int fb_id, fb_modeset_id;
bool ret;
- kms_crtc = drmModeGetCrtc(data->drm_fd, primary->pipe->crtc_id);
- legacy_lut_size = kms_crtc->gamma_size;
- drmModeFreeCrtc(kms_crtc);
+ drm_crtc = drmModeGetCrtc(data->drm_fd, primary->pipe->crtc_id);
+ legacy_lut_size = drm_crtc->gamma_size;
+ drmModeFreeCrtc(drm_crtc);
igt_require(legacy_lut_size > 0);
@@ -378,7 +378,7 @@ static bool test_pipe_legacy_gamma_reset(data_t *data,
0.0, 1.0, 0.0,
0.0, 0.0, 1.0,
};
- drmModeCrtc *kms_crtc;
+ drmModeCrtc *drm_crtc;
gamma_lut_t *degamma_linear = NULL, *gamma_zero;
uint32_t i, legacy_lut_size;
uint16_t *red_lut, *green_lut, *blue_lut;
@@ -446,9 +446,9 @@ static bool test_pipe_legacy_gamma_reset(data_t *data,
* the content of the GAMMA_LUT property is changed
* and that CTM and DEGAMMA_LUT are empty.
*/
- kms_crtc = drmModeGetCrtc(data->drm_fd, primary->pipe->crtc_id);
- legacy_lut_size = kms_crtc->gamma_size;
- drmModeFreeCrtc(kms_crtc);
+ drm_crtc = drmModeGetCrtc(data->drm_fd, primary->pipe->crtc_id);
+ legacy_lut_size = drm_crtc->gamma_size;
+ drmModeFreeCrtc(drm_crtc);
red_lut = malloc(sizeof(uint16_t) * legacy_lut_size);
igt_assert(red_lut);
diff --git a/tests/kms_lease.c b/tests/kms_lease.c
index e217f81d0510..178bddc0579b 100644
--- a/tests/kms_lease.c
+++ b/tests/kms_lease.c
@@ -700,7 +700,7 @@ static void lease_unleased_crtc(data_t *data)
{
enum pipe p;
uint32_t bad_crtc_id;
- drmModeCrtc *crtc;
+ drmModeCrtc *drm_crtc;
int ret;
/* Create a valid lease */
@@ -724,19 +724,19 @@ static void lease_unleased_crtc(data_t *data)
/* sanity check */
ret = drmModeSetCrtc(data->lease.fd, data->crtc_id, 0, 0, 0, NULL, 0, NULL);
igt_assert_eq(ret, 0);
- crtc = drmModeGetCrtc(data->lease.fd, data->crtc_id);
- igt_assert(crtc);
- drmModeFreeCrtc(crtc);
+ drm_crtc = drmModeGetCrtc(data->lease.fd, data->crtc_id);
+ igt_assert(drm_crtc);
+ drmModeFreeCrtc(drm_crtc);
/* Attempt to use the unleased crtc id. We need raw ioctl to bypass the
* igt_kms helpers.
*/
ret = drmModeSetCrtc(data->lease.fd, bad_crtc_id, 0, 0, 0, NULL, 0, NULL);
igt_assert_eq(ret, -ENOENT);
- crtc = drmModeGetCrtc(data->lease.fd, bad_crtc_id);
- igt_assert(!crtc);
+ drm_crtc = drmModeGetCrtc(data->lease.fd, bad_crtc_id);
+ igt_assert(!drm_crtc);
igt_assert_eq(errno, ENOENT);
- drmModeFreeCrtc(crtc);
+ drmModeFreeCrtc(drm_crtc);
}
static void lease_unleased_connector(data_t *data)
diff --git a/tests/kms_plane.c b/tests/kms_plane.c
index 02d4da4cb511..80a76d867095 100644
--- a/tests/kms_plane.c
+++ b/tests/kms_plane.c
@@ -523,13 +523,13 @@ static void set_legacy_lut(data_t *data, enum pipe pipe,
uint16_t mask)
{
igt_pipe_t *pipe_obj = &data->display.pipes[pipe];
- drmModeCrtc *crtc;
+ drmModeCrtc *drm_crtc;
uint16_t *lut;
int i, lut_size;
- crtc = drmModeGetCrtc(data->drm_fd, pipe_obj->crtc_id);
- lut_size = crtc->gamma_size;
- drmModeFreeCrtc(crtc);
+ drm_crtc = drmModeGetCrtc(data->drm_fd, pipe_obj->crtc_id);
+ lut_size = drm_crtc->gamma_size;
+ drmModeFreeCrtc(drm_crtc);
/* Skip if legacy LUT is not supported: */
if (!lut_size)
@@ -550,13 +550,13 @@ static bool set_c8_legacy_lut(data_t *data, enum pipe pipe,
uint16_t mask)
{
igt_pipe_t *pipe_obj = &data->display.pipes[pipe];
- drmModeCrtc *crtc;
+ drmModeCrtc *drm_crtc;
uint16_t *r, *g, *b;
int i, lut_size;
- crtc = drmModeGetCrtc(data->drm_fd, pipe_obj->crtc_id);
- lut_size = crtc->gamma_size;
- drmModeFreeCrtc(crtc);
+ drm_crtc = drmModeGetCrtc(data->drm_fd, pipe_obj->crtc_id);
+ lut_size = drm_crtc->gamma_size;
+ drmModeFreeCrtc(drm_crtc);
if (lut_size != 256)
return false;
diff --git a/tests/kms_rmfb.c b/tests/kms_rmfb.c
index acda4b528cda..9b5110e2dab3 100644
--- a/tests/kms_rmfb.c
+++ b/tests/kms_rmfb.c
@@ -80,7 +80,7 @@ test_rmfb(struct rmfb_data *data, igt_output_t *output, enum pipe pipe, bool reo
igt_display_t *display = &data->display;
drmModeModeInfo *mode;
igt_plane_t *plane;
- drmModeCrtc *crtc;
+ drmModeCrtc *drm_crtc;
uint64_t cursor_width, cursor_height;
int num_active_planes = 0;
@@ -134,11 +134,11 @@ test_rmfb(struct rmfb_data *data, igt_output_t *output, enum pipe pipe, bool reo
igt_display_commit2(&data->display, data->display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY);
- crtc = drmModeGetCrtc(data->drm_fd, output->config.crtc->crtc_id);
+ drm_crtc = drmModeGetCrtc(data->drm_fd, output->config.crtc->crtc_id);
- igt_assert_eq(crtc->buffer_id, fb.fb_id);
+ igt_assert_eq(drm_crtc->buffer_id, fb.fb_id);
- drmModeFreeCrtc(crtc);
+ drmModeFreeCrtc(drm_crtc);
if (reopen) {
drm_close_driver(data->drm_fd);
@@ -153,11 +153,11 @@ test_rmfb(struct rmfb_data *data, igt_output_t *output, enum pipe pipe, bool reo
igt_remove_fb(data->drm_fd, &argb_fb);
}
- crtc = drmModeGetCrtc(data->drm_fd, output->config.crtc->crtc_id);
+ drm_crtc = drmModeGetCrtc(data->drm_fd, output->config.crtc->crtc_id);
- igt_assert_eq(crtc->buffer_id, 0);
+ igt_assert_eq(drm_crtc->buffer_id, 0);
- drmModeFreeCrtc(crtc);
+ drmModeFreeCrtc(drm_crtc);
for_each_plane_on_pipe(&data->display, pipe, plane) {
drmModePlanePtr planeres = drmModeGetPlane(data->drm_fd, plane->drm_plane->plane_id);
diff --git a/tools/msm_dp_compliance.c b/tools/msm_dp_compliance.c
index c37b3bc1cac5..84b8f2ae8603 100644
--- a/tools/msm_dp_compliance.c
+++ b/tools/msm_dp_compliance.c
@@ -532,7 +532,7 @@ set_default_mode(struct connector *c, bool set_mode)
static uint32_t find_crtc_for_connector(drmModeConnector *c)
{
drmModeEncoder *e;
- drmModeCrtcPtr crtc_ptr;
+ drmModeCrtcPtr drm_crtc;
int i;
active_crtc = 0;
@@ -562,14 +562,14 @@ static uint32_t find_crtc_for_connector(drmModeConnector *c)
* other unused crtc.
*/
for (i = 0; i < resources->count_crtcs; i++) {
- crtc_ptr = drmModeGetCrtc(drm_fd, resources->crtcs[i]);
+ drm_crtc = drmModeGetCrtc(drm_fd, resources->crtcs[i]);
/* if a crtc which is unused is found , use it */
- if (!crtc_ptr->mode_valid) {
- active_crtc = crtc_ptr->crtc_id;
- drmModeFreeCrtc(crtc_ptr);
+ if (!drm_crtc->mode_valid) {
+ active_crtc = drm_crtc->crtc_id;
+ drmModeFreeCrtc(drm_crtc);
break;
}
- drmModeFreeCrtc(crtc_ptr);
+ drmModeFreeCrtc(drm_crtc);
}
return active_crtc;
--
2.49.1
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH i-g-t 2/8] lib/kms: Nuke PIPE_ANY
2025-11-21 19:06 [PATCH i-g-t 0/8] kms: Small cleanups and refactoring Ville Syrjala
2025-11-21 19:06 ` [PATCH i-g-t 1/8] igt: Name drmModeCrtc variables 'drm_crtc' Ville Syrjala
@ 2025-11-21 19:06 ` Ville Syrjala
2025-11-24 7:25 ` Sharma, Swati2
2025-11-21 19:06 ` [PATCH i-g-t 3/8] lib/kms: Nuke unused kmstest_{crtc,plane} Ville Syrjala
` (10 subsequent siblings)
12 siblings, 1 reply; 19+ messages in thread
From: Ville Syrjala @ 2025-11-21 19:06 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
For some reason we have two names for the same
enum value (PIPE_NONE and PIPE_ANY). Get rid of
the less used one.
Done with cocci:
@@
@@
enum pipe {
...,
- PIPE_ANY = PIPE_NONE,
...
};
@@
@@
- PIPE_ANY
+ PIPE_NONE
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
lib/igt_kms.h | 1 -
tests/intel/kms_fb_coherency.c | 2 +-
tests/intel/kms_flip_tiling.c | 2 +-
tests/intel/perf_pmu.c | 2 +-
tests/intel/prime_mmap_kms.c | 2 +-
tests/kms_flip_event_leak.c | 2 +-
tests/kms_plane_multiple.c | 2 +-
tests/vmwgfx/vmw_prime.c | 2 +-
8 files changed, 7 insertions(+), 8 deletions(-)
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index f7ff0b17eb02..e1241342a0c9 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -72,7 +72,6 @@
*/
enum pipe {
PIPE_NONE = -1,
- PIPE_ANY = PIPE_NONE,
PIPE_A = 0,
PIPE_B,
PIPE_C,
diff --git a/tests/intel/kms_fb_coherency.c b/tests/intel/kms_fb_coherency.c
index 573037db1102..5f5bf7b8e9df 100644
--- a/tests/intel/kms_fb_coherency.c
+++ b/tests/intel/kms_fb_coherency.c
@@ -144,7 +144,7 @@ static void cleanup_crtc(data_t *data)
igt_plane_set_fb(data->primary, NULL);
- igt_output_set_pipe(output, PIPE_ANY);
+ igt_output_set_pipe(output, PIPE_NONE);
igt_display_commit(display);
igt_remove_fb(data->drm_fd, &data->fb[0]);
diff --git a/tests/intel/kms_flip_tiling.c b/tests/intel/kms_flip_tiling.c
index d078653e9d91..a6a162b94817 100644
--- a/tests/intel/kms_flip_tiling.c
+++ b/tests/intel/kms_flip_tiling.c
@@ -176,7 +176,7 @@ static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t *output)
/* Clean up. */
igt_plane_set_fb(primary, NULL);
pipe_crc_free(data);
- igt_output_set_pipe(output, PIPE_ANY);
+ igt_output_set_pipe(output, PIPE_NONE);
igt_remove_fb(data->drm_fd, &data->fb[0]);
igt_remove_fb(data->drm_fd, &data->fb[1]);
diff --git a/tests/intel/perf_pmu.c b/tests/intel/perf_pmu.c
index bf43da8db57b..e06ddafaf4e6 100644
--- a/tests/intel/perf_pmu.c
+++ b/tests/intel/perf_pmu.c
@@ -1079,7 +1079,7 @@ static void cleanup_crtc(data_t *data, int fd, igt_output_t *output)
primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
igt_plane_set_fb(primary, NULL);
- igt_output_set_pipe(output, PIPE_ANY);
+ igt_output_set_pipe(output, PIPE_NONE);
igt_display_commit(display);
}
diff --git a/tests/intel/prime_mmap_kms.c b/tests/intel/prime_mmap_kms.c
index c0c2f2fc0e00..a8d84f034d94 100644
--- a/tests/intel/prime_mmap_kms.c
+++ b/tests/intel/prime_mmap_kms.c
@@ -161,7 +161,7 @@ static void cleanup_crtc(gpu_process_t *gpu)
igt_plane_set_fb(gpu->primary, NULL);
- igt_output_set_pipe(output, PIPE_ANY);
+ igt_output_set_pipe(output, PIPE_NONE);
igt_display_commit(display);
igt_remove_fb(gpu->drm_fd, &gpu->fb);
diff --git a/tests/kms_flip_event_leak.c b/tests/kms_flip_event_leak.c
index 71b58b4dfe31..d88b08d16dbc 100644
--- a/tests/kms_flip_event_leak.c
+++ b/tests/kms_flip_event_leak.c
@@ -97,7 +97,7 @@ static void test(data_t *data, enum pipe pipe, igt_output_t *output)
igt_device_set_master(data->drm_fd);
igt_plane_set_fb(primary, NULL);
- igt_output_set_pipe(output, PIPE_ANY);
+ igt_output_set_pipe(output, PIPE_NONE);
igt_display_commit(&data->display);
igt_remove_fb(data->drm_fd, &fb[0]);
diff --git a/tests/kms_plane_multiple.c b/tests/kms_plane_multiple.c
index 4e6ca780a6ed..947a0e6bc591 100644
--- a/tests/kms_plane_multiple.c
+++ b/tests/kms_plane_multiple.c
@@ -120,7 +120,7 @@ static void test_init(data_t *data, enum pipe pipe, int n_planes)
static void test_fini(data_t *data, igt_output_t *output, int n_planes)
{
/* reset the constraint on the pipe */
- igt_output_set_pipe(output, PIPE_ANY);
+ igt_output_set_pipe(output, PIPE_NONE);
igt_pipe_crc_free(data->pipe_crc1);
data->pipe_crc1 = NULL;
diff --git a/tests/vmwgfx/vmw_prime.c b/tests/vmwgfx/vmw_prime.c
index 5c39ff1a4d45..5f0556c0c6a8 100644
--- a/tests/vmwgfx/vmw_prime.c
+++ b/tests/vmwgfx/vmw_prime.c
@@ -185,7 +185,7 @@ static void cleanup_crtc(struct gpu_process_t *gpu)
igt_plane_set_fb(gpu->primary, NULL);
- igt_output_set_pipe(output, PIPE_ANY);
+ igt_output_set_pipe(output, PIPE_NONE);
igt_display_commit(display);
igt_remove_fb(gpu->mdevice.drm_fd, &gpu->fb);
--
2.49.1
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH i-g-t 3/8] lib/kms: Nuke unused kmstest_{crtc,plane}
2025-11-21 19:06 [PATCH i-g-t 0/8] kms: Small cleanups and refactoring Ville Syrjala
2025-11-21 19:06 ` [PATCH i-g-t 1/8] igt: Name drmModeCrtc variables 'drm_crtc' Ville Syrjala
2025-11-21 19:06 ` [PATCH i-g-t 2/8] lib/kms: Nuke PIPE_ANY Ville Syrjala
@ 2025-11-21 19:06 ` Ville Syrjala
2025-11-24 7:27 ` Sharma, Swati2
2025-11-21 19:06 ` [PATCH i-g-t 4/8] igt/kms: Nuke unused igt_pipe_*prop*() marcos and functions Ville Syrjala
` (9 subsequent siblings)
12 siblings, 1 reply; 19+ messages in thread
From: Ville Syrjala @ 2025-11-21 19:06 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
struct kmstest_plane and struct kmstest_crtc are unused.
Get rid of them.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
lib/igt_kms.h | 20 --------------------
1 file changed, 20 deletions(-)
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index e1241342a0c9..c9216dd5bdbe 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -214,26 +214,6 @@ struct kmstest_connector_config {
char *connector_path;
};
-struct kmstest_plane {
- int id;
- int index;
- int type;
- int pos_x;
- int pos_y;
- int width;
- int height;
-};
-
-struct kmstest_crtc {
- int id;
- int pipe;
- bool active;
- int width;
- int height;
- int n_planes;
- struct kmstest_plane *planes;
-};
-
/**
* kmstest_force_connector_state:
* @FORCE_CONNECTOR_UNSPECIFIED: Unspecified
--
2.49.1
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH i-g-t 4/8] igt/kms: Nuke unused igt_pipe_*prop*() marcos and functions
2025-11-21 19:06 [PATCH i-g-t 0/8] kms: Small cleanups and refactoring Ville Syrjala
` (2 preceding siblings ...)
2025-11-21 19:06 ` [PATCH i-g-t 3/8] lib/kms: Nuke unused kmstest_{crtc,plane} Ville Syrjala
@ 2025-11-21 19:06 ` Ville Syrjala
2025-11-24 12:19 ` Sharma, Swati2
2025-11-21 19:06 ` [PATCH i-g-t 5/8] lib/kms: Turn the igt_plane*prop*() marcos into functions Ville Syrjala
` (8 subsequent siblings)
12 siblings, 1 reply; 19+ messages in thread
From: Ville Syrjala @ 2025-11-21 19:06 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
We have a bunch of unused macros and functions related to
crtc property handling. Nuke them all.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
lib/igt_kms.h | 101 --------------------------------------------------
1 file changed, 101 deletions(-)
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index c9216dd5bdbe..91776e73e309 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -928,42 +928,6 @@ igt_pipe_obj_has_prop(igt_pipe_t *pipe, enum igt_atomic_crtc_properties prop)
uint64_t igt_pipe_obj_get_prop(igt_pipe_t *pipe, enum igt_atomic_crtc_properties prop);
-/**
- * igt_pipe_get_prop:
- * @display: Pointer to display.
- * @pipe: Target pipe.
- * @prop: Property to return.
- *
- * Return current value on a pipe for a given property.
- *
- * Returns: The value the property is set to, if this
- * is a blob, the blob id is returned. This can be passed
- * to drmModeGetPropertyBlob() to get the contents of the blob.
- */
-static inline uint64_t
-igt_pipe_get_prop(igt_display_t *display, enum pipe pipe,
- enum igt_atomic_crtc_properties prop)
-{
- return igt_pipe_obj_get_prop(&display->pipes[pipe], prop);
-}
-
-/**
- * igt_pipe_has_prop:
- * @display: Pointer to display.
- * @pipe: Pipe to check.
- * @prop: Property to check.
- *
- * Check whether pipe supports a given property.
- *
- * Returns: True if the property is supported, otherwise false.
- */
-static inline bool
-igt_pipe_has_prop(igt_display_t *display, enum pipe pipe,
- enum igt_atomic_crtc_properties prop)
-{
- return display->pipes[pipe].props[prop];
-}
-
/**
* igt_pipe_obj_is_prop_changed:
* @pipe_obj: Pipe object to check.
@@ -994,16 +958,6 @@ igt_pipe_has_prop(igt_display_t *display, enum pipe pipe,
#define igt_pipe_obj_set_prop_changed(pipe_obj, prop) \
(pipe_obj)->changed |= 1 << (prop)
-/**
- * igt_pipe_set_prop_changed:
- * @pipe: Pipe object to check.
- * @prop: Property to check.
- *
- * Sets the given @prop for the @pipe.
- */
-#define igt_pipe_set_prop_changed(display, pipe, prop) \
- igt_pipe_obj_set_prop_changed(&(display)->pipes[(pipe)], prop)
-
/**
* igt_pipe_obj_clear_prop_changed:
* @pipe_obj: Pipe object to check.
@@ -1014,16 +968,6 @@ igt_pipe_has_prop(igt_display_t *display, enum pipe pipe,
#define igt_pipe_obj_clear_prop_changed(pipe_obj, prop) \
(pipe_obj)->changed &= ~(1 << (prop))
-/**
- * igt_pipe_clear_prop_changed:
- * @pipe: Pipe object to check.
- * @prop: Property to check.
- *
- * Clears the given @prop for the @pipe.
- */
-#define igt_pipe_clear_prop_changed(display, pipe, prop) \
- igt_pipe_obj_clear_prop_changed(&(display)->pipes[(pipe)], prop)
-
/**
* igt_pipe_obj_set_prop_value:
* @pipe_obj: Pipe object to check.
@@ -1056,54 +1000,9 @@ extern bool igt_pipe_obj_try_prop_enum(igt_pipe_t *pipe,
extern void igt_pipe_obj_set_prop_enum(igt_pipe_t *pipe,
enum igt_atomic_crtc_properties prop,
const char *val);
-
-/**
- * igt_pipe_try_prop_enum:
- * @pipe: Target pipe.
- * @prop: Property to check.
- * @val: Value to set.
- *
- * Returns: False if the given @pipe doesn't have the enum @prop or
- * failed to set the enum property @val else True.
- */
-#define igt_pipe_try_prop_enum(display, pipe, prop, val) \
- igt_pipe_obj_try_prop_enum(&(display)->pipes[(pipe)], prop, val)
-
-/**
- * igt_pipe_set_prop_enum:
- * @pipe: Target pipe.
- * @prop: Property to check.
- * @val: Value to set.
- *
- * This function tries to set given enum property @prop value @val to
- * the given @pipe, and terminate the execution if its failed.
- */
-#define igt_pipe_set_prop_enum(display, pipe, prop, val) \
- igt_pipe_obj_set_prop_enum(&(display)->pipes[(pipe)], prop, val)
-
extern void igt_pipe_obj_replace_prop_blob(igt_pipe_t *pipe,
enum igt_atomic_crtc_properties prop,
const void *ptr, size_t length);
-
-/**
- * igt_pipe_replace_prop_blob:
- * @pipe: pipe to set property on.
- * @prop: property for which the blob will be replaced.
- * @ptr: Pointer to contents for the property.
- * @length: Length of contents.
- *
- * This function will destroy the old property blob for the given property,
- * and will create a new property blob with the values passed to this function.
- *
- * The new property blob will be committed when you call igt_display_commit(),
- * igt_display_commit2() or igt_display_commit_atomic().
- *
- * Please use igt_output_override_mode() if you want to set #IGT_CRTC_MODE_ID,
- * it works better with legacy commit.
- */
-#define igt_pipe_replace_prop_blob(display, pipe, prop, ptr, length) \
- igt_pipe_obj_replace_prop_blob(&(display)->pipes[(pipe)], prop, ptr, length)
-
void igt_pipe_refresh(igt_display_t *display, enum pipe pipe, bool force);
void igt_enable_connectors(int drm_fd);
--
2.49.1
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH i-g-t 5/8] lib/kms: Turn the igt_plane*prop*() marcos into functions
2025-11-21 19:06 [PATCH i-g-t 0/8] kms: Small cleanups and refactoring Ville Syrjala
` (3 preceding siblings ...)
2025-11-21 19:06 ` [PATCH i-g-t 4/8] igt/kms: Nuke unused igt_pipe_*prop*() marcos and functions Ville Syrjala
@ 2025-11-21 19:06 ` Ville Syrjala
2025-11-21 19:06 ` [PATCH i-g-t 6/8] lib/kms: Turn the igt_output*prop*() " Ville Syrjala
` (7 subsequent siblings)
12 siblings, 0 replies; 19+ messages in thread
From: Ville Syrjala @ 2025-11-21 19:06 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Use functions instead of macros for the plane property stuff.
Macros are generally not type safe, hideous to look at, and
a pain to modify. So using macros when you don't have to
is simply a bad idea.
With the type safe functions we now see that tests/kms_cursor_legacy
was using the wrong macros to set cursor properties. But I guess
in this case the implementation of the wrong macros was close
enough that they actually worked correctly.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
lib/igt_kms.h | 33 ++++++++++++++++++++++-----------
tests/kms_cursor_legacy.c | 4 ++--
2 files changed, 24 insertions(+), 13 deletions(-)
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 91776e73e309..9b2c2a7062fe 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -788,8 +788,11 @@ uint64_t igt_plane_get_prop(igt_plane_t *plane, enum igt_atomic_plane_properties
*
* Check whether a given @prop changed for the @plane.
*/
-#define igt_plane_is_prop_changed(plane, prop) \
- (!!((plane)->changed & (1 << (prop))))
+static inline bool igt_plane_is_prop_changed(igt_plane_t *plane,
+ enum igt_atomic_plane_properties prop)
+{
+ return plane->changed & (1 << prop);
+}
/**
* igt_plane_set_prop_changed:
@@ -798,8 +801,11 @@ uint64_t igt_plane_get_prop(igt_plane_t *plane, enum igt_atomic_plane_properties
*
* Sets the given @prop for the @plane.
*/
-#define igt_plane_set_prop_changed(plane, prop) \
- (plane)->changed |= 1 << (prop)
+static inline void igt_plane_set_prop_changed(igt_plane_t *plane,
+ enum igt_atomic_plane_properties prop)
+{
+ plane->changed |= 1 << prop;
+}
/**
* igt_plane_clear_prop_changed:
@@ -808,8 +814,11 @@ uint64_t igt_plane_get_prop(igt_plane_t *plane, enum igt_atomic_plane_properties
*
* Clears the given @prop for the @plane.
*/
-#define igt_plane_clear_prop_changed(plane, prop) \
- (plane)->changed &= ~(1 << (prop))
+static inline void igt_plane_clear_prop_changed(igt_plane_t *plane,
+ enum igt_atomic_plane_properties prop)
+{
+ plane->changed &= ~(1 << prop);
+}
/**
* igt_plane_set_prop_value:
@@ -819,11 +828,13 @@ uint64_t igt_plane_get_prop(igt_plane_t *plane, enum igt_atomic_plane_properties
*
* Sets the given @prop with the @value for the @plane.
*/
-#define igt_plane_set_prop_value(plane, prop, value) \
- do { \
- plane->values[prop] = value; \
- igt_plane_set_prop_changed(plane, prop); \
- } while (0)
+static inline void igt_plane_set_prop_value(igt_plane_t *plane,
+ enum igt_atomic_plane_properties prop,
+ uint64_t value)
+{
+ plane->values[prop] = value;
+ igt_plane_set_prop_changed(plane, prop);
+}
extern bool igt_plane_try_prop_enum(igt_plane_t *plane,
enum igt_atomic_plane_properties prop,
diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c
index 865853c38fac..ca9e7a4cab00 100644
--- a/tests/kms_cursor_legacy.c
+++ b/tests/kms_cursor_legacy.c
@@ -403,8 +403,8 @@ static igt_plane_t
static void set_cursor_hotspot(igt_plane_t *cursor, int hot_x, int hot_y)
{
- igt_output_set_prop_value(cursor, IGT_PLANE_HOTSPOT_X, hot_x);
- igt_output_set_prop_value(cursor, IGT_PLANE_HOTSPOT_Y, hot_y);
+ igt_plane_set_prop_value(cursor, IGT_PLANE_HOTSPOT_X, hot_x);
+ igt_plane_set_prop_value(cursor, IGT_PLANE_HOTSPOT_Y, hot_y);
}
static void populate_cursor_args(igt_display_t *display, enum pipe pipe,
--
2.49.1
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH i-g-t 6/8] lib/kms: Turn the igt_output*prop*() marcos into functions
2025-11-21 19:06 [PATCH i-g-t 0/8] kms: Small cleanups and refactoring Ville Syrjala
` (4 preceding siblings ...)
2025-11-21 19:06 ` [PATCH i-g-t 5/8] lib/kms: Turn the igt_plane*prop*() marcos into functions Ville Syrjala
@ 2025-11-21 19:06 ` Ville Syrjala
2025-11-21 19:06 ` [PATCH i-g-t 7/8] lib/kms: Turn the igt_pipe_obj*prop*() " Ville Syrjala
` (6 subsequent siblings)
12 siblings, 0 replies; 19+ messages in thread
From: Ville Syrjala @ 2025-11-21 19:06 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Use functions instead of macros for the output property stuff.
Macros are generally not type safe, hideous to look at, and
a pain to modify. So using macros when you don't have to
is simply a bad idea.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
lib/igt_kms.h | 33 ++++++++++++++++++++++-----------
1 file changed, 22 insertions(+), 11 deletions(-)
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 9b2c2a7062fe..8fbc78aa5b75 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -874,8 +874,11 @@ uint64_t igt_output_get_prop(igt_output_t *output, enum igt_atomic_connector_pro
*
* Check whether a given @prop changed for the @Output.
*/
-#define igt_output_is_prop_changed(output, prop) \
- (!!((output)->changed & (1 << (prop))))
+static inline bool igt_output_is_prop_changed(igt_output_t *output,
+ enum igt_atomic_connector_properties prop)
+{
+ return output->changed & (1 << prop);
+}
/**
* igt_output_set_prop_changed:
@@ -884,8 +887,11 @@ uint64_t igt_output_get_prop(igt_output_t *output, enum igt_atomic_connector_pro
*
* Sets the given @prop for the @output.
*/
-#define igt_output_set_prop_changed(output, prop) \
- (output)->changed |= 1 << (prop)
+static inline void igt_output_set_prop_changed(igt_output_t *output,
+ enum igt_atomic_connector_properties prop)
+{
+ output->changed |= 1 << prop;
+}
/**
* igt_output_clear_prop_changed:
@@ -894,8 +900,11 @@ uint64_t igt_output_get_prop(igt_output_t *output, enum igt_atomic_connector_pro
*
* Clears the given @prop for the @output.
*/
-#define igt_output_clear_prop_changed(output, prop) \
- (output)->changed &= ~(1 << (prop))
+static inline void igt_output_clear_prop_changed(igt_output_t *output,
+ enum igt_atomic_connector_properties prop)
+{
+ output->changed &= ~(1 << prop);
+}
/**
* igt_output_set_prop_value:
@@ -905,11 +914,13 @@ uint64_t igt_output_get_prop(igt_output_t *output, enum igt_atomic_connector_pro
*
* Sets the given @prop with the @value for the @output.
*/
-#define igt_output_set_prop_value(output, prop, value) \
- do { \
- (output)->values[prop] = (value); \
- igt_output_set_prop_changed(output, prop); \
- } while (0)
+static inline void igt_output_set_prop_value(igt_output_t *output,
+ enum igt_atomic_connector_properties prop,
+ uint64_t value)
+{
+ output->values[prop] = value;
+ igt_output_set_prop_changed(output, prop);
+}
extern bool igt_output_try_prop_enum(igt_output_t *output,
enum igt_atomic_connector_properties prop,
--
2.49.1
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH i-g-t 7/8] lib/kms: Turn the igt_pipe_obj*prop*() marcos into functions
2025-11-21 19:06 [PATCH i-g-t 0/8] kms: Small cleanups and refactoring Ville Syrjala
` (5 preceding siblings ...)
2025-11-21 19:06 ` [PATCH i-g-t 6/8] lib/kms: Turn the igt_output*prop*() " Ville Syrjala
@ 2025-11-21 19:06 ` Ville Syrjala
2025-11-21 19:06 ` [PATCH i-g-t 8/8] test/kms_color: Don't dig around in display->pipes[] so much Ville Syrjala
` (5 subsequent siblings)
12 siblings, 0 replies; 19+ messages in thread
From: Ville Syrjala @ 2025-11-21 19:06 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Use functions instead of macros for the crtc property stuff.
Macros are generally not type safe, hideous to look at, and
a pain to modify. So using macros when you don't have to
is simply a bad idea.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
lib/igt_kms.h | 50 +++++++++++++++++++++++++++++++++++---------------
1 file changed, 35 insertions(+), 15 deletions(-)
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 8fbc78aa5b75..66168e7b732c 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -957,8 +957,11 @@ uint64_t igt_pipe_obj_get_prop(igt_pipe_t *pipe, enum igt_atomic_crtc_properties
*
* Check whether a given @prop changed for the @pipe_obj.
*/
-#define igt_pipe_obj_is_prop_changed(pipe_obj, prop) \
- (!!((pipe_obj)->changed & (1 << (prop))))
+static inline bool igt_pipe_obj_is_prop_changed(igt_pipe_t *pipe_obj,
+ enum igt_atomic_crtc_properties prop)
+{
+ return pipe_obj->changed & (1 << prop);
+}
/**
* igt_pipe_is_prop_changed:
@@ -967,8 +970,12 @@ uint64_t igt_pipe_obj_get_prop(igt_pipe_t *pipe, enum igt_atomic_crtc_properties
*
* Check whether a given @prop changed for the @pipe.
*/
-#define igt_pipe_is_prop_changed(display, pipe, prop) \
- igt_pipe_obj_is_prop_changed(&(display)->pipes[(pipe)], prop)
+static inline bool igt_pipe_is_prop_changed(igt_display_t *display,
+ enum pipe pipe,
+ enum igt_atomic_crtc_properties prop)
+{
+ return igt_pipe_obj_is_prop_changed(&display->pipes[pipe], prop);
+}
/**
* igt_pipe_obj_set_prop_changed:
@@ -977,8 +984,11 @@ uint64_t igt_pipe_obj_get_prop(igt_pipe_t *pipe, enum igt_atomic_crtc_properties
*
* Sets the given @prop for the @pipe_obj.
*/
-#define igt_pipe_obj_set_prop_changed(pipe_obj, prop) \
- (pipe_obj)->changed |= 1 << (prop)
+static inline void igt_pipe_obj_set_prop_changed(igt_pipe_t *pipe_obj,
+ enum igt_atomic_crtc_properties prop)
+{
+ pipe_obj->changed |= 1 << prop;
+}
/**
* igt_pipe_obj_clear_prop_changed:
@@ -987,8 +997,11 @@ uint64_t igt_pipe_obj_get_prop(igt_pipe_t *pipe, enum igt_atomic_crtc_properties
*
* Clears the given @prop for the @pipe_obj.
*/
-#define igt_pipe_obj_clear_prop_changed(pipe_obj, prop) \
- (pipe_obj)->changed &= ~(1 << (prop))
+static inline void igt_pipe_obj_clear_prop_changed(igt_pipe_t *pipe_obj,
+ enum igt_atomic_crtc_properties prop)
+{
+ pipe_obj->changed &= ~(1 << prop);
+}
/**
* igt_pipe_obj_set_prop_value:
@@ -998,11 +1011,13 @@ uint64_t igt_pipe_obj_get_prop(igt_pipe_t *pipe, enum igt_atomic_crtc_properties
*
* Sets the given @prop with the @value for the @pipe_obj.
*/
-#define igt_pipe_obj_set_prop_value(pipe_obj, prop, value) \
- do { \
- (pipe_obj)->values[prop] = (value); \
- igt_pipe_obj_set_prop_changed(pipe_obj, prop); \
- } while (0)
+static inline void igt_pipe_obj_set_prop_value(igt_pipe_t *pipe_obj,
+ enum igt_atomic_crtc_properties prop,
+ uint64_t value)
+{
+ pipe_obj->values[prop] = value;
+ igt_pipe_obj_set_prop_changed(pipe_obj, prop);
+}
/**
* igt_pipe_set_prop_value:
@@ -1012,8 +1027,13 @@ uint64_t igt_pipe_obj_get_prop(igt_pipe_t *pipe, enum igt_atomic_crtc_properties
*
* Sets the given @prop with the @value for the @pipe.
*/
-#define igt_pipe_set_prop_value(display, pipe, prop, value) \
- igt_pipe_obj_set_prop_value(&(display)->pipes[(pipe)], prop, value)
+static inline void igt_pipe_set_prop_value(igt_display_t *display,
+ enum pipe pipe,
+ enum igt_atomic_crtc_properties prop,
+ uint64_t value)
+{
+ igt_pipe_obj_set_prop_value(&display->pipes[pipe], prop, value);
+}
extern bool igt_pipe_obj_try_prop_enum(igt_pipe_t *pipe,
enum igt_atomic_crtc_properties prop,
--
2.49.1
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH i-g-t 8/8] test/kms_color: Don't dig around in display->pipes[] so much
2025-11-21 19:06 [PATCH i-g-t 0/8] kms: Small cleanups and refactoring Ville Syrjala
` (6 preceding siblings ...)
2025-11-21 19:06 ` [PATCH i-g-t 7/8] lib/kms: Turn the igt_pipe_obj*prop*() " Ville Syrjala
@ 2025-11-21 19:06 ` Ville Syrjala
2025-11-24 9:34 ` [PATCH i-g-t 0/8] kms: Small cleanups and refactoring Jani Nikula
` (4 subsequent siblings)
12 siblings, 0 replies; 19+ messages in thread
From: Ville Syrjala @ 2025-11-21 19:06 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Don't take pointless detours via display->pipes[] when
we don't have to. My plan is to completely hide the
display->pipes[] stuff inside igt_kms.[ch]. Getting
rid of the completely pointless uses is the first step.
Done with cocci:
\#include "scripts/iterators.cocci"
@plane@
igt_display_t *display;
igt_plane_t *plane;
identifier M;
@@
(
- display->pipes[plane->pipe->pipe].M
+ plane->pipe->M
|
- &display->pipes[plane->pipe->pipe]
+ plane->pipe
)
@depends on plane@
expression E;
identifier display;
@@
- igt_display_t *display = E;
... when != display;
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
tests/kms_color.c | 25 ++++++++++---------------
1 file changed, 10 insertions(+), 15 deletions(-)
diff --git a/tests/kms_color.c b/tests/kms_color.c
index 16155bc4bcaf..42dce9a0e5e9 100644
--- a/tests/kms_color.c
+++ b/tests/kms_color.c
@@ -82,7 +82,6 @@ static bool test_pipe_degamma(data_t *data,
igt_plane_t *primary)
{
igt_output_t *output = data->output;
- igt_display_t *display = &data->display;
gamma_lut_t *degamma_linear, *degamma_full;
color_t red_green_blue[] = {
{ 1.0, 0.0, 0.0 },
@@ -132,7 +131,7 @@ static bool test_pipe_degamma(data_t *data,
igt_plane_set_fb(primary, &fb);
igt_display_commit(&data->display);
igt_wait_for_vblank(data->drm_fd,
- display->pipes[primary->pipe->pipe].crtc_offset);
+ primary->pipe->crtc_offset);
igt_pipe_crc_collect_crc(data->pipe_crc, &crc_fullcolors);
/*
@@ -144,7 +143,7 @@ static bool test_pipe_degamma(data_t *data,
set_degamma(data, primary->pipe, degamma_full);
igt_display_commit(&data->display);
igt_wait_for_vblank(data->drm_fd,
- display->pipes[primary->pipe->pipe].crtc_offset);
+ primary->pipe->crtc_offset);
igt_pipe_crc_collect_crc(data->pipe_crc, &crc_fullgamma);
/*
@@ -174,7 +173,6 @@ static bool test_pipe_gamma(data_t *data,
igt_plane_t *primary)
{
igt_output_t *output = data->output;
- igt_display_t *display = &data->display;
gamma_lut_t *gamma_full;
color_t red_green_blue[] = {
{ 1.0, 0.0, 0.0 },
@@ -222,7 +220,7 @@ static bool test_pipe_gamma(data_t *data,
igt_plane_set_fb(primary, &fb);
igt_display_commit(&data->display);
igt_wait_for_vblank(data->drm_fd,
- display->pipes[primary->pipe->pipe].crtc_offset);
+ primary->pipe->crtc_offset);
igt_pipe_crc_collect_crc(data->pipe_crc, &crc_fullcolors);
/*
@@ -233,7 +231,7 @@ static bool test_pipe_gamma(data_t *data,
igt_plane_set_fb(primary, &fb);
igt_display_commit(&data->display);
igt_wait_for_vblank(data->drm_fd,
- display->pipes[primary->pipe->pipe].crtc_offset);
+ primary->pipe->crtc_offset);
igt_pipe_crc_collect_crc(data->pipe_crc, &crc_fullgamma);
/*
@@ -263,7 +261,6 @@ static bool test_pipe_legacy_gamma(data_t *data,
igt_plane_t *primary)
{
igt_output_t *output = data->output;
- igt_display_t *display = &data->display;
color_t red_green_blue[] = {
{ 1.0, 0.0, 0.0 },
{ 0.0, 1.0, 0.0 },
@@ -319,7 +316,7 @@ static bool test_pipe_legacy_gamma(data_t *data,
igt_plane_set_fb(primary, &fb);
igt_display_commit(&data->display);
igt_wait_for_vblank(data->drm_fd,
- display->pipes[primary->pipe->pipe].crtc_offset);
+ primary->pipe->crtc_offset);
igt_pipe_crc_collect_crc(data->pipe_crc, &crc_fullcolors);
/*
@@ -336,7 +333,7 @@ static bool test_pipe_legacy_gamma(data_t *data,
legacy_lut_size, red_lut, green_lut, blue_lut), 0);
igt_display_commit(&data->display);
igt_wait_for_vblank(data->drm_fd,
- display->pipes[primary->pipe->pipe].crtc_offset);
+ primary->pipe->crtc_offset);
igt_pipe_crc_collect_crc(data->pipe_crc, &crc_fullgamma);
/*
@@ -518,7 +515,6 @@ static bool test_pipe_ctm(data_t *data,
gamma_lut_t *degamma_linear = NULL, *gamma_linear = NULL;
igt_output_t *output = data->output;
bool ret = true;
- igt_display_t *display = &data->display;
drmModeModeInfo *mode = data->mode;
struct igt_fb fb_modeset, fb;
igt_crc_t crc_software, crc_hardware;
@@ -579,7 +575,7 @@ static bool test_pipe_ctm(data_t *data,
set_ctm(primary->pipe, ctm_identity);
igt_display_commit(&data->display);
igt_wait_for_vblank(data->drm_fd,
- display->pipes[primary->pipe->pipe].crtc_offset);
+ primary->pipe->crtc_offset);
igt_pipe_crc_collect_crc(data->pipe_crc, &crc_software);
/* With CTM transformation. */
@@ -588,7 +584,7 @@ static bool test_pipe_ctm(data_t *data,
set_ctm(primary->pipe, ctm_matrix);
igt_display_commit(&data->display);
igt_wait_for_vblank(data->drm_fd,
- display->pipes[primary->pipe->pipe].crtc_offset);
+ primary->pipe->crtc_offset);
igt_pipe_crc_collect_crc(data->pipe_crc, &crc_hardware);
/*
@@ -645,7 +641,6 @@ static void test_pipe_limited_range_ctm(data_t *data,
gamma_lut_t *degamma_linear, *gamma_linear;
igt_output_t *output;
bool has_broadcast_rgb_output = false;
- igt_display_t *display = &data->display;
degamma_linear = generate_table(data->degamma_lut_size, 1.0);
gamma_linear = generate_table(data->gamma_lut_size, 1.0);
@@ -691,7 +686,7 @@ static void test_pipe_limited_range_ctm(data_t *data,
igt_plane_set_fb(primary, &fb);
igt_display_commit(&data->display);
igt_wait_for_vblank(data->drm_fd,
- display->pipes[primary->pipe->pipe].crtc_offset);
+ primary->pipe->crtc_offset);
igt_pipe_crc_collect_crc(data->pipe_crc, &crc_full);
/* Set the output into limited range. */
@@ -700,7 +695,7 @@ static void test_pipe_limited_range_ctm(data_t *data,
igt_plane_set_fb(primary, &fb);
igt_display_commit(&data->display);
igt_wait_for_vblank(data->drm_fd,
- display->pipes[primary->pipe->pipe].crtc_offset);
+ primary->pipe->crtc_offset);
igt_pipe_crc_collect_crc(data->pipe_crc, &crc_limited);
/* And reset.. */
--
2.49.1
^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t 2/8] lib/kms: Nuke PIPE_ANY
2025-11-21 19:06 ` [PATCH i-g-t 2/8] lib/kms: Nuke PIPE_ANY Ville Syrjala
@ 2025-11-24 7:25 ` Sharma, Swati2
0 siblings, 0 replies; 19+ messages in thread
From: Sharma, Swati2 @ 2025-11-24 7:25 UTC (permalink / raw)
To: Ville Syrjala, igt-dev
Hi Ville,
On 22-11-2025 12:36 am, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> For some reason we have two names for the same
> enum value (PIPE_NONE and PIPE_ANY). Get rid of
> the less used one.
Patch LGTM
Reviewed-by: Swati Sharma <swati2.sharma@intel.com>
>
> Done with cocci:
> @@
> @@
> enum pipe {
> ...,
> - PIPE_ANY = PIPE_NONE,
> ...
> };
>
> @@
> @@
> - PIPE_ANY
> + PIPE_NONE
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> lib/igt_kms.h | 1 -
> tests/intel/kms_fb_coherency.c | 2 +-
> tests/intel/kms_flip_tiling.c | 2 +-
> tests/intel/perf_pmu.c | 2 +-
> tests/intel/prime_mmap_kms.c | 2 +-
> tests/kms_flip_event_leak.c | 2 +-
> tests/kms_plane_multiple.c | 2 +-
> tests/vmwgfx/vmw_prime.c | 2 +-
> 8 files changed, 7 insertions(+), 8 deletions(-)
>
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index f7ff0b17eb02..e1241342a0c9 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -72,7 +72,6 @@
> */
> enum pipe {
> PIPE_NONE = -1,
> - PIPE_ANY = PIPE_NONE,
> PIPE_A = 0,
> PIPE_B,
> PIPE_C,
> diff --git a/tests/intel/kms_fb_coherency.c b/tests/intel/kms_fb_coherency.c
> index 573037db1102..5f5bf7b8e9df 100644
> --- a/tests/intel/kms_fb_coherency.c
> +++ b/tests/intel/kms_fb_coherency.c
> @@ -144,7 +144,7 @@ static void cleanup_crtc(data_t *data)
>
> igt_plane_set_fb(data->primary, NULL);
>
> - igt_output_set_pipe(output, PIPE_ANY);
> + igt_output_set_pipe(output, PIPE_NONE);
> igt_display_commit(display);
>
> igt_remove_fb(data->drm_fd, &data->fb[0]);
> diff --git a/tests/intel/kms_flip_tiling.c b/tests/intel/kms_flip_tiling.c
> index d078653e9d91..a6a162b94817 100644
> --- a/tests/intel/kms_flip_tiling.c
> +++ b/tests/intel/kms_flip_tiling.c
> @@ -176,7 +176,7 @@ static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t *output)
> /* Clean up. */
> igt_plane_set_fb(primary, NULL);
> pipe_crc_free(data);
> - igt_output_set_pipe(output, PIPE_ANY);
> + igt_output_set_pipe(output, PIPE_NONE);
>
> igt_remove_fb(data->drm_fd, &data->fb[0]);
> igt_remove_fb(data->drm_fd, &data->fb[1]);
> diff --git a/tests/intel/perf_pmu.c b/tests/intel/perf_pmu.c
> index bf43da8db57b..e06ddafaf4e6 100644
> --- a/tests/intel/perf_pmu.c
> +++ b/tests/intel/perf_pmu.c
> @@ -1079,7 +1079,7 @@ static void cleanup_crtc(data_t *data, int fd, igt_output_t *output)
> primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> igt_plane_set_fb(primary, NULL);
>
> - igt_output_set_pipe(output, PIPE_ANY);
> + igt_output_set_pipe(output, PIPE_NONE);
> igt_display_commit(display);
> }
>
> diff --git a/tests/intel/prime_mmap_kms.c b/tests/intel/prime_mmap_kms.c
> index c0c2f2fc0e00..a8d84f034d94 100644
> --- a/tests/intel/prime_mmap_kms.c
> +++ b/tests/intel/prime_mmap_kms.c
> @@ -161,7 +161,7 @@ static void cleanup_crtc(gpu_process_t *gpu)
>
> igt_plane_set_fb(gpu->primary, NULL);
>
> - igt_output_set_pipe(output, PIPE_ANY);
> + igt_output_set_pipe(output, PIPE_NONE);
> igt_display_commit(display);
>
> igt_remove_fb(gpu->drm_fd, &gpu->fb);
> diff --git a/tests/kms_flip_event_leak.c b/tests/kms_flip_event_leak.c
> index 71b58b4dfe31..d88b08d16dbc 100644
> --- a/tests/kms_flip_event_leak.c
> +++ b/tests/kms_flip_event_leak.c
> @@ -97,7 +97,7 @@ static void test(data_t *data, enum pipe pipe, igt_output_t *output)
> igt_device_set_master(data->drm_fd);
>
> igt_plane_set_fb(primary, NULL);
> - igt_output_set_pipe(output, PIPE_ANY);
> + igt_output_set_pipe(output, PIPE_NONE);
> igt_display_commit(&data->display);
>
> igt_remove_fb(data->drm_fd, &fb[0]);
> diff --git a/tests/kms_plane_multiple.c b/tests/kms_plane_multiple.c
> index 4e6ca780a6ed..947a0e6bc591 100644
> --- a/tests/kms_plane_multiple.c
> +++ b/tests/kms_plane_multiple.c
> @@ -120,7 +120,7 @@ static void test_init(data_t *data, enum pipe pipe, int n_planes)
> static void test_fini(data_t *data, igt_output_t *output, int n_planes)
> {
> /* reset the constraint on the pipe */
> - igt_output_set_pipe(output, PIPE_ANY);
> + igt_output_set_pipe(output, PIPE_NONE);
>
> igt_pipe_crc_free(data->pipe_crc1);
> data->pipe_crc1 = NULL;
> diff --git a/tests/vmwgfx/vmw_prime.c b/tests/vmwgfx/vmw_prime.c
> index 5c39ff1a4d45..5f0556c0c6a8 100644
> --- a/tests/vmwgfx/vmw_prime.c
> +++ b/tests/vmwgfx/vmw_prime.c
> @@ -185,7 +185,7 @@ static void cleanup_crtc(struct gpu_process_t *gpu)
>
> igt_plane_set_fb(gpu->primary, NULL);
>
> - igt_output_set_pipe(output, PIPE_ANY);
> + igt_output_set_pipe(output, PIPE_NONE);
> igt_display_commit(display);
>
> igt_remove_fb(gpu->mdevice.drm_fd, &gpu->fb);
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t 3/8] lib/kms: Nuke unused kmstest_{crtc,plane}
2025-11-21 19:06 ` [PATCH i-g-t 3/8] lib/kms: Nuke unused kmstest_{crtc,plane} Ville Syrjala
@ 2025-11-24 7:27 ` Sharma, Swati2
0 siblings, 0 replies; 19+ messages in thread
From: Sharma, Swati2 @ 2025-11-24 7:27 UTC (permalink / raw)
To: Ville Syrjala, igt-dev
Hi Ville,
On 22-11-2025 12:36 am, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> struct kmstest_plane and struct kmstest_crtc are unused.
> Get rid of them.
Patch LGTM
Reviewed-by: Swati Sharma <swati2.sharma@intel.com>
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> lib/igt_kms.h | 20 --------------------
> 1 file changed, 20 deletions(-)
>
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index e1241342a0c9..c9216dd5bdbe 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -214,26 +214,6 @@ struct kmstest_connector_config {
> char *connector_path;
> };
>
> -struct kmstest_plane {
> - int id;
> - int index;
> - int type;
> - int pos_x;
> - int pos_y;
> - int width;
> - int height;
> -};
> -
> -struct kmstest_crtc {
> - int id;
> - int pipe;
> - bool active;
> - int width;
> - int height;
> - int n_planes;
> - struct kmstest_plane *planes;
> -};
> -
> /**
> * kmstest_force_connector_state:
> * @FORCE_CONNECTOR_UNSPECIFIED: Unspecified
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t 0/8] kms: Small cleanups and refactoring
2025-11-21 19:06 [PATCH i-g-t 0/8] kms: Small cleanups and refactoring Ville Syrjala
` (7 preceding siblings ...)
2025-11-21 19:06 ` [PATCH i-g-t 8/8] test/kms_color: Don't dig around in display->pipes[] so much Ville Syrjala
@ 2025-11-24 9:34 ` Jani Nikula
2025-11-25 5:48 ` ✓ Xe.CI.BAT: success for " Patchwork
` (3 subsequent siblings)
12 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2025-11-24 9:34 UTC (permalink / raw)
To: Ville Syrjala, igt-dev
On Fri, 21 Nov 2025, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Some fairly trivial cleanups and some refactoring.
Did not do detailed review, but, FWIW,
Acked-by: Jani Nikula <jani.nikula@intel.com>
on the series.
>
> Ville Syrjälä (8):
> igt: Name drmModeCrtc variables 'drm_crtc'
> lib/kms: Nuke PIPE_ANY
> lib/kms: Nuke unused kmstest_{crtc,plane}
> igt/kms: Nuke unused igt_pipe_*prop*() marcos and functions
> lib/kms: Turn the igt_plane*prop*() marcos into functions
> lib/kms: Turn the igt_output*prop*() marcos into functions
> lib/kms: Turn the igt_pipe_obj*prop*() marcos into functions
> test/kms_color: Don't dig around in display->pipes[] so much
>
> lib/igt_kms.c | 10 +-
> lib/igt_kms.h | 238 ++++++++++--------------------
> tests/intel/kms_fb_coherency.c | 2 +-
> tests/intel/kms_flip_scaled_crc.c | 8 +-
> tests/intel/kms_flip_tiling.c | 2 +-
> tests/intel/perf_pmu.c | 2 +-
> tests/intel/prime_mmap_kms.c | 2 +-
> tests/kms_atomic.c | 25 ++--
> tests/kms_color.c | 41 +++--
> tests/kms_cursor_legacy.c | 4 +-
> tests/kms_flip_event_leak.c | 2 +-
> tests/kms_lease.c | 14 +-
> tests/kms_plane.c | 16 +-
> tests/kms_plane_multiple.c | 2 +-
> tests/kms_rmfb.c | 14 +-
> tests/vmwgfx/vmw_prime.c | 2 +-
> tools/msm_dp_compliance.c | 12 +-
> 17 files changed, 156 insertions(+), 240 deletions(-)
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t 1/8] igt: Name drmModeCrtc variables 'drm_crtc'
2025-11-21 19:06 ` [PATCH i-g-t 1/8] igt: Name drmModeCrtc variables 'drm_crtc' Ville Syrjala
@ 2025-11-24 9:37 ` Jani Nikula
2025-11-24 21:11 ` Ville Syrjälä
0 siblings, 1 reply; 19+ messages in thread
From: Jani Nikula @ 2025-11-24 9:37 UTC (permalink / raw)
To: Ville Syrjala, igt-dev
On Fri, 21 Nov 2025, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> The current situation with pipes vs. crtcs is a giant mess.
> In order to untangle things properly I think we need to
> move away from the pipe stuff into a more pure crtc world.
>
> I suspect the best way to get there is by renaming igt_pipe_t
> into igt_crtc_t and making everyone use it instead of the raw
> index/pipe numbers. And presumable we'll want to call the
> igt_crtc_t variables 'crtc', so let's clear out the namespace
> for that by using 'drm_crtc' as the variable name for the
> lower level drmModeCrtc stuff.
For clarity, I suppose also s/crtc_offset/crtc_index/g for the member in
igt_pipe_t (igt_crtc_t) would be in order as follow-up.
BR,
Jani.
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t 4/8] igt/kms: Nuke unused igt_pipe_*prop*() marcos and functions
2025-11-21 19:06 ` [PATCH i-g-t 4/8] igt/kms: Nuke unused igt_pipe_*prop*() marcos and functions Ville Syrjala
@ 2025-11-24 12:19 ` Sharma, Swati2
0 siblings, 0 replies; 19+ messages in thread
From: Sharma, Swati2 @ 2025-11-24 12:19 UTC (permalink / raw)
To: Ville Syrjala, igt-dev
Hi Ville,
On 22-11-2025 12:36 am, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> We have a bunch of unused macros and functions related to
> crtc property handling. Nuke them all.
Patch LGTM
Reviewed-by: Swati Sharma <swati2.sharma@intel.com>
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> lib/igt_kms.h | 101 --------------------------------------------------
> 1 file changed, 101 deletions(-)
>
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index c9216dd5bdbe..91776e73e309 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -928,42 +928,6 @@ igt_pipe_obj_has_prop(igt_pipe_t *pipe, enum igt_atomic_crtc_properties prop)
>
> uint64_t igt_pipe_obj_get_prop(igt_pipe_t *pipe, enum igt_atomic_crtc_properties prop);
>
> -/**
> - * igt_pipe_get_prop:
> - * @display: Pointer to display.
> - * @pipe: Target pipe.
> - * @prop: Property to return.
> - *
> - * Return current value on a pipe for a given property.
> - *
> - * Returns: The value the property is set to, if this
> - * is a blob, the blob id is returned. This can be passed
> - * to drmModeGetPropertyBlob() to get the contents of the blob.
> - */
> -static inline uint64_t
> -igt_pipe_get_prop(igt_display_t *display, enum pipe pipe,
> - enum igt_atomic_crtc_properties prop)
> -{
> - return igt_pipe_obj_get_prop(&display->pipes[pipe], prop);
> -}
> -
> -/**
> - * igt_pipe_has_prop:
> - * @display: Pointer to display.
> - * @pipe: Pipe to check.
> - * @prop: Property to check.
> - *
> - * Check whether pipe supports a given property.
> - *
> - * Returns: True if the property is supported, otherwise false.
> - */
> -static inline bool
> -igt_pipe_has_prop(igt_display_t *display, enum pipe pipe,
> - enum igt_atomic_crtc_properties prop)
> -{
> - return display->pipes[pipe].props[prop];
> -}
> -
> /**
> * igt_pipe_obj_is_prop_changed:
> * @pipe_obj: Pipe object to check.
> @@ -994,16 +958,6 @@ igt_pipe_has_prop(igt_display_t *display, enum pipe pipe,
> #define igt_pipe_obj_set_prop_changed(pipe_obj, prop) \
> (pipe_obj)->changed |= 1 << (prop)
>
> -/**
> - * igt_pipe_set_prop_changed:
> - * @pipe: Pipe object to check.
> - * @prop: Property to check.
> - *
> - * Sets the given @prop for the @pipe.
> - */
> -#define igt_pipe_set_prop_changed(display, pipe, prop) \
> - igt_pipe_obj_set_prop_changed(&(display)->pipes[(pipe)], prop)
> -
> /**
> * igt_pipe_obj_clear_prop_changed:
> * @pipe_obj: Pipe object to check.
> @@ -1014,16 +968,6 @@ igt_pipe_has_prop(igt_display_t *display, enum pipe pipe,
> #define igt_pipe_obj_clear_prop_changed(pipe_obj, prop) \
> (pipe_obj)->changed &= ~(1 << (prop))
>
> -/**
> - * igt_pipe_clear_prop_changed:
> - * @pipe: Pipe object to check.
> - * @prop: Property to check.
> - *
> - * Clears the given @prop for the @pipe.
> - */
> -#define igt_pipe_clear_prop_changed(display, pipe, prop) \
> - igt_pipe_obj_clear_prop_changed(&(display)->pipes[(pipe)], prop)
> -
> /**
> * igt_pipe_obj_set_prop_value:
> * @pipe_obj: Pipe object to check.
> @@ -1056,54 +1000,9 @@ extern bool igt_pipe_obj_try_prop_enum(igt_pipe_t *pipe,
> extern void igt_pipe_obj_set_prop_enum(igt_pipe_t *pipe,
> enum igt_atomic_crtc_properties prop,
> const char *val);
> -
> -/**
> - * igt_pipe_try_prop_enum:
> - * @pipe: Target pipe.
> - * @prop: Property to check.
> - * @val: Value to set.
> - *
> - * Returns: False if the given @pipe doesn't have the enum @prop or
> - * failed to set the enum property @val else True.
> - */
> -#define igt_pipe_try_prop_enum(display, pipe, prop, val) \
> - igt_pipe_obj_try_prop_enum(&(display)->pipes[(pipe)], prop, val)
> -
> -/**
> - * igt_pipe_set_prop_enum:
> - * @pipe: Target pipe.
> - * @prop: Property to check.
> - * @val: Value to set.
> - *
> - * This function tries to set given enum property @prop value @val to
> - * the given @pipe, and terminate the execution if its failed.
> - */
> -#define igt_pipe_set_prop_enum(display, pipe, prop, val) \
> - igt_pipe_obj_set_prop_enum(&(display)->pipes[(pipe)], prop, val)
> -
> extern void igt_pipe_obj_replace_prop_blob(igt_pipe_t *pipe,
> enum igt_atomic_crtc_properties prop,
> const void *ptr, size_t length);
> -
> -/**
> - * igt_pipe_replace_prop_blob:
> - * @pipe: pipe to set property on.
> - * @prop: property for which the blob will be replaced.
> - * @ptr: Pointer to contents for the property.
> - * @length: Length of contents.
> - *
> - * This function will destroy the old property blob for the given property,
> - * and will create a new property blob with the values passed to this function.
> - *
> - * The new property blob will be committed when you call igt_display_commit(),
> - * igt_display_commit2() or igt_display_commit_atomic().
> - *
> - * Please use igt_output_override_mode() if you want to set #IGT_CRTC_MODE_ID,
> - * it works better with legacy commit.
> - */
> -#define igt_pipe_replace_prop_blob(display, pipe, prop, ptr, length) \
> - igt_pipe_obj_replace_prop_blob(&(display)->pipes[(pipe)], prop, ptr, length)
> -
> void igt_pipe_refresh(igt_display_t *display, enum pipe pipe, bool force);
>
> void igt_enable_connectors(int drm_fd);
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t 1/8] igt: Name drmModeCrtc variables 'drm_crtc'
2025-11-24 9:37 ` Jani Nikula
@ 2025-11-24 21:11 ` Ville Syrjälä
0 siblings, 0 replies; 19+ messages in thread
From: Ville Syrjälä @ 2025-11-24 21:11 UTC (permalink / raw)
To: Jani Nikula; +Cc: igt-dev
On Mon, Nov 24, 2025 at 11:37:23AM +0200, Jani Nikula wrote:
> On Fri, 21 Nov 2025, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> >
> > The current situation with pipes vs. crtcs is a giant mess.
> > In order to untangle things properly I think we need to
> > move away from the pipe stuff into a more pure crtc world.
> >
> > I suspect the best way to get there is by renaming igt_pipe_t
> > into igt_crtc_t and making everyone use it instead of the raw
> > index/pipe numbers. And presumable we'll want to call the
> > igt_crtc_t variables 'crtc', so let's clear out the namespace
> > for that by using 'drm_crtc' as the variable name for the
> > lower level drmModeCrtc stuff.
>
> For clarity, I suppose also s/crtc_offset/crtc_index/g for the member in
> igt_pipe_t (igt_crtc_t) would be in order as follow-up.
Yeah, IIRC I have that in one of my wip cocci scripts as well.
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ Xe.CI.BAT: success for kms: Small cleanups and refactoring
2025-11-21 19:06 [PATCH i-g-t 0/8] kms: Small cleanups and refactoring Ville Syrjala
` (8 preceding siblings ...)
2025-11-24 9:34 ` [PATCH i-g-t 0/8] kms: Small cleanups and refactoring Jani Nikula
@ 2025-11-25 5:48 ` Patchwork
2025-11-25 5:52 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
12 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-11-25 5:48 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 939 bytes --]
== Series Details ==
Series: kms: Small cleanups and refactoring
URL : https://patchwork.freedesktop.org/series/157930/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8637_BAT -> XEIGTPW_14100_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 11)
------------------------------
Missing (1): bat-pvc-2
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8637 -> IGTPW_14100
IGTPW_14100: a77dace22491ff7d0d9bc885a598acd0efb34d4f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8637: 730ee3dfb26f8d7891fc240b0132a08c5bc7b949 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4141-c701e79730169fab373fba7e759497d755fac592: c701e79730169fab373fba7e759497d755fac592
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/index.html
[-- Attachment #2: Type: text/html, Size: 1484 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ i915.CI.BAT: success for kms: Small cleanups and refactoring
2025-11-21 19:06 [PATCH i-g-t 0/8] kms: Small cleanups and refactoring Ville Syrjala
` (9 preceding siblings ...)
2025-11-25 5:48 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2025-11-25 5:52 ` Patchwork
2025-11-25 8:57 ` ✗ Xe.CI.Full: failure " Patchwork
2025-11-25 12:10 ` ✗ i915.CI.Full: " Patchwork
12 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-11-25 5:52 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3283 bytes --]
== Series Details ==
Series: kms: Small cleanups and refactoring
URL : https://patchwork.freedesktop.org/series/157930/
State : success
== Summary ==
CI Bug Log - changes from IGT_8637 -> IGTPW_14100
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/index.html
Participating hosts (44 -> 44)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_14100 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/bat-dg2-9/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [DMESG-FAIL][3] ([i915#12061]) -> [PASS][4] +1 other test pass
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-adlp-9: [FAIL][5] ([i915#15318]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/bat-adlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/bat-adlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-atsm-1: [DMESG-FAIL][7] ([i915#12061] / [i915#13929]) -> [DMESG-FAIL][8] ([i915#12061] / [i915#14204])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/bat-atsm-1/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/bat-atsm-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@mman:
- bat-atsm-1: [DMESG-FAIL][9] ([i915#13929]) -> [DMESG-FAIL][10] ([i915#14204])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/bat-atsm-1/igt@i915_selftest@live@mman.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/bat-atsm-1/igt@i915_selftest@live@mman.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929
[i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204
[i915#15318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15318
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8637 -> IGTPW_14100
CI-20190529: 20190529
CI_DRM_17580: c701e79730169fab373fba7e759497d755fac592 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14100: a77dace22491ff7d0d9bc885a598acd0efb34d4f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8637: 730ee3dfb26f8d7891fc240b0132a08c5bc7b949 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/index.html
[-- Attachment #2: Type: text/html, Size: 4365 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Xe.CI.Full: failure for kms: Small cleanups and refactoring
2025-11-21 19:06 [PATCH i-g-t 0/8] kms: Small cleanups and refactoring Ville Syrjala
` (10 preceding siblings ...)
2025-11-25 5:52 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-11-25 8:57 ` Patchwork
2025-11-25 12:10 ` ✗ i915.CI.Full: " Patchwork
12 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-11-25 8:57 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 97316 bytes --]
== Series Details ==
Series: kms: Small cleanups and refactoring
URL : https://patchwork.freedesktop.org/series/157930/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8637_FULL -> XEIGTPW_14100_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14100_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14100_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 3)
------------------------------
Missing (1): shard-adlp
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14100_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [FAIL][1] +2 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-edp-1.html
* igt@kms_content_protection@dp-mst-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-1/igt@kms_content_protection@dp-mst-suspend-resume.html
- shard-dg2-set2: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-435/igt@kms_content_protection@dp-mst-suspend-resume.html
* igt@kms_hdr@bpc-switch:
- shard-bmg: NOTRUN -> [ABORT][4] +2 other tests abort
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@kms_hdr@bpc-switch.html
* igt@kms_pipe_crc_basic@read-crc:
- shard-bmg: [PASS][5] -> [DMESG-WARN][6] +1 other test dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-1/igt@kms_pipe_crc_basic@read-crc.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-2/igt@kms_pipe_crc_basic@read-crc.html
* igt@kms_pipe_crc_basic@read-crc@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [DMESG-WARN][7] +2 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-2/igt@kms_pipe_crc_basic@read-crc@pipe-d-hdmi-a-3.html
New tests
---------
New tests have been introduced between XEIGT_8637_FULL and XEIGTPW_14100_FULL:
### New IGT tests (14) ###
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- Statuses : 1 fail(s)
- Exec time: [112.19] s
* igt@kms_flip@blocking-absolute-wf_vblank-interruptible@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [4.06] s
* igt@kms_flip@blocking-wf_vblank@d-dp2:
- Statuses : 1 fail(s)
- Exec time: [3.46] s
* igt@kms_flip@busy-flip@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [0.78] s
* igt@kms_flip@dpms-off-confusion-interruptible@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [3.98] s
* igt@kms_flip@dpms-off-confusion@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [4.00] s
* igt@kms_flip@dpms-vs-vblank-race-interruptible@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [1.68] s
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [4.34] s
* igt@kms_flip@modeset-vs-vblank-race-interruptible@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [1.88] s
* igt@kms_flip@nonexisting-fb@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [0.19] s
* igt@kms_flip@plain-flip-ts-check-interruptible@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [4.26] s
* igt@kms_flip@plain-flip-ts-check@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [4.28] s
* igt@kms_flip@wf_vblank-ts-check-interruptible@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [4.35] s
* igt@kms_plane_multiple@tiling-x@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.97] s
Known issues
------------
Here are the changes found in XEIGTPW_14100_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic:
- shard-lnl: NOTRUN -> [FAIL][8] ([Intel XE#6054] / [Intel XE#6676])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [FAIL][9] ([Intel XE#6054])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_async_flips@basic-modeset-with-all-modifiers-formats@pipe-a-edp-1-linear-rgb565:
- shard-lnl: NOTRUN -> [FAIL][10] ([Intel XE#6676]) +41 other tests fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-8/igt@kms_async_flips@basic-modeset-with-all-modifiers-formats@pipe-a-edp-1-linear-rgb565.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#664])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@kms_async_flips@test-cursor.html
* igt@kms_async_flips@test-time-stamp-atomic:
- shard-lnl: NOTRUN -> [FAIL][12] ([Intel XE#6677]) +2 other tests fail
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@kms_async_flips@test-time-stamp-atomic.html
* igt@kms_atomic_transition@modeset-transition:
- shard-bmg: NOTRUN -> [DMESG-FAIL][13] ([Intel XE#3428]) +3 other tests dmesg-fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@kms_atomic_transition@modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2370])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1407]) +4 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#3658])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2327]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#316]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +16 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-3/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +11 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2328])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb.html
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#619])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#610])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#610])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +14 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2191])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2191]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1512]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-1/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#367]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#367]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-1/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#367]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +23 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#787]) +132 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#3442])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#3432]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#3432])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#2669]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2887]) +16 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#455] / [Intel XE#787]) +37 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#2907]) +4 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2652] / [Intel XE#787]) +31 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2724])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-2/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#4418])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#4418])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#306]) +4 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-max:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2325]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@ctm-negative:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#306]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-3/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2252]) +16 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#373]) +17 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#373]) +13 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2 (NEW):
- shard-bmg: NOTRUN -> [FAIL][52] ([Intel XE#1178]) +1 other test fail
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-1/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2341]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#307]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#307]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-3/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2390])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: NOTRUN -> [FAIL][57] ([Intel XE#1178]) +2 other tests fail
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-433/igt@kms_content_protection@lic-type-0.html
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#3278]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-3/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][59] ([Intel XE#3304])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-433/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2320]) +6 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#2321]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#308]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2321]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1424]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-1/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#309]) +5 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#2291]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#323])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#323])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2286])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1508])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#1340])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#4494] / [i915#3804])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#4354])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#4354]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@kms_dp_link_training@uhbr-mst.html
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#4354]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-1/igt@kms_dp_link_training@uhbr-mst.html
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#4356])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-433/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2244])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp.html
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#2244])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-8/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#4422])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#776]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#776]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#1138])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-4/igt@kms_feature_discovery@display-4x.html
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#1138])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-434/igt@kms_feature_discovery@display-4x.html
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1138])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-7/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][86] ([Intel XE#3149] / [Intel XE#5352])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [PASS][87] -> [SKIP][88] ([Intel XE#2316]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-2/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-bmg: NOTRUN -> [DMESG-WARN][89] ([Intel XE#3428]) +9 other tests dmesg-warn
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1421]) +10 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-3/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-bmg: NOTRUN -> [DMESG-WARN][91] ([Intel XE#5208])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2316])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@b-dp2:
- shard-bmg: NOTRUN -> [FAIL][93] ([Intel XE#5352]) +4 other tests fail
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@kms_flip@blocking-wf_vblank@b-dp2.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-dp2:
- shard-bmg: NOTRUN -> [FAIL][94] ([Intel XE#6266]) +1 other test fail
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#301]) +1 other test fail
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1397]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1401]) +4 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2293] / [Intel XE#2380]) +10 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1401] / [Intel XE#1745]) +4 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2293]) +10 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#352])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-4/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#6312]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#651]) +11 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2311]) +47 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#4141]) +18 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#656]) +51 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#651]) +42 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#658]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1469]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2352]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#653]) +42 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2313]) +41 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2312]) +8 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1470] / [Intel XE#2853])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#3374] / [Intel XE#3544])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#1503])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2925]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-434/igt@kms_joiner@basic-max-non-joiner.html
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#6590])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-8/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2934])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2925])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2925] / [Intel XE#2927])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-435/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2927])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#356])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#5624])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2393])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-2/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#4596]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-8/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#5021])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-y.html
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#5021])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-434/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [FAIL][131] ([Intel XE#4658]) +3 other tests fail
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-1/igt@kms_plane_multiple@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#5020])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2685] / [Intel XE#3307])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@kms_plane_scaling@intel-max-src-size.html
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#3307])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-7/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#2763]) +7 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#870]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-4/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#870]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-435/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][138] -> [FAIL][139] ([Intel XE#718])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2505])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-2/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#1439] / [Intel XE#836])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-bmg: [PASS][142] -> [DMESG-FAIL][143] ([Intel XE#3428])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-8/igt@kms_pm_rpm@drm-resources-equal.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-bmg: [PASS][145] -> [DMESG-WARN][146] ([Intel XE#3428]) +1 other test dmesg-warn
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-lnl: [PASS][147] -> [ABORT][148] ([Intel XE#6675]) +1 other test abort
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-5/igt@kms_pm_rpm@system-suspend-modeset.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-4/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#1406] / [Intel XE#1489]) +11 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#1406] / [Intel XE#2893]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +2 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1406] / [Intel XE#4608]) +5 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#1406] / [Intel XE#1489]) +14 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#1128] / [Intel XE#1406]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#1406] / [Intel XE#2387])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#1122] / [Intel XE#1406])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-436/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1406]) +7 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@fbc-psr2-suspend@edp-1:
- shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#1406] / [Intel XE#4609]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-1/igt@kms_psr@fbc-psr2-suspend@edp-1.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +24 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-435/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +26 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#1406] / [Intel XE#2414]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#1406] / [Intel XE#2939])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-433/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#3414]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-436/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#3414] / [Intel XE#3904]) +5 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-x-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [FAIL][165] ([Intel XE#4689])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-3/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#1127])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2413]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#1435])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html
- shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#1435]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-3/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#6503]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#362])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#455]) +33 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@kms_vrr@flipline.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#1499]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][175] -> [FAIL][176] ([Intel XE#2142]) +1 other test fail
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
- shard-bmg: NOTRUN -> [ABORT][177] ([Intel XE#6675]) +13 other tests abort
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-7/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#6599]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html
- shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#1447])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-8/igt@xe_compute@ccs-mode-basic.html
* igt@xe_compute@eu-busy-10s:
- shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#6598])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@xe_compute@eu-busy-10s.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][181] ([Intel XE#6360]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-432/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#1123]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-page-copy-1:
- shard-dg2-set2: NOTRUN -> [SKIP][183] ([Intel XE#5300]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-435/igt@xe_copy_basic@mem-page-copy-1.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#1126])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eu_stall@invalid-gt-id:
- shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#5626]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-433/igt@xe_eu_stall@invalid-gt-id.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: NOTRUN -> [SKIP][186] ([Intel XE#4837]) +26 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@basic-connect:
- shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#4837]) +14 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-1/igt@xe_eudebug@basic-connect.html
* igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
- shard-bmg: NOTRUN -> [SKIP][188] ([Intel XE#4837]) +25 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#4518])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-3/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-cm-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][190] ([Intel XE#688]) +8 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-7/igt@xe_evict@evict-cm-threads-small-multi-vm.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][191] ([Intel XE#1392]) +7 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-once-basic-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#2322]) +11 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-4/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][193] ([Intel XE#288]) +39 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-435/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][194] ([Intel XE#2360]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_system_allocator@many-64k-mmap-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#5007]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@xe_exec_system_allocator@many-64k-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@many-64k-mmap-mlock-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][196] ([Intel XE#4915]) +546 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-436/igt@xe_exec_system_allocator@many-64k-mmap-mlock-nomemset.html
* igt@xe_exec_system_allocator@many-large-malloc-prefetch-madvise:
- shard-lnl: NOTRUN -> [WARN][197] ([Intel XE#5786]) +3 other tests warn
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-8/igt@xe_exec_system_allocator@many-large-malloc-prefetch-madvise.html
* igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][198] ([Intel XE#4943]) +29 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-7/igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][199] ([Intel XE#4943]) +32 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: NOTRUN -> [SKIP][200] ([Intel XE#255])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-436/igt@xe_huc_copy@huc_copy.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][201] ([Intel XE#2459] / [Intel XE#2596])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@xe_media_fill@media-fill.html
- shard-dg2-set2: NOTRUN -> [SKIP][202] ([Intel XE#560])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-436/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: NOTRUN -> [SKIP][203] ([Intel XE#512])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-432/igt@xe_mmap@small-bar.html
* igt@xe_noexec_ping_pong@basic:
- shard-lnl: NOTRUN -> [SKIP][204] ([Intel XE#6259])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-7/igt@xe_noexec_ping_pong@basic.html
* igt@xe_oa@buffer-size:
- shard-dg2-set2: NOTRUN -> [SKIP][205] ([Intel XE#6032]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-432/igt@xe_oa@buffer-size.html
* igt@xe_oa@non-privileged-map-oa-buffer:
- shard-dg2-set2: NOTRUN -> [SKIP][206] ([Intel XE#3573]) +14 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@xe_oa@non-privileged-map-oa-buffer.html
* igt@xe_oa@non-zero-reason-all:
- shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#6377])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-435/igt@xe_oa@non-zero-reason-all.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][208] ([Intel XE#977])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-433/igt@xe_pat@pat-index-xe2.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: NOTRUN -> [SKIP][209] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][210] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-432/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: NOTRUN -> [SKIP][211] ([Intel XE#2284])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-433/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][212] ([Intel XE#1948])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][213] ([Intel XE#2284]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-8/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s2idle-exec-after:
- shard-dg2-set2: NOTRUN -> [ABORT][214] ([Intel XE#6675]) +11 other tests abort
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-466/igt@xe_pm@s2idle-exec-after.html
- shard-lnl: NOTRUN -> [ABORT][215] ([Intel XE#6675]) +10 other tests abort
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-dg2-set2: [PASS][216] -> [ABORT][217] ([Intel XE#6675])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-userptr.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-466/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s3-multiple-execs:
- shard-lnl: NOTRUN -> [SKIP][218] ([Intel XE#584]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-3/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][219] ([Intel XE#579])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-436/igt@xe_pm@vram-d3cold-threshold.html
- shard-lnl: NOTRUN -> [SKIP][220] ([Intel XE#579])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-8/igt@xe_pm@vram-d3cold-threshold.html
- shard-bmg: NOTRUN -> [SKIP][221] ([Intel XE#579])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pm_residency@idle-residency:
- shard-dg2-set2: NOTRUN -> [FAIL][222] ([Intel XE#6362]) +1 other test fail
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-464/igt@xe_pm_residency@idle-residency.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-lnl: NOTRUN -> [SKIP][223] ([Intel XE#4650])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
- shard-dg2-set2: NOTRUN -> [SKIP][224] ([Intel XE#4650])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-464/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
- shard-dg2-set2: NOTRUN -> [SKIP][225] ([Intel XE#4733]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-464/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][226] ([Intel XE#4733]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-7/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-lnl: NOTRUN -> [SKIP][227] ([Intel XE#944]) +4 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: NOTRUN -> [SKIP][228] ([Intel XE#944]) +2 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-8/igt@xe_query@multigpu-query-mem-usage.html
- shard-dg2-set2: NOTRUN -> [SKIP][229] ([Intel XE#944]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-436/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_render_copy@render-stress-1-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][230] ([Intel XE#4814])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@xe_render_copy@render-stress-1-copies.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-lnl: NOTRUN -> [SKIP][231] ([Intel XE#4130])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][232] ([Intel XE#4130])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-466/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: NOTRUN -> [SKIP][233] ([Intel XE#3342])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-433/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-dg2-set2: NOTRUN -> [SKIP][234] ([Intel XE#4273])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-432/igt@xe_sriov_flr@flr-vfs-parallel.html
- shard-lnl: NOTRUN -> [SKIP][235] ([Intel XE#4273])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-3/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-dg2-set2: NOTRUN -> [SKIP][236] ([Intel XE#4351]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
- shard-lnl: NOTRUN -> [SKIP][237] ([Intel XE#4351])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
* igt@xe_survivability@runtime-survivability:
- shard-dg2-set2: NOTRUN -> [SKIP][238] ([Intel XE#6529])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-433/igt@xe_survivability@runtime-survivability.html
#### Possible fixes ####
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-bmg: [SKIP][239] ([Intel XE#2316]) -> [PASS][240]
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][241] ([Intel XE#718]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_vrr@flip-suspend@pipe-a-edp-1:
- shard-lnl: [ABORT][243] ([Intel XE#6675]) -> [PASS][244] +1 other test pass
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-8/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [SKIP][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270]) ([Intel XE#378]) -> ([PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-2/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-2/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-2/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-4/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-4/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-4/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-3/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-4/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-3/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-3/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-8/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-7/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-7/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-8/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-7/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-8/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-8/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-5/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-5/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-5/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-5/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-5/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-5/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-1/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-1/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-1/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-7/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-4/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-4/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-3/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-3/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-8/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-8/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-8/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-7/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-5/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-1/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-4/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-4/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-1/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-2/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-3/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-1/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-3/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-7/igt@xe_module_load@load.html
- shard-bmg: ([PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [SKIP][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319]) ([Intel XE#2457]) -> ([PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344])
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-8/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-8/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-8/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-1/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-1/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-1/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-7/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-7/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-7/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-6/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-6/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-6/igt@xe_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-7/igt@xe_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-7/igt@xe_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-3/igt@xe_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-3/igt@xe_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-3/igt@xe_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-5/igt@xe_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-2/igt@xe_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-2/igt@xe_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-5/igt@xe_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-2/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-5/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-2/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-2/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-1/igt@xe_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-8/igt@xe_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@xe_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-4/igt@xe_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@xe_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-7/igt@xe_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@xe_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@xe_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-3/igt@xe_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-3/igt@xe_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-4/igt@xe_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-4/igt@xe_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-5/igt@xe_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-4/igt@xe_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-7/igt@xe_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-7/igt@xe_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-2/igt@xe_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-8/igt@xe_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-8/igt@xe_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-8/igt@xe_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-1/igt@xe_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-3/igt@xe_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-2/igt@xe_module_load@load.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-1/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][345], [SKIP][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369]) ([Intel XE#378]) -> ([PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382], [PASS][383], [PASS][384], [PASS][385], [PASS][386], [PASS][387], [PASS][388], [PASS][389], [PASS][390], [PASS][391], [PASS][392], [PASS][393], [PASS][394])
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-466/igt@xe_module_load@load.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-466/igt@xe_module_load@load.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-466/igt@xe_module_load@load.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-466/igt@xe_module_load@load.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-435/igt@xe_module_load@load.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-435/igt@xe_module_load@load.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-435/igt@xe_module_load@load.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-463/igt@xe_module_load@load.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-463/igt@xe_module_load@load.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-463/igt@xe_module_load@load.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-434/igt@xe_module_load@load.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-434/igt@xe_module_load@load.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-464/igt@xe_module_load@load.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-464/igt@xe_module_load@load.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-464/igt@xe_module_load@load.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-432/igt@xe_module_load@load.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-432/igt@xe_module_load@load.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-432/igt@xe_module_load@load.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-433/igt@xe_module_load@load.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-433/igt@xe_module_load@load.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-433/igt@xe_module_load@load.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-436/igt@xe_module_load@load.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-436/igt@xe_module_load@load.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-436/igt@xe_module_load@load.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-436/igt@xe_module_load@load.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-434/igt@xe_module_load@load.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-434/igt@xe_module_load@load.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-466/igt@xe_module_load@load.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-433/igt@xe_module_load@load.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-466/igt@xe_module_load@load.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-435/igt@xe_module_load@load.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-435/igt@xe_module_load@load.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-466/igt@xe_module_load@load.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-466/igt@xe_module_load@load.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-434/igt@xe_module_load@load.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-436/igt@xe_module_load@load.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-436/igt@xe_module_load@load.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-432/igt@xe_module_load@load.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-432/igt@xe_module_load@load.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-432/igt@xe_module_load@load.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@xe_module_load@load.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@xe_module_load@load.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-464/igt@xe_module_load@load.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-464/igt@xe_module_load@load.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@xe_module_load@load.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-464/igt@xe_module_load@load.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-433/igt@xe_module_load@load.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-433/igt@xe_module_load@load.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-436/igt@xe_module_load@load.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-436/igt@xe_module_load@load.html
* igt@xe_pm@s4-basic:
- shard-dg2-set2: [ABORT][395] ([Intel XE#6675]) -> [PASS][396]
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-464/igt@xe_pm@s4-basic.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-463/igt@xe_pm@s4-basic.html
* igt@xe_pmu@engine-activity-accuracy-50:
- shard-lnl: [FAIL][397] ([Intel XE#6251]) -> [PASS][398] +1 other test pass
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-50.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-50.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [FAIL][399] ([Intel XE#4819]) -> [PASS][400] +1 other test pass
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-435/igt@xe_pmu@gt-frequency.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-434/igt@xe_pmu@gt-frequency.html
* igt@xe_vm@bind-array-enobufs:
- shard-dg2-set2: [DMESG-FAIL][401] ([Intel XE#3876]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-435/igt@xe_vm@bind-array-enobufs.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-dg2-466/igt@xe_vm@bind-array-enobufs.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][403] ([Intel XE#2311]) -> [SKIP][404] ([Intel XE#2312])
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][405] ([Intel XE#2312]) -> [SKIP][406] ([Intel XE#2311]) +1 other test skip
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][407] ([Intel XE#2312]) -> [SKIP][408] ([Intel XE#2313]) +4 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_psr@fbc-psr-suspend@edp-1:
- shard-lnl: [ABORT][409] ([Intel XE#2625]) -> [ABORT][410] ([Intel XE#2625] / [Intel XE#6675]) +1 other test abort
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-7/igt@kms_psr@fbc-psr-suspend@edp-1.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-lnl-4/igt@kms_psr@fbc-psr-suspend@edp-1.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][411] ([Intel XE#2426]) -> [SKIP][412] ([Intel XE#2509])
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4658
[Intel XE#4689]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4689
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5352
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6259
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#6362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6362
[Intel XE#6377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6377
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#6590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6590
[Intel XE#6598]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6598
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#6675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6675
[Intel XE#6676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6676
[Intel XE#6677]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6677
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_8637 -> IGTPW_14100
IGTPW_14100: a77dace22491ff7d0d9bc885a598acd0efb34d4f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8637: 730ee3dfb26f8d7891fc240b0132a08c5bc7b949 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4141-c701e79730169fab373fba7e759497d755fac592: c701e79730169fab373fba7e759497d755fac592
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14100/index.html
[-- Attachment #2: Type: text/html, Size: 110533 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ i915.CI.Full: failure for kms: Small cleanups and refactoring
2025-11-21 19:06 [PATCH i-g-t 0/8] kms: Small cleanups and refactoring Ville Syrjala
` (11 preceding siblings ...)
2025-11-25 8:57 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-11-25 12:10 ` Patchwork
12 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-11-25 12:10 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 165043 bytes --]
== Series Details ==
Series: kms: Small cleanups and refactoring
URL : https://patchwork.freedesktop.org/series/157930/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8637_full -> IGTPW_14100_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14100_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14100_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_14100/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_14100_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-mtlp: NOTRUN -> [FAIL][1] +5 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_content_protection@dp-mst-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-4/igt@kms_content_protection@dp-mst-suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][3] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-5/igt@kms_content_protection@dp-mst-suspend-resume.html
* igt@kms_content_protection@suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][4] +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-6/igt@kms_content_protection@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][5] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-17/igt@kms_content_protection@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][6] +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@kms_content_protection@suspend-resume.html
Known issues
------------
Here are the changes found in IGTPW_14100_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#6230])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-4/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#6230])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-14/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#6230])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-3/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8411]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@api_intel_bb@object-reloc-keep-cache.html
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#8411]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@api_intel_bb@object-reloc-keep-cache.html
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#8411]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-17/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8411]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-8/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#3936])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@gem_busy@semaphore.html
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#3936])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@gem_busy@semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#3936])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@gem_busy@semaphore.html
* igt@gem_caching@reads:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4873])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-7/igt@gem_caching@reads.html
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#14544] / [i915#3555] / [i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-12/igt@gem_ccs@ctrl-surf-copy.html
- shard-tglu: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-5/igt@gem_ccs@ctrl-surf-copy.html
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-7/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#9323])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-3/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#7697])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-6/igt@gem_close_race@multigpu-basic-process.html
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#7697])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@gem_close_race@multigpu-basic-process.html
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#7697])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@gem_close_race@multigpu-basic-process.html
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#7697])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@gem_close_race@multigpu-basic-process.html
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#7697])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-12/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][29] ([i915#6335])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-4/igt@gem_create@create-ext-cpu-access-big.html
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#6335])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-8/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: NOTRUN -> [ABORT][31] ([i915#13427])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#6335])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-tglu-1: NOTRUN -> [ABORT][33] ([i915#15317]) +3 other tests abort
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@gem_ctx_isolation@preservation-s3.html
- shard-dg1: NOTRUN -> [ABORT][34] ([i915#15317]) +4 other tests abort
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-snb: NOTRUN -> [ABORT][35] ([i915#15317]) +8 other tests abort
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-snb4/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#8555]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-hang.html
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#8555]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-hang.html
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#8555]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][39] ([i915#1099]) +9 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-snb6/igt@gem_ctx_persistence@processes.html
* igt@gem_ctx_sseu@invalid-args:
- shard-tglu: NOTRUN -> [SKIP][40] ([i915#280])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-5/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#280]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-4/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#280]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html
- shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#280])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#280]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-14/igt@gem_ctx_sseu@invalid-sseu.html
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#280]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-3/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-dg1: NOTRUN -> [ABORT][46] ([i915#15317] / [i915#7975])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-13/igt@gem_eio@hibernate.html
- shard-tglu: NOTRUN -> [ABORT][47] ([i915#15317] / [i915#7975])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-3/igt@gem_eio@hibernate.html
- shard-mtlp: NOTRUN -> [ABORT][48] ([i915#15317] / [i915#7975])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-6/igt@gem_eio@hibernate.html
- shard-rkl: NOTRUN -> [ABORT][49] ([i915#15317] / [i915#7975])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-5/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-snb: NOTRUN -> [FAIL][50] ([i915#8898])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-snb6/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-pair:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4771])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@gem_exec_balancer@bonded-pair.html
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4771])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-8/igt@gem_exec_balancer@bonded-pair.html
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4771])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@parallel:
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#4525]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-7/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#4525]) +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_big@single:
- shard-tglu: NOTRUN -> [ABORT][56] ([i915#11713])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-4/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][57] ([i915#11965]) +4 other tests fail
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-4/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4812]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@gem_exec_fence@submit67.html
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4812]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-19/igt@gem_exec_fence@submit67.html
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4812])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-7/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3539] / [i915#4852]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-8/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#3539])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@gem_exec_flush@basic-uc-set-default.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3539])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-ro-default:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3539] / [i915#4852])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-12/igt@gem_exec_flush@basic-wb-ro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#5107])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-2/igt@gem_exec_params@rsvd2-dirt.html
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#5107])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][67] +16 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-5/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3281]) +23 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-range-active:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#14544] / [i915#3281]) +5 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@gem_exec_reloc@basic-range-active.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#3281]) +20 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-12/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3281]) +21 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-8/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#3281]) +15 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4537] / [i915#4812])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#4537] / [i915#4812]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_suspend@basic-s3:
- shard-rkl: [PASS][75] -> [ABORT][76] ([i915#15317]) +2 other tests abort
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-7/igt@gem_exec_suspend@basic-s3.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@gem_exec_suspend@basic-s3.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4860]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4860]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-5/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4860]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#2190])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#2190])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-4/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#4613] / [i915#7582])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-8/igt@gem_lmem_evict@dontneed-evict-race.html
- shard-tglu-1: NOTRUN -> [SKIP][83] ([i915#4613] / [i915#7582])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4613]) +11 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4565]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@massive-random:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#14544] / [i915#4613])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#4613]) +8 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#12193]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-14/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#4613]) +9 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#4613])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random:
- shard-glk: NOTRUN -> [SKIP][91] ([i915#4613]) +5 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-glk1/igt@gem_lmem_swapping@verify-random.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#284])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#4083]) +7 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-19/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@big-bo-tiledy:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#4077]) +24 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-3/igt@gem_mmap_gtt@big-bo-tiledy.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#4077]) +21 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-1/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#4083]) +8 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#4083]) +8 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-6/igt@gem_mmap_wc@close.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#3282]) +11 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#3282]) +10 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#3282]) +6 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][101] ([i915#2658])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-glk3/igt@gem_pread@exhaustion.html
- shard-snb: NOTRUN -> [WARN][102] ([i915#2658])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-snb7/igt@gem_pread@exhaustion.html
- shard-tglu: NOTRUN -> [WARN][103] ([i915#2658])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-8/igt@gem_pread@exhaustion.html
* igt@gem_pread@self:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#14544] / [i915#3282])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@gem_pread@self.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#3282]) +9 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@gem_pread@snoop.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#13398]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#13717])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-context.html
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#13398])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-5/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#4270]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-18/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4270]) +4 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-8/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_render_copy@y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#8428]) +10 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@gem_render_copy@y-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-linear:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#5190] / [i915#8428]) +12 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-6/igt@gem_render_copy@y-tiled-to-vebox-linear.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4079]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#4079]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-19/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#14544] / [i915#8411])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: [PASS][116] -> [INCOMPLETE][117] ([i915#13809])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-glk6/igt@gem_softpin@noreloc-s3.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-glk9/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_pread_basic:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#4079]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-6/igt@gem_tiled_pread_basic.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#3297]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#3297]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-4/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#3297]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-19/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#3297]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-5/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#3297] / [i915#3323])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-4/igt@gem_userptr_blits@dmabuf-sync.html
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#3297]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-8/igt@gem_userptr_blits@dmabuf-sync.html
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#3297] / [i915#3323])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#3297] / [i915#4880]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#3297] / [i915#4880])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#3281] / [i915#3297])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-6/igt@gem_userptr_blits@relocations.html
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#3281] / [i915#3297])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-17/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#3297] / [i915#4958])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-6/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#3297] / [i915#4958])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-17/igt@gem_userptr_blits@sd-probe.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-mtlp: [PASS][132] -> [ABORT][133] ([i915#15317])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-mtlp-8/igt@gem_workarounds@suspend-resume-fd.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-8/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#2527] / [i915#2856]) +5 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-3/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#2856]) +5 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#2527]) +5 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-15/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-out:
- shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#2527] / [i915#2856])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#2856]) +7 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-6/igt@gen9_exec_parse@shadow-peek.html
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#2527]) +6 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-2/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_drm_fdinfo@all-busy-check-all:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#14123])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-3/igt@i915_drm_fdinfo@all-busy-check-all.html
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#14123])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-4/igt@i915_drm_fdinfo@all-busy-check-all.html
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#14123])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-14/igt@i915_drm_fdinfo@all-busy-check-all.html
* igt@i915_drm_fdinfo@busy-idle@vecs0:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#14073]) +7 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@i915_drm_fdinfo@busy-idle@vecs0.html
* igt@i915_drm_fdinfo@most-busy-idle-check-all:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#14073]) +6 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-8/igt@i915_drm_fdinfo@most-busy-idle-check-all.html
* igt@i915_drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#14073]) +5 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-18/igt@i915_drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@i915_drm_fdinfo@virtual-busy-hang-all:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#14118])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-6/igt@i915_drm_fdinfo@virtual-busy-hang-all.html
* igt@i915_fb_tiling@basic-x-tiling:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#13786])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-6/igt@i915_fb_tiling@basic-x-tiling.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#6412])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#14544] / [i915#8399])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#8399])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-2/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#8399])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#6590]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][153] ([i915#13790] / [i915#2681]) +1 other test warn
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#11681] / [i915#6621]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-19/igt@i915_pm_rps@basic-api.html
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#11681] / [i915#6621])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#11681] / [i915#6621])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#11681])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-6/igt@i915_pm_rps@thresholds.html
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#11681]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-17/igt@i915_pm_rps@thresholds.html
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#11681]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@i915_pm_rps@thresholds.html
* igt@i915_power@sanity:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#7984])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-2/igt@i915_power@sanity.html
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#7984])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#6245])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-17/igt@i915_query@hwconfig_table.html
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#6245])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-6/igt@i915_query@hwconfig_table.html
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#6245])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-1/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#5723])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#5723])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-14/igt@i915_query@test-query-geometry-subslices.html
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#5723])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-3/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: NOTRUN -> [DMESG-FAIL][168] ([i915#12061]) +1 other test dmesg-fail
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#7707])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@intel_hwmon@hwmon-write.html
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#7707])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-7/igt@intel_hwmon@hwmon-write.html
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#7707])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-2/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#4212]) +2 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-12/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#4212]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-8/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#4212]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-1/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#12454] / [i915#12712])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@basic-modeset-with-all-modifiers-formats@pipe-a-edp-1-linear-rgb565:
- shard-mtlp: NOTRUN -> [FAIL][176] ([i915#15313]) +36 other tests fail
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@kms_async_flips@basic-modeset-with-all-modifiers-formats@pipe-a-edp-1-linear-rgb565.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#10333])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-2/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3555])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#9531])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#9531])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#9531])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-15/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#9531])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][183] ([i915#1769])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#1769] / [i915#3555])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#1769] / [i915#3555])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-snb: NOTRUN -> [SKIP][186] ([i915#1769])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-snb5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#1769] / [i915#3555])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#14544] / [i915#5286]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#5286]) +8 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#5286])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-15/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#5286])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#4538] / [i915#5286]) +8 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#5286]) +9 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][194] +45 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#3638]) +9 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#14544] / [i915#3638]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#4538] / [i915#5190]) +24 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#3638]) +7 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#6187])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][200] +29 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#4538]) +12 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][203] ([i915#12313]) +4 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#12313]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#12313]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#6095]) +79 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-dg2: NOTRUN -> [ABORT][207] ([i915#15317]) +10 other tests abort
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#6095]) +144 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#14098] / [i915#6095]) +65 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#12805])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#12805])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#12805])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#6095]) +12 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#12313]) +4 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#12313]) +4 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#6095]) +158 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-14/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#14544] / [i915#6095]) +9 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#6095]) +29 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#6095]) +89 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#10307] / [i915#6095]) +159 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-glk: NOTRUN -> [SKIP][222] +354 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-glk3/igt@kms_cdclk@mode-transition.html
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#3742]) +2 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-4/igt@kms_cdclk@mode-transition.html
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#3742]) +2 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-19/igt@kms_cdclk@mode-transition.html
- shard-tglu: NOTRUN -> [SKIP][225] ([i915#3742]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-5/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#13784])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-7/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#13784])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#13781]) +4 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-dp-3.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#13781]) +4 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-7/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#13783]) +4 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#11151] / [i915#7828]) +18 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-10/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#11151] / [i915#7828]) +14 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-8/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#11151] / [i915#7828]) +16 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
- shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#11151] / [i915#7828])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#11151] / [i915#7828]) +12 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-19/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#11151] / [i915#7828]) +14 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#12655] / [i915#3555])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-13/igt@kms_color@deep-color.html
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#9979])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-3/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#7118] / [i915#9424])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#3299])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-8/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#3299])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@kms_content_protection@dp-mst-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3299])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#9424])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-1/igt@kms_content_protection@mei-interface.html
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#9424])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-8/igt@kms_content_protection@mei-interface.html
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#9424])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-18/igt@kms_content_protection@mei-interface.html
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#6944] / [i915#9424])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-4/igt@kms_content_protection@mei-interface.html
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#8063] / [i915#9433])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-8/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#7118] / [i915#7162] / [i915#9424])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#7118] / [i915#9424]) +3 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-4/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#7116] / [i915#9424]) +2 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-19/igt@kms_content_protection@type1.html
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-5/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#6944] / [i915#9424])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-7/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#6944] / [i915#9424])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#8814]) +6 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: NOTRUN -> [FAIL][256] ([i915#13566]) +3 other tests fail
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-tglu: NOTRUN -> [FAIL][257] ([i915#13566]) +1 other test fail
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8814]) +3 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#3555]) +8 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#3555]) +9 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-12/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#13049]) +3 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#13049]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: [PASS][263] -> [FAIL][264] ([i915#13566]) +1 other test fail
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#13049]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#13049] / [i915#14544])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#3555]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#13049]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#13049]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-14/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#3555]) +9 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#14544] / [i915#4103])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#4103]) +2 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#4213]) +3 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#14544]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#13046] / [i915#5354]) +6 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#9809]) +7 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][277] ([i915#2346])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#4103] / [i915#4213]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#4103])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#4103] / [i915#4213])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#9723])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#3804])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#3804])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#13749])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-2/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-tglu: NOTRUN -> [SKIP][285] ([i915#13749])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-8/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#13749])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_dp_link_training@uhbr-mst.html
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#13748])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-4/igt@kms_dp_link_training@uhbr-mst.html
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#13748])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-14/igt@kms_dp_link_training@uhbr-mst.html
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#13748])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-3/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#13707])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#13707])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#13707]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-17/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#13707]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#13707])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#8812])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#3555] / [i915#8812])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-7/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#8812])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#3840])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-1/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#14544] / [i915#3555] / [i915#3840])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#3840]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-2/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#3555] / [i915#3840])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-3/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#3469])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-1/igt@kms_fbcon_fbt@psr.html
- shard-tglu: NOTRUN -> [SKIP][303] ([i915#3469])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-2/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-3x:
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#1839])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][305] ([i915#9337])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#658])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-10/igt@kms_feature_discovery@psr1.html
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#658])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@kms_feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#658])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-2/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#658])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-19/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#3637] / [i915#9934]) +18 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#3637] / [i915#9934]) +18 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-8/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [ABORT][312] ([i915#15317]) +4 other tests abort
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-glk3/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#14544] / [i915#9934])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#9934]) +18 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][315] ([i915#9934]) +17 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-17/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#9934]) +14 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#8381])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-7/igt@kms_flip@flip-vs-fences-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][318] ([i915#8381])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-14/igt@kms_flip@flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][319] ([i915#8381])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-2/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][320] ([i915#12745] / [i915#4839])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][321] ([i915#12745])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a2:
- shard-rkl: NOTRUN -> [INCOMPLETE][322] ([i915#6113])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#2672] / [i915#3555]) +8 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#2672]) +8 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][325] ([i915#3555] / [i915#8810] / [i915#8813]) +5 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#14544] / [i915#2672] / [i915#3555]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][327] ([i915#8810] / [i915#8813]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][328] ([i915#2672] / [i915#3555])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][329] ([i915#2587] / [i915#2672])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#2587] / [i915#2672]) +9 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#14544] / [i915#2672]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][332] ([i915#2672] / [i915#3555] / [i915#8813]) +14 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#2672]) +9 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][336] ([i915#2672] / [i915#3555]) +7 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#2672] / [i915#8813]) +6 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][338] ([i915#2672] / [i915#3555]) +5 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#2672] / [i915#3555]) +7 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][340] ([i915#2587] / [i915#2672]) +9 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][341] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][342] ([i915#5354]) +46 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
- shard-rkl: NOTRUN -> [SKIP][343] ([i915#14544] / [i915#1825]) +7 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#8708]) +23 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][345] ([i915#1825]) +55 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][346] ([i915#5439]) +1 other test skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][347] ([i915#5439]) +1 other test skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][348] ([i915#5439]) +1 other test skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][349] ([i915#15104])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][350] +666 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][351] +65 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite:
- shard-glk10: NOTRUN -> [SKIP][352] +177 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#15102]) +5 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
- shard-rkl: NOTRUN -> [SKIP][354] ([i915#15102]) +7 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][355] ([i915#15102]) +4 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][356] ([i915#15104]) +5 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][357] ([i915#15104]) +5 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][358] ([i915#8708]) +28 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#15102]) +2 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][360] ([i915#15102] / [i915#3458]) +25 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][361] ([i915#15102] / [i915#3023]) +34 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/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-dg2: NOTRUN -> [SKIP][362] ([i915#15102] / [i915#3458]) +24 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/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: NOTRUN -> [SKIP][363] ([i915#1825]) +57 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][364] +10 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][365] +114 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][366] ([i915#8708]) +16 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-rkl: NOTRUN -> [SKIP][367] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][368] ([i915#15102]) +45 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#3555] / [i915#8228]) +1 other test skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-5/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: NOTRUN -> [SKIP][370] ([i915#12713])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@kms_hdr@brightness-with-hdr.html
- shard-dg2: NOTRUN -> [SKIP][371] ([i915#12713])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-4/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: NOTRUN -> [SKIP][372] ([i915#12713])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-8/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: NOTRUN -> [SKIP][373] ([i915#12713])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-15/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: NOTRUN -> [SKIP][374] ([i915#12713])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-8/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: [PASS][375] -> [SKIP][376] ([i915#3555] / [i915#8228])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg1: NOTRUN -> [SKIP][377] ([i915#3555] / [i915#8228])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][378] ([i915#3555] / [i915#8228]) +1 other test skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html
- shard-rkl: NOTRUN -> [ABORT][379] ([i915#15317]) +8 other tests abort
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html
- shard-tglu: NOTRUN -> [SKIP][380] ([i915#3555] / [i915#8228]) +1 other test skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-2/igt@kms_hdr@static-toggle-suspend.html
- shard-mtlp: NOTRUN -> [SKIP][381] ([i915#12713] / [i915#3555] / [i915#8228])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-3/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][382] ([i915#10656]) +1 other test skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-5/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][383] ([i915#12388])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-4/igt@kms_joiner@basic-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][384] ([i915#12388])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_joiner@basic-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][385] ([i915#12388])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-18/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][386] ([i915#12339]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][387] ([i915#12339]) +1 other test skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-19/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][388] ([i915#10656])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-15/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][389] ([i915#10656]) +1 other test skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][390] ([i915#12394])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][391] ([i915#12394])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-12/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-tglu: NOTRUN -> [SKIP][392] ([i915#12394])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][393] ([i915#10656]) +1 other test skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][394] ([i915#12339]) +1 other test skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][395] ([i915#12339])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][396] ([i915#12339])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: NOTRUN -> [SKIP][397] ([i915#14712]) +1 other test skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-2/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
- shard-dg1: NOTRUN -> [SKIP][398] ([i915#14712]) +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-15/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-tglu: NOTRUN -> [SKIP][399] ([i915#14712]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-mtlp: NOTRUN -> [SKIP][400] ([i915#14712])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk10: NOTRUN -> [FAIL][401] ([i915#12178])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][402] ([i915#7862]) +1 other test fail
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][403] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][404] ([i915#11614] / [i915#3582]) +1 other test skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][405] ([i915#3555] / [i915#8821])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-1/igt@kms_plane_lowres@tiling-yf.html
- shard-rkl: NOTRUN -> [SKIP][406] ([i915#14544] / [i915#3555])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][407] ([i915#3555] / [i915#8821]) +1 other test skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-3/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][408] ([i915#13958]) +2 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][409] ([i915#13958]) +2 other tests skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-18/igt@kms_plane_multiple@2x-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][410] ([i915#13958]) +2 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-4/igt@kms_plane_multiple@2x-tiling-4.html
- shard-mtlp: NOTRUN -> [SKIP][411] ([i915#13958]) +2 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-8/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][412] ([i915#13958]) +1 other test skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][413] ([i915#14259])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][414] ([i915#14259])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-6/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][415] ([i915#13046] / [i915#5354] / [i915#9423])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: [PASS][416] -> [SKIP][417] ([i915#6953] / [i915#9423])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-8/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][418] ([i915#12247]) +12 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][419] ([i915#12247]) +4 other tests skip
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- shard-rkl: NOTRUN -> [SKIP][420] ([i915#12247]) +7 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][421] ([i915#12247]) +9 other tests skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
- shard-tglu: NOTRUN -> [SKIP][422] ([i915#12247]) +8 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-9/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][423] ([i915#12247] / [i915#3555] / [i915#6953])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][424] ([i915#12247] / [i915#6953])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][425] ([i915#5354]) +1 other test skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][426] ([i915#5354]) +1 other test skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-12/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][427] ([i915#9812]) +2 other tests skip
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-10/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-mtlp: NOTRUN -> [SKIP][428] ([i915#9292])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu: NOTRUN -> [SKIP][429] ([i915#9685])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-10/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu: NOTRUN -> [SKIP][430] ([i915#3828])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][431] -> [SKIP][432] ([i915#9340])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@cursor:
- shard-dg1: NOTRUN -> [SKIP][433] ([i915#4077]) +20 other tests skip
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][434] ([i915#15073]) +1 other test skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][435] ([i915#15073]) +1 other test skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][436] ([i915#15073]) +2 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][437] ([i915#15073]) +2 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-3/igt@kms_pm_rpm@dpms-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][438] ([i915#15073]) +1 other test skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-tglu: NOTRUN -> [ABORT][439] ([i915#15317]) +3 other tests abort
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-6/igt@kms_pm_rpm@system-suspend-idle.html
- shard-mtlp: NOTRUN -> [ABORT][440] ([i915#15317]) +9 other tests abort
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk10: NOTRUN -> [ABORT][441] ([i915#10553] / [i915#15317])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-glk10/igt@kms_pm_rpm@system-suspend-modeset.html
- shard-dg2: NOTRUN -> [ABORT][442] ([i915#10553] / [i915#15317])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-4/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][443] ([i915#6524])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-5/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][444] ([i915#6524] / [i915#6805])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-5/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][445] ([i915#11520]) +12 other tests skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][446] ([i915#11520]) +14 other tests skip
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][447] ([i915#11520] / [i915#14544]) +1 other test skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][448] ([i915#9808]) +3 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][449] ([i915#11520]) +10 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-glk9/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-mtlp: NOTRUN -> [SKIP][450] ([i915#12316]) +13 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][451] ([i915#11520]) +17 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][452] ([i915#11520]) +14 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-snb1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][453] ([i915#11520]) +13 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-15/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-glk10: NOTRUN -> [SKIP][454] ([i915#11520]) +4 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-glk10/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][455] ([i915#9683])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][456] ([i915#9683])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-14/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][457] ([i915#9683])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-mtlp: NOTRUN -> [SKIP][458] ([i915#4348])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-primary-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][459] ([i915#1072] / [i915#14544] / [i915#9732])
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_psr@fbc-pr-primary-mmap-cpu.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: NOTRUN -> [SKIP][460] ([i915#1072] / [i915#9732]) +37 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-6/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: NOTRUN -> [SKIP][461] ([i915#1072] / [i915#9732]) +39 other tests skip
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-mtlp: NOTRUN -> [SKIP][462] ([i915#9688]) +39 other tests skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-7/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][463] ([i915#9732]) +48 other tests skip
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-4/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-tglu-1: NOTRUN -> [SKIP][464] ([i915#9732]) +1 other test skip
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][465] ([i915#1072] / [i915#9732]) +41 other tests skip
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-14/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][466] ([i915#4884])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-18/igt@kms_rotation_crc@exhaust-fences.html
- shard-mtlp: NOTRUN -> [SKIP][467] ([i915#4235])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-8/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][468] ([i915#5190])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-mtlp: NOTRUN -> [SKIP][469] ([i915#5289])
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][470] ([i915#12755] / [i915#5190]) +2 other tests skip
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [SKIP][471] ([i915#5289]) +3 other tests skip
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-dg1: NOTRUN -> [SKIP][472] ([i915#5289]) +4 other tests skip
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu: NOTRUN -> [SKIP][473] ([i915#5289]) +3 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][474] ([i915#12755]) +5 other tests skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][475] ([i915#12755]) +1 other test skip
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][476] ([i915#3555]) +11 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer:
- shard-dg1: NOTRUN -> [ABORT][477] ([i915#13179]) +1 other test abort
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-17/igt@kms_selftest@drm_framebuffer.html
- shard-snb: NOTRUN -> [ABORT][478] ([i915#13179]) +1 other test abort
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-snb5/igt@kms_selftest@drm_framebuffer.html
- shard-tglu: NOTRUN -> [ABORT][479] ([i915#13179]) +1 other test abort
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-6/igt@kms_selftest@drm_framebuffer.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][480] ([i915#13179]) +1 other test abort
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-8/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][481] ([i915#3555] / [i915#8809] / [i915#8823])
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][482] ([i915#3555] / [i915#8809]) +1 other test skip
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sharpness_filter@filter-formats:
- shard-dg2: NOTRUN -> [SKIP][483] ([i915#15232]) +5 other tests skip
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@kms_sharpness_filter@filter-formats.html
- shard-rkl: NOTRUN -> [SKIP][484] ([i915#15232]) +5 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-5/igt@kms_sharpness_filter@filter-formats.html
- shard-dg1: NOTRUN -> [SKIP][485] ([i915#15232]) +4 other tests skip
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@kms_sharpness_filter@filter-formats.html
- shard-tglu: NOTRUN -> [SKIP][486] ([i915#15232]) +7 other tests skip
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-9/igt@kms_sharpness_filter@filter-formats.html
- shard-mtlp: NOTRUN -> [SKIP][487] ([i915#15232]) +5 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_sharpness_filter@filter-formats.html
* igt@kms_sharpness_filter@invalid-filter-with-plane:
- shard-rkl: NOTRUN -> [SKIP][488] ([i915#14544] / [i915#15232])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_sharpness_filter@invalid-filter-with-plane.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][489] ([i915#8623])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@kms_tiled_display@basic-test-pattern.html
- shard-mtlp: NOTRUN -> [SKIP][490] ([i915#8623])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][491] ([i915#8623])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic:
- shard-dg2: NOTRUN -> [SKIP][492] ([i915#15243] / [i915#3555]) +1 other test skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@kms_vrr@flip-basic.html
- shard-mtlp: NOTRUN -> [SKIP][493] ([i915#3555] / [i915#8808])
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-7/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@lobf:
- shard-tglu: NOTRUN -> [SKIP][494] ([i915#11920])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-5/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][495] ([i915#9906]) +1 other test skip
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-rkl: NOTRUN -> [SKIP][496] ([i915#9906]) +1 other test skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-dg1: NOTRUN -> [SKIP][497] ([i915#9906]) +1 other test skip
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-19/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu: NOTRUN -> [SKIP][498] ([i915#9906]) +2 other tests skip
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-mtlp: NOTRUN -> [SKIP][499] ([i915#8808] / [i915#9906]) +1 other test skip
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-7/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][500] ([i915#2437])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-1/igt@kms_writeback@writeback-check-output.html
- shard-rkl: NOTRUN -> [SKIP][501] ([i915#2437])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-8/igt@kms_writeback@writeback-check-output.html
- shard-dg1: NOTRUN -> [SKIP][502] ([i915#2437])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-18/igt@kms_writeback@writeback-check-output.html
- shard-tglu: NOTRUN -> [SKIP][503] ([i915#2437])
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-4/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-tglu-1: NOTRUN -> [SKIP][504] ([i915#2437])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-1/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][505] ([i915#7387])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-7/igt@perf@global-sseu-config-invalid.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][506] ([i915#2435])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-8/igt@perf@per-context-mode-unprivileged.html
- shard-dg1: NOTRUN -> [SKIP][507] ([i915#2433])
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-15/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start:
- shard-mtlp: NOTRUN -> [FAIL][508] ([i915#4349]) +2 other tests fail
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-8/igt@perf_pmu@busy-double-start.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][509] -> [FAIL][510] ([i915#4349]) +2 other tests fail
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [FAIL][511] ([i915#14433])
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-glk6/igt@perf_pmu@module-unload.html
- shard-dg2: NOTRUN -> [FAIL][512] ([i915#14433])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-8/igt@perf_pmu@module-unload.html
- shard-rkl: NOTRUN -> [FAIL][513] ([i915#14433])
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@perf_pmu@module-unload.html
- shard-dg1: NOTRUN -> [FAIL][514] ([i915#14433])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-12/igt@perf_pmu@module-unload.html
- shard-snb: NOTRUN -> [FAIL][515] ([i915#14433])
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-snb7/igt@perf_pmu@module-unload.html
- shard-tglu: NOTRUN -> [FAIL][516] ([i915#14433])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-6/igt@perf_pmu@module-unload.html
- shard-mtlp: NOTRUN -> [FAIL][517] ([i915#14433])
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-8/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][518] ([i915#8516])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-8/igt@perf_pmu@rc6-all-gts.html
- shard-rkl: NOTRUN -> [SKIP][519] ([i915#8516]) +1 other test skip
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-1/igt@perf_pmu@rc6-all-gts.html
- shard-dg1: NOTRUN -> [SKIP][520] ([i915#8516]) +1 other test skip
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@perf_pmu@rc6-all-gts.html
- shard-tglu: NOTRUN -> [SKIP][521] ([i915#8516]) +1 other test skip
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-9/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6-suspend:
- shard-glk10: NOTRUN -> [ABORT][522] ([i915#15317]) +1 other test abort
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-glk10/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][523] ([i915#3291] / [i915#3708]) +1 other test skip
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-4/igt@prime_vgem@basic-fence-read.html
- shard-rkl: NOTRUN -> [SKIP][524] ([i915#14544] / [i915#3291] / [i915#3708]) +1 other test skip
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@prime_vgem@basic-fence-read.html
- shard-dg1: NOTRUN -> [SKIP][525] ([i915#3708]) +3 other tests skip
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-15/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- shard-rkl: NOTRUN -> [SKIP][526] ([i915#3291] / [i915#3708])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][527] ([i915#3708])
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-4/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-mtlp: NOTRUN -> [SKIP][528] ([i915#3708]) +3 other tests skip
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-7/igt@prime_vgem@fence-write-hang.html
- shard-dg2: NOTRUN -> [SKIP][529] ([i915#3708])
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@prime_vgem@fence-write-hang.html
- shard-rkl: NOTRUN -> [SKIP][530] ([i915#14544] / [i915#3708])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-tglu: NOTRUN -> [FAIL][531] ([i915#12910]) +10 other tests fail
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-10/igt@sriov_basic@enable-vfs-autoprobe-on.html
- shard-dg2: NOTRUN -> [SKIP][532] ([i915#9917]) +1 other test skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@sriov_basic@enable-vfs-autoprobe-on.html
- shard-rkl: NOTRUN -> [SKIP][533] ([i915#9917]) +1 other test skip
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
- shard-dg1: NOTRUN -> [SKIP][534] ([i915#9917]) +1 other test skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-19/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-mtlp: NOTRUN -> [FAIL][535] ([i915#12910])
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][536] ([i915#4818])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-8/igt@tools_test@sysfs_l3_parity.html
- shard-dg1: NOTRUN -> [SKIP][537] ([i915#4818])
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg1-16/igt@tools_test@sysfs_l3_parity.html
- shard-mtlp: NOTRUN -> [SKIP][538] ([i915#4818])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s0:
- shard-rkl: [ABORT][539] ([i915#15317]) -> [PASS][540] +1 other test pass
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-7/igt@gem_exec_suspend@basic-s0.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s3:
- shard-dg2: [ABORT][541] ([i915#15317]) -> [PASS][542] +1 other test pass
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-dg2-4/igt@gem_exec_suspend@basic-s3.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@gem_exec_suspend@basic-s3.html
* igt@gem_workarounds@suspend-resume-context:
- shard-snb: [ABORT][543] ([i915#15317]) -> [PASS][544]
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-snb5/igt@gem_workarounds@suspend-resume-context.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-snb1/igt@gem_workarounds@suspend-resume-context.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][545] ([i915#5138]) -> [PASS][546] +1 other test pass
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][547] ([i915#13566]) -> [PASS][548] +1 other test pass
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [FAIL][549] ([i915#13566]) -> [PASS][550] +1 other test pass
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: [SKIP][551] ([i915#3555] / [i915#8228]) -> [PASS][552]
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][553] ([i915#15073]) -> [PASS][554]
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@perf_pmu@rc6-suspend:
- shard-mtlp: [ABORT][555] ([i915#15317]) -> [PASS][556]
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-mtlp-4/igt@perf_pmu@rc6-suspend.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-mtlp-5/igt@perf_pmu@rc6-suspend.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: [SKIP][557] ([i915#14544] / [i915#8411]) -> [SKIP][558] ([i915#8411])
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: [SKIP][559] ([i915#14544] / [i915#9323]) -> [SKIP][560] ([i915#9323])
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [ABORT][561] ([i915#15317]) -> [INCOMPLETE][562] ([i915#13356]) +1 other test incomplete
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-dg2-8/igt@gem_ccs@suspend-resume.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-5/igt@gem_ccs@suspend-resume.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: [SKIP][563] ([i915#14544] / [i915#280]) -> [SKIP][564] ([i915#280])
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: [SKIP][565] ([i915#14544] / [i915#4525]) -> [SKIP][566] ([i915#4525])
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-1/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-rkl: [SKIP][567] ([i915#14544] / [i915#3281]) -> [SKIP][568] ([i915#3281])
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-noreloc.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-rkl: [SKIP][569] ([i915#3281]) -> [SKIP][570] ([i915#14544] / [i915#3281]) +1 other test skip
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_lmem_swapping@smem-oom:
- shard-rkl: [SKIP][571] ([i915#4613]) -> [SKIP][572] ([i915#14544] / [i915#4613])
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-8/igt@gem_lmem_swapping@smem-oom.html
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [SKIP][573] ([i915#14544] / [i915#3282]) -> [SKIP][574] ([i915#3282]) +1 other test skip
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: [SKIP][575] ([i915#14544] / [i915#3297]) -> [SKIP][576] ([i915#3297])
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap.html
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen9_exec_parse@basic-rejected:
- shard-rkl: [SKIP][577] ([i915#2527]) -> [SKIP][578] ([i915#14544] / [i915#2527])
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-8/igt@gen9_exec_parse@basic-rejected.html
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-rkl: [SKIP][579] ([i915#14544] / [i915#2527]) -> [SKIP][580] ([i915#2527])
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@gen9_exec_parse@batch-zero-length.html
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@gen9_exec_parse@batch-zero-length.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-rkl: [SKIP][581] ([i915#14544] / [i915#5286]) -> [SKIP][582] ([i915#5286])
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: [SKIP][583] ([i915#14544] / [i915#3638]) -> [SKIP][584] ([i915#3638])
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: [SKIP][585] -> [SKIP][586] ([i915#14544]) +1 other test skip
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs:
- shard-rkl: [SKIP][587] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][588] ([i915#14098] / [i915#6095]) +3 other tests skip
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-ccs.html
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-5/igt@kms_ccs@bad-pixel-format-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][589] ([i915#12805] / [i915#14544]) -> [SKIP][590] ([i915#12805])
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][591] ([i915#6095]) -> [SKIP][592] ([i915#14544] / [i915#6095])
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][593] ([i915#14098] / [i915#6095]) -> [SKIP][594] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-c-hdmi-a-2.html
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][595] ([i915#14544] / [i915#6095]) -> [SKIP][596] ([i915#6095]) +1 other test skip
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-rkl: [SKIP][597] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][598] ([i915#11151] / [i915#7828]) +1 other test skip
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_chamelium_edid@dp-mode-timings.html
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-rkl: [SKIP][599] ([i915#11151] / [i915#7828]) -> [SKIP][600] ([i915#11151] / [i915#14544] / [i915#7828])
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-5/igt@kms_chamelium_edid@hdmi-mode-timings.html
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_content_protection@legacy:
- shard-dg2: [FAIL][601] ([i915#7173]) -> [SKIP][602] ([i915#7118] / [i915#9424])
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-dg2-11/igt@kms_content_protection@legacy.html
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-3/igt@kms_content_protection@legacy.html
- shard-rkl: [SKIP][603] ([i915#14544] / [i915#7118] / [i915#9424]) -> [SKIP][604] ([i915#7118] / [i915#9424])
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_content_protection@legacy.html
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: [SKIP][605] ([i915#14544] / [i915#3555]) -> [SKIP][606] ([i915#3555])
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-rkl: [SKIP][607] ([i915#14544]) -> [SKIP][608] +2 other tests skip
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: [SKIP][609] ([i915#14544] / [i915#4103]) -> [SKIP][610] ([i915#4103])
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dp_aux_dev:
- shard-rkl: [SKIP][611] ([i915#1257] / [i915#14544]) -> [SKIP][612] ([i915#1257])
[611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_dp_aux_dev.html
[612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: [SKIP][613] ([i915#13748] / [i915#14544]) -> [SKIP][614] ([i915#13748])
[613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html
[614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-5/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][615] ([i915#3955]) -> [SKIP][616] ([i915#14544] / [i915#3955])
[615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-8/igt@kms_fbcon_fbt@psr.html
[616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: [SKIP][617] ([i915#1839]) -> [SKIP][618] ([i915#14544] / [i915#1839])
[617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-4/igt@kms_feature_discovery@display-2x.html
[618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-rkl: [SKIP][619] ([i915#14544] / [i915#9934]) -> [SKIP][620] ([i915#9934]) +2 other tests skip
[619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-rkl: [SKIP][621] ([i915#9934]) -> [SKIP][622] ([i915#14544] / [i915#9934])
[621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-4/igt@kms_flip@2x-nonexisting-fb-interruptible.html
[622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: [SKIP][623] ([i915#2672] / [i915#3555]) -> [SKIP][624] ([i915#14544] / [i915#2672] / [i915#3555])
[623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-rkl: [SKIP][625] ([i915#2672]) -> [SKIP][626] ([i915#14544] / [i915#2672])
[625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
[626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][627] ([i915#14544] / [i915#1825]) -> [SKIP][628] ([i915#1825]) +8 other tests skip
[627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
[628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][629] ([i915#15102] / [i915#3458]) -> [SKIP][630] ([i915#10433] / [i915#15102] / [i915#3458])
[629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: [SKIP][631] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][632] ([i915#15102] / [i915#3023]) +3 other tests skip
[631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: [SKIP][633] ([i915#1825]) -> [SKIP][634] ([i915#14544] / [i915#1825]) +2 other tests skip
[633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-rkl: [SKIP][635] ([i915#15102] / [i915#3023]) -> [SKIP][636] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip
[635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
[636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: [SKIP][637] ([i915#3555]) -> [SKIP][638] ([i915#14544] / [i915#3555]) +3 other tests skip
[637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
[638]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-rkl: [SKIP][639] ([i915#12247]) -> [SKIP][640] ([i915#12247] / [i915#14544]) +2 other tests skip
[639]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
[640]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: [SKIP][641] ([i915#14544] / [i915#9685]) -> [SKIP][642] ([i915#9685])
[641]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
[642]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [SKIP][643] ([i915#15128]) -> [FAIL][644] ([i915#9295])
[643]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
[644]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][645] ([i915#9340]) -> [SKIP][646] ([i915#3828])
[645]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
[646]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][647] ([i915#11520] / [i915#14544]) -> [SKIP][648] ([i915#11520])
[647]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
[648]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][649] ([i915#11520]) -> [SKIP][650] ([i915#11520] / [i915#14544])
[649]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-2/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
[650]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-basic:
- shard-rkl: [SKIP][651] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][652] ([i915#1072] / [i915#9732]) +6 other tests skip
[651]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_psr@fbc-psr-basic.html
[652]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@kms_psr@fbc-psr-basic.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: [SKIP][653] ([i915#1072] / [i915#9732]) -> [SKIP][654] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
[653]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html
[654]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-rkl: [SKIP][655] ([i915#14544] / [i915#15232]) -> [SKIP][656] ([i915#15232])
[655]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
[656]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-7/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: [SKIP][657] ([i915#14544] / [i915#9917]) -> [SKIP][658] ([i915#9917])
[657]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html
[658]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/shard-rkl-3/igt@sriov_basic@bind-unbind-vf.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333
[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#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[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#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[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#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784
[i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[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#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15232]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15232
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15313
[i915#15314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15314
[i915#15317]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15317
[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#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[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#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#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#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[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#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[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#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#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8063]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8063
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[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#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9292
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[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
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8637 -> IGTPW_14100
CI-20190529: 20190529
CI_DRM_17580: c701e79730169fab373fba7e759497d755fac592 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14100: a77dace22491ff7d0d9bc885a598acd0efb34d4f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8637: 730ee3dfb26f8d7891fc240b0132a08c5bc7b949 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14100/index.html
[-- Attachment #2: Type: text/html, Size: 223522 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2025-11-25 12:10 UTC | newest]
Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-21 19:06 [PATCH i-g-t 0/8] kms: Small cleanups and refactoring Ville Syrjala
2025-11-21 19:06 ` [PATCH i-g-t 1/8] igt: Name drmModeCrtc variables 'drm_crtc' Ville Syrjala
2025-11-24 9:37 ` Jani Nikula
2025-11-24 21:11 ` Ville Syrjälä
2025-11-21 19:06 ` [PATCH i-g-t 2/8] lib/kms: Nuke PIPE_ANY Ville Syrjala
2025-11-24 7:25 ` Sharma, Swati2
2025-11-21 19:06 ` [PATCH i-g-t 3/8] lib/kms: Nuke unused kmstest_{crtc,plane} Ville Syrjala
2025-11-24 7:27 ` Sharma, Swati2
2025-11-21 19:06 ` [PATCH i-g-t 4/8] igt/kms: Nuke unused igt_pipe_*prop*() marcos and functions Ville Syrjala
2025-11-24 12:19 ` Sharma, Swati2
2025-11-21 19:06 ` [PATCH i-g-t 5/8] lib/kms: Turn the igt_plane*prop*() marcos into functions Ville Syrjala
2025-11-21 19:06 ` [PATCH i-g-t 6/8] lib/kms: Turn the igt_output*prop*() " Ville Syrjala
2025-11-21 19:06 ` [PATCH i-g-t 7/8] lib/kms: Turn the igt_pipe_obj*prop*() " Ville Syrjala
2025-11-21 19:06 ` [PATCH i-g-t 8/8] test/kms_color: Don't dig around in display->pipes[] so much Ville Syrjala
2025-11-24 9:34 ` [PATCH i-g-t 0/8] kms: Small cleanups and refactoring Jani Nikula
2025-11-25 5:48 ` ✓ Xe.CI.BAT: success for " Patchwork
2025-11-25 5:52 ` ✓ i915.CI.BAT: " Patchwork
2025-11-25 8:57 ` ✗ Xe.CI.Full: failure " Patchwork
2025-11-25 12:10 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox