* [PATCH i-g-t 0/8] IGT KMS Test cleanup
@ 2024-06-11 4:53 Bhanuprakash Modem
2024-06-11 4:53 ` [PATCH i-g-t 1/8] tests/intel/kms_fence_pin_leak: " Bhanuprakash Modem
` (15 more replies)
0 siblings, 16 replies; 27+ messages in thread
From: Bhanuprakash Modem @ 2024-06-11 4:53 UTC (permalink / raw)
To: igt-dev; +Cc: Bhanuprakash Modem
Make sure the below points in IGT cleanup:
- Sanitize the state before starting the subtest.
- Clear the states before exiting the subtest.
- Update existing libdrm APIs with IGT kms APIs.
- Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..)
Bhanuprakash Modem (5):
tests/intel/kms_fence_pin_leak: Test cleanup
tests/intel/kms_pwrite_crc: Test cleanup
tests/kms_tiled_display: Test cleanup
tests/kms_tv_load_detect: Test cleanup
tests/kms_universal_plane: Test cleanup
Kunal Joshi (2):
tests/intel/kms_pipe_b_c_ivb: Test cleanup
tests/kms_hdmi_inject: Test cleanup
Mohammed Thasleem (1):
tests/kms_properties: Create dynamic subtests
tests/intel/kms_fence_pin_leak.c | 11 +-
tests/intel/kms_pipe_b_c_ivb.c | 9 +-
tests/intel/kms_pwrite_crc.c | 11 +-
tests/kms_hdmi_inject.c | 6 +-
tests/kms_properties.c | 188 +++++++++++++++----------------
tests/kms_tiled_display.c | 129 ++++++++-------------
tests/kms_tv_load_detect.c | 1 +
tests/kms_universal_plane.c | 10 +-
8 files changed, 164 insertions(+), 201 deletions(-)
--
2.43.2
^ permalink raw reply [flat|nested] 27+ messages in thread
* [PATCH i-g-t 1/8] tests/intel/kms_fence_pin_leak: Test cleanup
2024-06-11 4:53 [PATCH i-g-t 0/8] IGT KMS Test cleanup Bhanuprakash Modem
@ 2024-06-11 4:53 ` Bhanuprakash Modem
2024-06-14 5:28 ` B, Jeevan
2024-06-11 4:53 ` [PATCH i-g-t 2/8] tests/intel/kms_pipe_b_c_ivb: " Bhanuprakash Modem
` (14 subsequent siblings)
15 siblings, 1 reply; 27+ messages in thread
From: Bhanuprakash Modem @ 2024-06-11 4:53 UTC (permalink / raw)
To: igt-dev; +Cc: Bhanuprakash Modem
Make sure the below points in IGT cleanup:
- Sanitize the state before starting the subtest.
- Clear the states before exiting the subtest.
- Update existing libdrm APIs with IGT kms APIs.
- Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/intel/kms_fence_pin_leak.c | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/tests/intel/kms_fence_pin_leak.c b/tests/intel/kms_fence_pin_leak.c
index 5d25d9ee3..8ccd73a93 100644
--- a/tests/intel/kms_fence_pin_leak.c
+++ b/tests/intel/kms_fence_pin_leak.c
@@ -199,7 +199,7 @@ static void run_single_test(data_t *data, enum pipe pipe, igt_output_t *output)
}
igt_plane_set_fb(primary, NULL);
- igt_output_set_pipe(output, PIPE_ANY);
+ igt_output_set_pipe(output, PIPE_NONE);
igt_display_commit(display);
igt_remove_fb(data->drm_fd, &fb[1]);
@@ -234,18 +234,17 @@ igt_simple_main
data_t data = {};
data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
+ kmstest_set_vt_graphics_mode();
+ igt_display_require(&data.display, data.drm_fd);
+ igt_display_require_output(&data.display);
+
igt_require_gem(data.drm_fd);
igt_require(gem_available_fences(data.drm_fd) > 0);
igt_require(gem_has_contexts(data.drm_fd));
data.devid = intel_get_drm_devid(data.drm_fd);
-
- kmstest_set_vt_graphics_mode();
-
data.bops = buf_ops_create(data.drm_fd);
- igt_display_require(&data.display, data.drm_fd);
-
alloc_fence_objs(&data);
run_test(&data);
--
2.43.2
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [PATCH i-g-t 2/8] tests/intel/kms_pipe_b_c_ivb: Test cleanup
2024-06-11 4:53 [PATCH i-g-t 0/8] IGT KMS Test cleanup Bhanuprakash Modem
2024-06-11 4:53 ` [PATCH i-g-t 1/8] tests/intel/kms_fence_pin_leak: " Bhanuprakash Modem
@ 2024-06-11 4:53 ` Bhanuprakash Modem
2024-06-12 11:29 ` B, Jeevan
2024-06-11 4:53 ` [PATCH i-g-t 3/8] tests/intel/kms_pwrite_crc: " Bhanuprakash Modem
` (13 subsequent siblings)
15 siblings, 1 reply; 27+ messages in thread
From: Bhanuprakash Modem @ 2024-06-11 4:53 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi, Jeevan B, Swati Sharma, Bhanuprakash Modem
From: Kunal Joshi <kunal1.joshi@intel.com>
Make sure the below points in IGT cleanup:
- Sanitize the state before starting the subtest.
- Clear the states before exiting the subtest.
- Update existing libdrm APIs with IGT kms APIs.
- Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..)
v2:
- Corrected commit subject. (Swati)
- Removed comments (Swati)
v3: (Bhanu)
- Rebase
CC: Jeevan B <jeevan.b@intel.com>
Cc: Swati Sharma <swati2.sharma@intel.com>
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
Reviewed-by: Jeevan B <jeevan.b@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/intel/kms_pipe_b_c_ivb.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/tests/intel/kms_pipe_b_c_ivb.c b/tests/intel/kms_pipe_b_c_ivb.c
index 71699e792..73083408a 100644
--- a/tests/intel/kms_pipe_b_c_ivb.c
+++ b/tests/intel/kms_pipe_b_c_ivb.c
@@ -164,7 +164,7 @@ find_outputs(data_t *data, igt_output_t **output1, igt_output_t **output2)
if (pipe == PIPE_C && output != *output1 && !*output2)
*output2 = output;
- igt_output_set_pipe(output, PIPE_ANY);
+ igt_output_set_pipe(output, PIPE_NONE);
}
igt_skip_on_f(!*output1 || !*output2, "Not enough connected outputs\n");
@@ -176,6 +176,7 @@ test_dpms(data_t *data)
igt_output_t *output1, *output2;
int ret;
+ igt_display_reset(&data->display);
find_outputs(data, &output1, &output2);
igt_info("Pipe %s will use connector %s\n",
@@ -198,6 +199,8 @@ test_lane_reduction(data_t *data)
igt_output_t *output1, *output2;
int ret;
+ igt_display_reset(&data->display);
+
find_outputs(data, &output1, &output2);
igt_info("Pipe %s will use connector %s\n",
@@ -221,6 +224,7 @@ test_disable_pipe_B(data_t *data)
igt_output_t *output1, *output2;
int ret;
+ igt_display_reset(&data->display);
find_outputs(data, &output1, &output2);
igt_info("Pipe %s will use connector %s\n",
@@ -247,6 +251,7 @@ test_from_C_to_B_with_3_lanes(data_t *data)
igt_output_t *output1, *output2;
int ret;
+ igt_display_reset(&data->display);
find_outputs(data, &output1, &output2);
igt_info("Pipe %s will use connector %s\n",
@@ -270,6 +275,7 @@ test_fail_enable_pipe_C_while_B_has_3_lanes(data_t *data)
igt_output_t *output1, *output2;
int ret;
+ igt_display_reset(&data->display);
find_outputs(data, &output1, &output2);
igt_info("Pipe %s will use connector %s\n",
@@ -296,6 +302,7 @@ igt_main
kmstest_set_vt_graphics_mode();
igt_display_require(&data.display, data.drm_fd);
+ igt_display_require_output(&data.display);
}
igt_describe("Tests pipe-B and pipe-C interactions in IVB by enabling pipe-B with mode "
--
2.43.2
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [PATCH i-g-t 3/8] tests/intel/kms_pwrite_crc: Test cleanup
2024-06-11 4:53 [PATCH i-g-t 0/8] IGT KMS Test cleanup Bhanuprakash Modem
2024-06-11 4:53 ` [PATCH i-g-t 1/8] tests/intel/kms_fence_pin_leak: " Bhanuprakash Modem
2024-06-11 4:53 ` [PATCH i-g-t 2/8] tests/intel/kms_pipe_b_c_ivb: " Bhanuprakash Modem
@ 2024-06-11 4:53 ` Bhanuprakash Modem
2024-06-12 11:30 ` B, Jeevan
2024-06-11 4:53 ` [PATCH i-g-t 4/8] tests/kms_hdmi_inject: " Bhanuprakash Modem
` (12 subsequent siblings)
15 siblings, 1 reply; 27+ messages in thread
From: Bhanuprakash Modem @ 2024-06-11 4:53 UTC (permalink / raw)
To: igt-dev; +Cc: Bhanuprakash Modem
Make sure the below points in IGT cleanup:
- Sanitize the state before starting the subtest.
- Clear the states before exiting the subtest.
- Update existing libdrm APIs with IGT kms APIs.
- Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..)
V2:
- Drop igt_fixture form igt_simple_main
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/intel/kms_pwrite_crc.c | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/tests/intel/kms_pwrite_crc.c b/tests/intel/kms_pwrite_crc.c
index 12add5da6..338c92c3a 100644
--- a/tests/intel/kms_pwrite_crc.c
+++ b/tests/intel/kms_pwrite_crc.c
@@ -125,7 +125,6 @@ static void prepare_crtc(data_t *data)
igt_output_t *output = data->output;
drmModeModeInfo *mode;
- igt_display_reset(display);
/* select the pipe we want to use */
igt_output_set_pipe(output, data->pipe);
@@ -161,7 +160,7 @@ static void cleanup_crtc(data_t *data)
igt_plane_set_fb(data->primary, NULL);
- igt_output_set_pipe(output, PIPE_ANY);
+ igt_output_set_pipe(output, PIPE_NONE);
igt_display_commit(display);
igt_remove_fb(data->drm_fd, &data->fb[0]);
@@ -196,14 +195,14 @@ static data_t data;
igt_simple_main
{
data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
-
- data.devid = intel_get_drm_devid(data.drm_fd);
-
kmstest_set_vt_graphics_mode();
+ igt_display_require(&data.display, data.drm_fd);
+ igt_display_require_output(&data.display);
igt_require_pipe_crc(data.drm_fd);
- igt_display_require(&data.display, data.drm_fd);
+ data.devid = intel_get_drm_devid(data.drm_fd);
+ data.pipe_crc = NULL;
run_test(&data);
--
2.43.2
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [PATCH i-g-t 4/8] tests/kms_hdmi_inject: Test cleanup
2024-06-11 4:53 [PATCH i-g-t 0/8] IGT KMS Test cleanup Bhanuprakash Modem
` (2 preceding siblings ...)
2024-06-11 4:53 ` [PATCH i-g-t 3/8] tests/intel/kms_pwrite_crc: " Bhanuprakash Modem
@ 2024-06-11 4:53 ` Bhanuprakash Modem
2024-06-12 11:32 ` B, Jeevan
2024-06-11 4:53 ` [PATCH i-g-t 5/8] tests/kms_tiled_display: " Bhanuprakash Modem
` (11 subsequent siblings)
15 siblings, 1 reply; 27+ messages in thread
From: Bhanuprakash Modem @ 2024-06-11 4:53 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi, Jeevan B, Bhanuprakash Modem
From: Kunal Joshi <kunal1.joshi@intel.com>
Make sure the below points in IGT cleanup:
- Sanitize the state before starting the subtest.
- Clear the states before exiting the subtest.
- Update existing libdrm APIs with IGT kms APIs.
- Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..)
v2: (Bhanu)
- Rebase
- Initialize pointers with NULL
- Update connector type HDMI checks
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
Reviewed-by: Jeevan B <jeevan.b@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_hdmi_inject.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/tests/kms_hdmi_inject.c b/tests/kms_hdmi_inject.c
index dce74fac0..d28be38e4 100644
--- a/tests/kms_hdmi_inject.c
+++ b/tests/kms_hdmi_inject.c
@@ -80,14 +80,15 @@ static drmModeConnector *
get_connector(int drm_fd, drmModeRes *res)
{
int i;
- drmModeConnector *connector;
+ drmModeConnector *connector = NULL;
for (i = 0; i < res->count_connectors; i++) {
connector =
drmModeGetConnectorCurrent(drm_fd, res->connectors[i]);
- if (connector->connector_type == DRM_MODE_CONNECTOR_HDMIA)
+ if (connector->connector_type == DRM_MODE_CONNECTOR_HDMIA ||
+ connector->connector_type == DRM_MODE_CONNECTOR_HDMIB)
break;
drmModeFreeConnector(connector);
@@ -243,6 +244,7 @@ igt_main
igt_fixture {
drmModeFreeConnector(connector);
+ drmModeFreeResources(res);
drm_close_driver(drm_fd);
}
}
--
2.43.2
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [PATCH i-g-t 5/8] tests/kms_tiled_display: Test cleanup
2024-06-11 4:53 [PATCH i-g-t 0/8] IGT KMS Test cleanup Bhanuprakash Modem
` (3 preceding siblings ...)
2024-06-11 4:53 ` [PATCH i-g-t 4/8] tests/kms_hdmi_inject: " Bhanuprakash Modem
@ 2024-06-11 4:53 ` Bhanuprakash Modem
2024-06-12 12:21 ` Kamil Konieczny
2024-06-14 8:09 ` [i-g-t V2 " Bhanuprakash Modem
2024-06-11 4:53 ` [PATCH i-g-t 6/8] tests/kms_tv_load_detect: " Bhanuprakash Modem
` (10 subsequent siblings)
15 siblings, 2 replies; 27+ messages in thread
From: Bhanuprakash Modem @ 2024-06-11 4:53 UTC (permalink / raw)
To: igt-dev; +Cc: Bhanuprakash Modem
Make sure the below points in IGT cleanup:
- Sanitize the state before starting the subtest.
- Clear the states before exiting the subtest.
- Update existing libdrm APIs with IGT kms APIs.
- Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_tiled_display.c | 129 ++++++++++++++------------------------
1 file changed, 48 insertions(+), 81 deletions(-)
diff --git a/tests/kms_tiled_display.c b/tests/kms_tiled_display.c
index 3ffd6a9a4..2096a63e1 100644
--- a/tests/kms_tiled_display.c
+++ b/tests/kms_tiled_display.c
@@ -79,7 +79,6 @@ typedef struct {
igt_fb_t fb_test_pattern;
igt_display_t display;
data_connector_t *conns;
- enum igt_commit_style commit;
struct timeval first_ts;
int linetime_us;
@@ -188,25 +187,6 @@ reset_plane(igt_output_t *output)
igt_plane_set_fb(primary, NULL);
}
-static void reset_output(igt_output_t *output)
-{
- igt_output_set_pipe(output, PIPE_NONE);
-}
-
-static void reset_mode(data_t *data)
-{
- int count;
- igt_output_t *output;
- data_connector_t *conns = data->conns;
-
- for (count = 0; count < data->num_h_tiles; count++) {
- output = igt_output_from_connector(&data->display,
- conns[count].connector);
- igt_output_set_pipe(output, PIPE_NONE);
- }
- igt_display_commit2(&data->display, data->commit);
-}
-
static void test_cleanup(data_t *data)
{
int count;
@@ -215,11 +195,11 @@ static void test_cleanup(data_t *data)
for (count = 0; count < data->num_h_tiles; count++) {
if (conns[count].output) {
reset_plane(conns[count].output);
- reset_output(conns[count].output);
+ igt_output_set_pipe(conns[count].output, PIPE_NONE);
}
}
igt_remove_fb(data->drm_fd, &data->fb_test_pattern);
- igt_display_commit2(&data->display, data->commit);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
memset(conns, 0, sizeof(data_connector_t) * data->num_h_tiles);
}
@@ -230,8 +210,8 @@ static int mode_linetime_us(const drmModeModeInfo *mode)
static void setup_mode(data_t *data)
{
- int count = 0, prev = 0, i = 0;
- bool pipe_in_use = false, found = false;
+ int count = 0, i = 0;
+ bool found = false;
enum pipe pipe;
drmModeModeInfo *mode;
igt_output_t *output;
@@ -242,51 +222,45 @@ static void setup_mode(data_t *data)
* This is done to ensure a complete modeset occures every
* time the test is run.
*/
- reset_mode(data);
+ igt_display_reset(&data->display);
for (count = 0; count < data->num_h_tiles; count++) {
+ conns[count].pipe = PIPE_NONE;
output = igt_output_from_connector(&data->display,
conns[count].connector);
for_each_pipe(&data->display, pipe) {
- pipe_in_use = false;
- found = false;
-
- if (count > 0) {
- for (prev = count - 1; prev >= 0; prev--) {
- if (pipe == conns[prev].pipe) {
- pipe_in_use = true;
- break;
- }
+ if (output->pending_pipe == pipe)
+ continue;
+
+ igt_output_set_pipe(output, pipe);
+ for (i = 0; i < conns[count].connector->count_modes; i++) {
+ mode = &conns[count].connector->modes[i];
+ if (mode->vdisplay == conns[count].tile.tile_v_size &&
+ mode->hdisplay == conns[count].tile.tile_h_size) {
+ found = true;
+ break;
}
- if (pipe_in_use)
- continue;
}
- if (igt_pipe_connector_valid(pipe, output)) {
- conns[count].pipe = pipe;
- conns[count].output = output;
-
- igt_output_set_pipe(conns[count].output,
- conns[count].pipe);
- break;
+ if (!found) {
+ igt_output_set_pipe(output, PIPE_NONE);
+ continue;
}
- }
- igt_require(conns[count].pipe != PIPE_NONE);
- for (i = 0; i < conns[count].connector->count_modes; i++) {
- mode = &conns[count].connector->modes[i];
- if (mode->vdisplay == conns[count].tile.tile_v_size &&
- mode->hdisplay == conns[count].tile.tile_h_size) {
- found = true;
- break;
+ igt_output_override_mode(output, mode);
+ if (!intel_pipe_output_combo_valid(&data->display)) {
+ igt_output_set_pipe(output, PIPE_NONE);
+ continue;
}
+
+ conns[count].pipe = pipe;
+ conns[count].output = output;
+ break;
}
- igt_require(found);
- igt_output_override_mode(output, mode);
+ igt_require(conns[count].pipe != PIPE_NONE);
data->linetime_us = mode_linetime_us(mode);
}
- igt_require(intel_pipe_output_combo_valid(&data->display));
igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
}
@@ -529,7 +503,6 @@ static void override_edid(data_t *data)
igt_output_t *output;
int num_outputs = 0;
int num_tiles = 0;
- drmModeResPtr res;
igt_require(data->display.n_pipes >= 2);
@@ -551,10 +524,7 @@ static void override_edid(data_t *data)
num_tiles = min(num_outputs, data->display.n_pipes);
/* disable everything so that we are sure to get a full modeset */
- res = drmModeGetResources(data->drm_fd);
- igt_require(res);
- kmstest_unset_all_crtcs(data->drm_fd, res);
- drmModeFreeResources(res);
+ igt_display_reset(&data->display);
for (int i = 0; i < num_tiles; i++)
force_edid_with_tile(data, outputs[i],
@@ -563,28 +533,24 @@ static void override_edid(data_t *data)
static void basic_test(data_t *data, drmEventContext *drm_event, struct pollfd *pfd)
{
- int ret;
-
- get_number_of_h_tiles(data);
- igt_debug("Number of Horizontal Tiles: %d\n",
- data->num_h_tiles);
- igt_require(data->num_h_tiles > 0);
- data->conns = calloc(data->num_h_tiles,
- sizeof(data_connector_t));
- igt_assert(data->conns);
-
- get_connectors(data);
- setup_mode(data);
- setup_framebuffer(data);
- timerclear(&data->first_ts);
- igt_display_commit_atomic(&data->display,
+ int ret;
+
+ data->conns = calloc(data->num_h_tiles,
+ sizeof(data_connector_t));
+ igt_assert(data->conns);
+
+ get_connectors(data);
+ setup_mode(data);
+ setup_framebuffer(data);
+ timerclear(&data->first_ts);
+ igt_display_commit_atomic(&data->display,
DRM_MODE_ATOMIC_NONBLOCK |
DRM_MODE_PAGE_FLIP_EVENT, data);
- while (!got_all_page_flips(data)) {
- ret = poll(pfd, 1, 1000);
- igt_assert(ret == 1);
- drmHandleEvent(data->drm_fd, drm_event);
- }
+ while (!got_all_page_flips(data)) {
+ ret = poll(pfd, 1, 1000);
+ igt_assert(ret == 1);
+ drmHandleEvent(data->drm_fd, drm_event);
+ }
}
igt_main
@@ -596,14 +562,15 @@ igt_main
data.drm_fd = drm_open_driver_master(DRIVER_ANY);
kmstest_set_vt_graphics_mode();
igt_display_require(&data.display, data.drm_fd);
+ igt_require(data.display.is_atomic);
+ igt_display_require_output(&data.display);
+
igt_display_reset(&data.display);
pfd.fd = data.drm_fd;
pfd.events = POLLIN;
drm_event.version = 3;
drm_event.page_flip_handler2 = page_flip_handler;
- data.commit = data.display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY;
- igt_require(data.commit == COMMIT_ATOMIC);
get_number_of_h_tiles(&data);
igt_debug("Number of real horizontal tiles: %d\n", data.num_h_tiles);
--
2.43.2
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [PATCH i-g-t 6/8] tests/kms_tv_load_detect: Test cleanup
2024-06-11 4:53 [PATCH i-g-t 0/8] IGT KMS Test cleanup Bhanuprakash Modem
` (4 preceding siblings ...)
2024-06-11 4:53 ` [PATCH i-g-t 5/8] tests/kms_tiled_display: " Bhanuprakash Modem
@ 2024-06-11 4:53 ` Bhanuprakash Modem
2024-06-12 11:34 ` B, Jeevan
2024-06-11 4:53 ` [PATCH i-g-t 7/8] tests/kms_universal_plane: " Bhanuprakash Modem
` (9 subsequent siblings)
15 siblings, 1 reply; 27+ messages in thread
From: Bhanuprakash Modem @ 2024-06-11 4:53 UTC (permalink / raw)
To: igt-dev; +Cc: Bhanuprakash Modem
Make sure the below points in IGT cleanup:
- Sanitize the state before starting the subtest.
- Clear the states before exiting the subtest.
- Update existing libdrm APIs with IGT kms APIs.
- Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_tv_load_detect.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/kms_tv_load_detect.c b/tests/kms_tv_load_detect.c
index 8feed385f..9f6f4071e 100644
--- a/tests/kms_tv_load_detect.c
+++ b/tests/kms_tv_load_detect.c
@@ -99,6 +99,7 @@ igt_main
igt_fixture {
drmModeFreeConnector(tv_connector);
+ drmModeFreeResources(res);
drm_close_driver(drm_fd);
}
}
--
2.43.2
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [PATCH i-g-t 7/8] tests/kms_universal_plane: Test cleanup
2024-06-11 4:53 [PATCH i-g-t 0/8] IGT KMS Test cleanup Bhanuprakash Modem
` (5 preceding siblings ...)
2024-06-11 4:53 ` [PATCH i-g-t 6/8] tests/kms_tv_load_detect: " Bhanuprakash Modem
@ 2024-06-11 4:53 ` Bhanuprakash Modem
2024-06-12 11:35 ` B, Jeevan
2024-06-11 4:53 ` [PATCH i-g-t 8/8] tests/kms_properties: Create dynamic subtests Bhanuprakash Modem
` (8 subsequent siblings)
15 siblings, 1 reply; 27+ messages in thread
From: Bhanuprakash Modem @ 2024-06-11 4:53 UTC (permalink / raw)
To: igt-dev; +Cc: Bhanuprakash Modem
Make sure the below points in IGT cleanup:
- Sanitize the state before starting the subtest.
- Clear the states before exiting the subtest.
- Update existing libdrm APIs with IGT kms APIs.
- Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_universal_plane.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c
index a6e11777d..8c1ce8143 100644
--- a/tests/kms_universal_plane.c
+++ b/tests/kms_universal_plane.c
@@ -139,7 +139,7 @@ functional_test_fini(functional_test_t *test, igt_output_t *output)
igt_remove_fb(test->data->drm_fd, &test->red_fb);
igt_remove_fb(test->data->drm_fd, &test->yellow_fb);
- igt_output_set_pipe(output, PIPE_ANY);
+ igt_output_set_pipe(output, PIPE_NONE);
igt_display_commit2(&test->data->display, COMMIT_LEGACY);
}
@@ -386,7 +386,7 @@ sanity_test_fini(sanity_test_t *test, igt_output_t *output)
igt_remove_fb(test->data->drm_fd, &test->undersized_fb);
igt_remove_fb(test->data->drm_fd, &test->blue_fb);
- igt_output_set_pipe(output, PIPE_ANY);
+ igt_output_set_pipe(output, PIPE_NONE);
igt_display_commit2(&test->data->display, COMMIT_LEGACY);
}
@@ -516,7 +516,7 @@ pageflip_test_fini(pageflip_test_t *test, igt_output_t *output)
igt_remove_fb(test->data->drm_fd, &test->red_fb);
igt_remove_fb(test->data->drm_fd, &test->blue_fb);
- igt_output_set_pipe(output, PIPE_ANY);
+ igt_output_set_pipe(output, PIPE_NONE);
igt_display_commit2(&test->data->display, COMMIT_LEGACY);
}
@@ -603,7 +603,7 @@ cursor_leak_test_fini(data_t *data,
for (i = 0; i < 10; i++)
igt_remove_fb(data->drm_fd, &curs[i]);
- igt_output_set_pipe(output, PIPE_ANY);
+ igt_output_set_pipe(output, PIPE_NONE);
}
static int
@@ -752,7 +752,7 @@ gen9_test_fini(gen9_test_t *test, igt_output_t *output)
igt_remove_fb(test->data->drm_fd, &test->smallred_fb);
igt_remove_fb(test->data->drm_fd, &test->smallblue_fb);
- igt_output_set_pipe(output, PIPE_ANY);
+ igt_output_set_pipe(output, PIPE_NONE);
igt_display_commit2(&test->data->display, COMMIT_LEGACY);
}
--
2.43.2
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [PATCH i-g-t 8/8] tests/kms_properties: Create dynamic subtests
2024-06-11 4:53 [PATCH i-g-t 0/8] IGT KMS Test cleanup Bhanuprakash Modem
` (6 preceding siblings ...)
2024-06-11 4:53 ` [PATCH i-g-t 7/8] tests/kms_universal_plane: " Bhanuprakash Modem
@ 2024-06-11 4:53 ` Bhanuprakash Modem
2024-06-12 11:47 ` B, Jeevan
2024-06-11 7:14 ` ✓ Fi.CI.BAT: success for IGT KMS Test cleanup (rev2) Patchwork
` (7 subsequent siblings)
15 siblings, 1 reply; 27+ messages in thread
From: Bhanuprakash Modem @ 2024-06-11 4:53 UTC (permalink / raw)
To: igt-dev; +Cc: Mohammed Thasleem, Bhanuprakash Modem
From: Mohammed Thasleem <mohammed.thasleem@intel.com>
Modified kms_properties to include dynamic test cases.
v2: Fixed compilation issue.
v3: Removed redundant code.
v4: Moved get_prop_sanity calls to igt_subtest_group.
v5: Replace for loop with for_each_disconnected_output.
v6: Moved cleanup part to igt cleanup patch.
v7: (Bhanu)
- Rebase
- Handle disconnected outputs
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_properties.c | 188 +++++++++++++++++++----------------------
1 file changed, 88 insertions(+), 100 deletions(-)
diff --git a/tests/kms_properties.c b/tests/kms_properties.c
index bd414f534..17e6c0471 100644
--- a/tests/kms_properties.c
+++ b/tests/kms_properties.c
@@ -268,95 +268,76 @@ static void run_connector_property_tests(igt_display_t *display, enum pipe pipe,
static void plane_properties(igt_display_t *display, bool atomic)
{
- bool found_any = false, found;
igt_output_t *output;
enum pipe pipe;
- if (atomic)
- igt_skip_on(!display->is_atomic);
-
- for_each_pipe(display, pipe) {
- found = false;
-
- for_each_valid_output_on_pipe(display, pipe, output) {
- igt_display_reset(display);
-
- igt_output_set_pipe(output, pipe);
- if (!intel_pipe_output_combo_valid(display))
- continue;
+ for_each_pipe_with_single_output(display, pipe, output) {
+ igt_display_reset(display);
- found_any = found = true;
+ igt_output_set_pipe(output, pipe);
+ if (!intel_pipe_output_combo_valid(display))
+ continue;
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe),
+ igt_output_name(output)) {
run_plane_property_tests(display, pipe, output, atomic);
- break;
}
}
-
- igt_skip_on(!found_any);
}
static void crtc_properties(igt_display_t *display, bool atomic)
{
- bool found_any_valid_pipe = false, found;
enum pipe pipe;
igt_output_t *output;
- if (atomic)
- igt_skip_on(!display->is_atomic);
-
- for_each_pipe(display, pipe) {
- found = false;
+ for_each_pipe_with_single_output(display, pipe, output) {
+ igt_display_reset(display);
- for_each_valid_output_on_pipe(display, pipe, output) {
- igt_display_reset(display);
-
- igt_output_set_pipe(output, pipe);
- if (!intel_pipe_output_combo_valid(display))
- continue;
-
- found_any_valid_pipe = found = true;
+ igt_output_set_pipe(output, pipe);
+ if (!intel_pipe_output_combo_valid(display))
+ continue;
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe),
+ igt_output_name(output)) {
run_crtc_property_tests(display, pipe, output, atomic);
- break;
}
}
-
- igt_skip_on(!found_any_valid_pipe);
}
static void connector_properties(igt_display_t *display, bool atomic)
{
- int i;
enum pipe pipe;
igt_output_t *output;
- if (atomic)
- igt_skip_on(!display->is_atomic);
-
for_each_connected_output(display, output) {
- bool found = false;
+ igt_display_reset(display);
for_each_pipe(display, pipe) {
if (!igt_pipe_connector_valid(pipe, output))
continue;
- igt_display_reset(display);
-
igt_output_set_pipe(output, pipe);
- if (!intel_pipe_output_combo_valid(display))
+ if (!intel_pipe_output_combo_valid(display)) {
+ igt_output_set_pipe(output, PIPE_NONE);
continue;
+ }
+
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe),
+ igt_output_name(output)) {
+ run_connector_property_tests(display, pipe, output, atomic);
+ }
- found = true;
- run_connector_property_tests(display, pipe, output, atomic);
break;
}
-
- igt_assert_f(found, "Connected output should have at least 1 valid crtc\n");
}
- for (i = 0; i < display->n_outputs; i++)
- if (!igt_output_is_connected(&display->outputs[i]))
- run_connector_property_tests(display, PIPE_NONE, &display->outputs[i], atomic);
+ for_each_disconnected_output(display, output) {
+ igt_display_reset(display);
+
+ igt_dynamic_f("pipe-None-%s", igt_output_name(output))
+ run_connector_property_tests(display, PIPE_NONE, output, atomic);
+
+ }
}
static void test_invalid_properties(int fd,
@@ -424,7 +405,6 @@ static void test_object_invalid_properties(igt_display_t *display,
igt_output_t *output;
igt_plane_t *plane;
enum pipe pipe;
- int i;
for_each_pipe(display, pipe)
test_invalid_properties(display->drm_fd, id, type, display->pipes[pipe].crtc_id, DRM_MODE_OBJECT_CRTC, atomic);
@@ -433,7 +413,7 @@ static void test_object_invalid_properties(igt_display_t *display,
for_each_plane_on_pipe(display, pipe, plane)
test_invalid_properties(display->drm_fd, id, type, plane->drm_plane->plane_id, DRM_MODE_OBJECT_PLANE, atomic);
- for (i = 0, output = &display->outputs[0]; i < display->n_outputs; output = &display->outputs[++i])
+ for_each_output(display, output)
test_invalid_properties(display->drm_fd, id, type, output->id, DRM_MODE_OBJECT_CONNECTOR, atomic);
}
@@ -763,7 +743,6 @@ static void invalid_properties(igt_display_t *display, bool atomic)
igt_output_t *output;
igt_plane_t *plane;
enum pipe pipe;
- int i;
if (atomic)
igt_skip_on(!display->is_atomic);
@@ -775,13 +754,33 @@ static void invalid_properties(igt_display_t *display, bool atomic)
for_each_plane_on_pipe(display, pipe, plane)
test_object_invalid_properties(display, plane->drm_plane->plane_id, DRM_MODE_OBJECT_PLANE, atomic);
- for (i = 0, output = &display->outputs[0]; i < display->n_outputs; output = &display->outputs[++i])
+ for_each_output(display, output)
test_object_invalid_properties(display, output->id, DRM_MODE_OBJECT_CONNECTOR, atomic);
}
igt_main
{
igt_display_t display;
+ int i;
+ static const struct {
+ const char *name;
+ void (*func)(igt_display_t *, bool);
+ const bool atomic;
+ const char *desc;
+ } tests[] = {
+ { "plane-properties-legacy", plane_properties, false,
+ "Tests plane properties with legacy commit" },
+ { "plane-properties-atomic", plane_properties, true,
+ "Tests plane properties with atomic commit" },
+ { "crtc-properties-legacy", crtc_properties, false,
+ "Tests crtc properties with legacy commit" },
+ { "crtc-properties-atomic", crtc_properties, true,
+ "Tests crtc properties with atomic commit" },
+ { "connector-properties-legacy", connector_properties, false,
+ "Tests connector properties with legacy commit" },
+ { "connector-properties-atomic", connector_properties, true,
+ "Tests connector properties with atomic commit" },
+ };
igt_fixture {
display.drm_fd = drm_open_driver_master(DRIVER_ANY);
@@ -791,59 +790,48 @@ igt_main
igt_display_require(&display, display.drm_fd);
}
- igt_describe("Tests plane properties with legacy commit");
- igt_subtest("plane-properties-legacy")
- plane_properties(&display, false);
-
- igt_describe("Tests plane properties with atomic commit");
- igt_subtest("plane-properties-atomic")
- plane_properties(&display, true);
-
- igt_describe("Tests crtc properties with legacy commit");
- igt_subtest("crtc-properties-legacy")
- crtc_properties(&display, false);
-
- igt_describe("Tests crtc properties with atomic commit");
- igt_subtest("crtc-properties-atomic")
- crtc_properties(&display, true);
-
- igt_describe("Tests connector properties with legacy commit");
- igt_subtest("connector-properties-legacy")
- connector_properties(&display, false);
-
- igt_describe("Tests connector properties with atomic commit");
- igt_subtest("connector-properties-atomic")
- connector_properties(&display, true);
-
- igt_describe("Checks each property of any type with combination of mode object with legacy "
- "commit and make sure only valid properties are set to mode object else "
- "return with relevant error");
-
- igt_subtest("invalid-properties-legacy")
- invalid_properties(&display, false);
-
- igt_describe("Checks each property of any type with combination of mode object with atomic "
- "commit and make sure only valid properties are set to mode object else "
- "return with relevant error");
+ for (i = 0; i < ARRAY_SIZE(tests); i++) {
+ igt_describe_f("%s\n", tests[i].desc);
+ igt_subtest_with_dynamic_f("%s", tests[i].name) {
+ if (tests->atomic && !display.is_atomic)
+ continue;
- igt_subtest("invalid-properties-atomic")
- invalid_properties(&display, true);
+ tests[i].func(&display, tests->atomic);
+ }
+ }
- igt_describe("Test validates the properties of all planes, crtc and connectors with atomic commit");
- igt_subtest("get_properties-sanity-atomic") {
- igt_skip_on(!display.is_atomic);
- get_prop_sanity(&display, true);
+ igt_subtest_group {
+ igt_describe("Checks each property of any type with combination of mode object "
+ "with legacy commit and make sure only valid properties are set to "
+ "mode object else return with relevant error");
+ igt_subtest("invalid-properties-legacy")
+ invalid_properties(&display, false);
+
+ igt_describe("Checks each property of any type with combination of mode object "
+ "with atomic commit and make sure only valid properties are set to "
+ "mode object else return with relevant error");
+ igt_subtest("invalid-properties-atomic")
+ invalid_properties(&display, true);
}
- igt_describe("Test validates the properties of all planes, crtc and connectors with legacy commit");
- igt_subtest("get_properties-sanity-non-atomic") {
- if (display.is_atomic)
- igt_assert_eq(drmSetClientCap(display.drm_fd, DRM_CLIENT_CAP_ATOMIC, 0), 0);
+ igt_subtest_group {
+ igt_describe("Test validates the properties of all planes, crtc and connectors with legacy commit");
+ igt_subtest("get_properties-sanity-non-atomic") {
+ if (display.is_atomic)
+ igt_assert_eq(drmSetClientCap(display.drm_fd, DRM_CLIENT_CAP_ATOMIC, 0), 0);
+ get_prop_sanity(&display, false);
+ if (display.is_atomic)
+ igt_assert_eq(drmSetClientCap(display.drm_fd, DRM_CLIENT_CAP_ATOMIC, 1), 0);
+ }
+ }
- get_prop_sanity(&display, false);
+ igt_subtest_group {
+ igt_fixture
+ igt_require(display.is_atomic);
- if (display.is_atomic)
- igt_assert_eq(drmSetClientCap(display.drm_fd, DRM_CLIENT_CAP_ATOMIC, 1), 0);
+ igt_describe("Test validates the properties of all planes, crtc and connectors with atomic commit");
+ igt_subtest("get_properties-sanity-atomic")
+ get_prop_sanity(&display, true);
}
igt_fixture {
--
2.43.2
^ permalink raw reply related [flat|nested] 27+ messages in thread
* ✓ Fi.CI.BAT: success for IGT KMS Test cleanup (rev2)
2024-06-11 4:53 [PATCH i-g-t 0/8] IGT KMS Test cleanup Bhanuprakash Modem
` (7 preceding siblings ...)
2024-06-11 4:53 ` [PATCH i-g-t 8/8] tests/kms_properties: Create dynamic subtests Bhanuprakash Modem
@ 2024-06-11 7:14 ` Patchwork
2024-06-11 7:19 ` ✗ CI.xeBAT: failure " Patchwork
` (6 subsequent siblings)
15 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2024-06-11 7:14 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3445 bytes --]
== Series Details ==
Series: IGT KMS Test cleanup (rev2)
URL : https://patchwork.freedesktop.org/series/134685/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14917 -> IGTPW_11247
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/index.html
Participating hosts (40 -> 35)
------------------------------
Missing (5): fi-kbl-7567u fi-bsw-n3050 fi-snb-2520m fi-glk-j4005 bat-mtlp-8
New tests
---------
New tests have been introduced between CI_DRM_14917 and IGTPW_11247:
### New IGT tests (2) ###
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-dp-8:
- Statuses : 1 pass(s)
- Exec time: [1.14] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-dp-8:
- Statuses : 1 pass(s)
- Exec time: [1.05] s
Known issues
------------
Here are the changes found in IGTPW_11247 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- {bat-mtlp-9}: [CRASH][1] ([i915#10911]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@gt_heartbeat:
- bat-arls-1: [DMESG-WARN][3] ([i915#10999]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/bat-arls-1/igt@i915_selftest@live@gt_heartbeat.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/bat-arls-1/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@objects:
- bat-arls-1: [DMESG-FAIL][5] ([i915#10262]) -> [PASS][6] +26 other tests pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/bat-arls-1/igt@i915_selftest@live@objects.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/bat-arls-1/igt@i915_selftest@live@objects.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262
[i915#10580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10580
[i915#10911]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10911
[i915#10999]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10999
[i915#11009]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11009
[i915#11060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11060
[i915#11328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11328
[i915#6121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6121
[i915#8585]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8585
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7880 -> IGTPW_11247
CI-20190529: 20190529
CI_DRM_14917: 34997e6c7d5e203ee9b54b8da59270ead2a82c59 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11247: 42e1813d438fd5a17ad3e3408d712eb7beab642b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7880: 73618605b4370cf902267aaf1d25666ff5e26112 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/index.html
[-- Attachment #2: Type: text/html, Size: 3711 bytes --]
^ permalink raw reply [flat|nested] 27+ messages in thread
* ✗ CI.xeBAT: failure for IGT KMS Test cleanup (rev2)
2024-06-11 4:53 [PATCH i-g-t 0/8] IGT KMS Test cleanup Bhanuprakash Modem
` (8 preceding siblings ...)
2024-06-11 7:14 ` ✓ Fi.CI.BAT: success for IGT KMS Test cleanup (rev2) Patchwork
@ 2024-06-11 7:19 ` Patchwork
2024-06-11 9:35 ` ✗ CI.xeFULL: " Patchwork
` (5 subsequent siblings)
15 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2024-06-11 7:19 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1608 bytes --]
== Series Details ==
Series: IGT KMS Test cleanup (rev2)
URL : https://patchwork.freedesktop.org/series/134685/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7880_BAT -> XEIGTPW_11247_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11247_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11247_BAT, 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 -> 1)
------------------------------
ERROR: It appears as if the changes made in XEIGTPW_11247_BAT prevented too many machines from booting.
Missing (3): bat-dg2-oem2 bat-lnl-1 bat-adlp-7
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_7880 -> IGTPW_11247
* Linux: xe-1413-cb97aa28be4f4b914c751ed27bae7782e027826c -> xe-1441-34997e6c7d5e203ee9b54b8da59270ead2a82c59
IGTPW_11247: 42e1813d438fd5a17ad3e3408d712eb7beab642b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7880: 73618605b4370cf902267aaf1d25666ff5e26112 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1413-cb97aa28be4f4b914c751ed27bae7782e027826c: cb97aa28be4f4b914c751ed27bae7782e027826c
xe-1441-34997e6c7d5e203ee9b54b8da59270ead2a82c59: 34997e6c7d5e203ee9b54b8da59270ead2a82c59
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/index.html
[-- Attachment #2: Type: text/html, Size: 2191 bytes --]
^ permalink raw reply [flat|nested] 27+ messages in thread
* ✗ CI.xeFULL: failure for IGT KMS Test cleanup (rev2)
2024-06-11 4:53 [PATCH i-g-t 0/8] IGT KMS Test cleanup Bhanuprakash Modem
` (9 preceding siblings ...)
2024-06-11 7:19 ` ✗ CI.xeBAT: failure " Patchwork
@ 2024-06-11 9:35 ` Patchwork
2024-06-11 11:06 ` ✗ Fi.CI.IGT: " Patchwork
` (4 subsequent siblings)
15 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2024-06-11 9:35 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 60897 bytes --]
== Series Details ==
Series: IGT KMS Test cleanup (rev2)
URL : https://patchwork.freedesktop.org/series/134685/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7880_full -> XEIGTPW_11247_full
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with XEIGTPW_11247_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11247_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (3 -> 2)
------------------------------
Missing (1): shard-adlp
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11247_full:
### IGT changes ###
#### Warnings ####
* igt@kms_psr@fbc-psr-cursor-blt:
- shard-dg2-set2: [SKIP][1] ([Intel XE#1201] / [Intel XE#929]) -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-434/igt@kms_psr@fbc-psr-cursor-blt.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@kms_psr@fbc-psr-cursor-blt.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [SKIP][3] ([Intel XE#1201] / [Intel XE#362]) -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_psr@psr2-suspend:
- {shard-lnl}: [DMESG-FAIL][5] ([Intel XE#2034]) -> [FAIL][6] +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-lnl-5/igt@kms_psr@psr2-suspend.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-lnl-5/igt@kms_psr@psr2-suspend.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race:
- {shard-lnl}: [PASS][7] -> [ABORT][8] +2 other tests abort
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-lnl-4/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-lnl-1/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html
New tests
---------
New tests have been introduced between XEIGT_7880_full and XEIGTPW_11247_full:
### New IGT tests (42) ###
* igt@kms_properties@connector-properties-atomic@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [1.50] s
* igt@kms_properties@connector-properties-atomic@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.99] s
* igt@kms_properties@connector-properties-atomic@pipe-none-dp-3:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-5:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-7:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-8:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [1.49] s
* igt@kms_properties@connector-properties-legacy@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [9.33] s
* igt@kms_properties@connector-properties-legacy@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.97] s
* igt@kms_properties@connector-properties-legacy@pipe-none-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-dp-3:
- Statuses : 2 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-hdmi-a-5:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-hdmi-a-7:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-hdmi-a-8:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@crtc-properties-atomic@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.55] s
* igt@kms_properties@crtc-properties-atomic@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.38] s
* igt@kms_properties@crtc-properties-atomic@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.29] s
* igt@kms_properties@crtc-properties-atomic@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.67] s
* igt@kms_properties@crtc-properties-atomic@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.64] s
* igt@kms_properties@crtc-properties-atomic@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_properties@crtc-properties-atomic@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.27] s
* igt@kms_properties@crtc-properties-legacy@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.32] s
* igt@kms_properties@crtc-properties-legacy@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.28] s
* igt@kms_properties@crtc-properties-legacy@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_properties@crtc-properties-legacy@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_properties@plane-properties-atomic@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.71] s
* igt@kms_properties@plane-properties-atomic@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.49] s
* igt@kms_properties@plane-properties-atomic@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.47] s
* igt@kms_properties@plane-properties-atomic@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.82] s
* igt@kms_properties@plane-properties-atomic@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.84] s
* igt@kms_properties@plane-properties-atomic@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
* igt@kms_properties@plane-properties-atomic@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
* igt@kms_properties@plane-properties-legacy@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.71] s
* igt@kms_properties@plane-properties-legacy@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_properties@plane-properties-legacy@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.47] s
* igt@kms_properties@plane-properties-legacy@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.81] s
* igt@kms_properties@plane-properties-legacy@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.80] s
* igt@kms_properties@plane-properties-legacy@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
* igt@kms_properties@plane-properties-legacy@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
Known issues
------------
Here are the changes found in XEIGTPW_11247_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_setmaster@master-drop-set-shared-fd:
- shard-dg2-set2: [PASS][9] -> [DMESG-WARN][10] ([Intel XE#1214]) +3 other tests dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-435/igt@core_setmaster@master-drop-set-shared-fd.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-463/igt@core_setmaster@master-drop-set-shared-fd.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-466/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1124] / [Intel XE#1201]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1201] / [Intel XE#619]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1201] / [Intel XE#346])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1201] / [Intel XE#367])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1201] / [Intel XE#1252])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#787]) +13 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#787]) +55 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +15 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-463/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_cdclk@mode-transition@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1201] / [Intel XE#314]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-463/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#373]) +9 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][24] ([Intel XE#1188]) +1 other test fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-434/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#308])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][27] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-466/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2-set2: [PASS][28] -> [DMESG-WARN][29] ([Intel XE#1214] / [Intel XE#282])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-466/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-435/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic:
- shard-dg2-set2: [PASS][30] -> [DMESG-WARN][31] ([Intel XE#282])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-434/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-dg2-set2: [PASS][32] -> [DMESG-WARN][33] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-436/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-463/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@forked-bo@all-pipes:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][34] ([Intel XE#1214] / [Intel XE#282]) +5 other tests dmesg-warn
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-466/igt@kms_cursor_legacy@forked-bo@all-pipes.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1201] / [Intel XE#323]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#1137] / [Intel XE#1201])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a6:
- shard-dg2-set2: [PASS][37] -> [INCOMPLETE][38] ([Intel XE#1195])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_flip@flip-vs-suspend@d-hdmi-a6.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@kms_flip@flip-vs-suspend@d-hdmi-a6.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1201] / [Intel XE#455]) +12 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#651]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#651]) +19 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#653]) +16 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#653]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#1201] / [Intel XE#417])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][45] ([Intel XE#1214]) +4 other tests dmesg-warn
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#616])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-466/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][47] ([Intel XE#1551]) +1 other test dmesg-fail
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-466/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#455] / [Intel XE#498]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#498]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html
* igt@kms_psr@fbc-psr2-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#1201] / [Intel XE#929]) +12 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-435/igt@kms_psr@fbc-psr2-suspend.html
* igt@kms_psr@psr-cursor-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#929])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_psr@psr-cursor-blt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#1201] / [Intel XE#327])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1091] / [Intel XE#1201])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1126] / [Intel XE#1201])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: [PASS][58] -> [FAIL][59] ([Intel XE#1600])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-436/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-434/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-cm-threads-large:
- shard-dg2-set2: [PASS][60] -> [INCOMPLETE][61] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-463/igt@xe_evict@evict-cm-threads-large.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-434/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_evict@evict-threads-large:
- shard-dg2-set2: [PASS][62] -> [TIMEOUT][63] ([Intel XE#1473] / [Intel XE#392]) +2 other tests timeout
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@xe_evict@evict-threads-large.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_fault_mode@many-bindexecqueue-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1201] / [Intel XE#288]) +17 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#288])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm.html
* igt@xe_live_ktest@xe_migrate:
- shard-dg2-set2: [PASS][66] -> [SKIP][67] ([Intel XE#1192] / [Intel XE#1201]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-436/igt@xe_live_ktest@xe_migrate.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-435/igt@xe_live_ktest@xe_migrate.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#1201] / [Intel XE#366])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-463/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-463/igt@xe_query@multigpu-query-cs-cycles.html
#### Possible fixes ####
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- {shard-lnl}: [FAIL][70] ([Intel XE#1659]) -> [PASS][71]
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [DMESG-WARN][72] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][73] +6 other tests pass
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-433/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_cursor_legacy@single-move@pipe-b:
- shard-dg2-set2: [DMESG-WARN][74] ([Intel XE#1214] / [Intel XE#877]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-433/igt@kms_cursor_legacy@single-move@pipe-b.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-433/igt@kms_cursor_legacy@single-move@pipe-b.html
* igt@kms_flip@absolute-wf_vblank:
- shard-dg2-set2: [INCOMPLETE][76] ([Intel XE#1195]) -> [PASS][77] +3 other tests pass
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-434/igt@kms_flip@absolute-wf_vblank.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-434/igt@kms_flip@absolute-wf_vblank.html
* igt@kms_invalid_mode@zero-clock:
- {shard-lnl}: [INCOMPLETE][78] ([Intel XE#1960]) -> [PASS][79]
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-lnl-2/igt@kms_invalid_mode@zero-clock.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-lnl-4/igt@kms_invalid_mode@zero-clock.html
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area:
- {shard-lnl}: [DMESG-WARN][80] ([Intel XE#2016]) -> [PASS][81] +1 other test pass
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-lnl-6/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-lnl-7/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html
* igt@xe_evict@evict-beng-cm-threads-large:
- shard-dg2-set2: [TIMEOUT][82] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-435/igt@xe_evict@evict-beng-cm-threads-large.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@xe_evict@evict-beng-cm-threads-large.html
* igt@xe_exec_threads@threads-mixed-userptr-invalidate-race:
- {shard-lnl}: [FAIL][84] ([Intel XE#1069]) -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-lnl-5/igt@xe_exec_threads@threads-mixed-userptr-invalidate-race.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-lnl-7/igt@xe_exec_threads@threads-mixed-userptr-invalidate-race.html
* igt@xe_gt_freq@freq_range_idle:
- {shard-lnl}: [SKIP][86] ([Intel XE#1462]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-lnl-8/igt@xe_gt_freq@freq_range_idle.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-lnl-2/igt@xe_gt_freq@freq_range_idle.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [DMESG-WARN][88] ([Intel XE#1214]) -> [PASS][89] +5 other tests pass
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-463/igt@xe_module_load@reload.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-433/igt@xe_module_load@reload.html
* igt@xe_pm@mocs-rpm:
- {shard-lnl}: [FAIL][90] ([Intel XE#2043]) -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-lnl-5/igt@xe_pm@mocs-rpm.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-lnl-3/igt@xe_pm@mocs-rpm.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: [SKIP][92] ([Intel XE#1201] / [Intel XE#623]) -> [SKIP][93] ([Intel XE#623])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-433/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][94] ([Intel XE#316]) -> [SKIP][95] ([Intel XE#1201] / [Intel XE#316]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-466/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][96] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][97] ([Intel XE#316]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-464/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][98] ([Intel XE#1201] / [Intel XE#610]) -> [SKIP][99] ([Intel XE#610])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-433/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][100] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][101] ([Intel XE#1124]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-436/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-dg2-set2: [SKIP][102] ([Intel XE#1124]) -> [SKIP][103] ([Intel XE#1124] / [Intel XE#1201]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-dg2-set2: [SKIP][104] ([Intel XE#367]) -> [SKIP][105] ([Intel XE#1201] / [Intel XE#367])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][106] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][107] ([Intel XE#787]) +69 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-463/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][108] ([Intel XE#787]) -> [SKIP][109] ([Intel XE#1201] / [Intel XE#787]) +34 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-433/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][110] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][111] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +9 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc:
- shard-dg2-set2: [SKIP][112] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][113] ([Intel XE#455] / [Intel XE#787]) +19 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-433/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2-set2: [SKIP][114] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][115] ([Intel XE#306])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-463/igt@kms_chamelium_color@ctm-max.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_frames@hdmi-cmp-planes-random:
- shard-dg2-set2: [SKIP][116] ([Intel XE#373]) -> [SKIP][117] ([Intel XE#1201] / [Intel XE#373]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-434/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: [SKIP][118] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][119] ([Intel XE#373]) +4 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: [SKIP][120] ([Intel XE#307]) -> [SKIP][121] ([Intel XE#1201] / [Intel XE#307])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-1.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: [SKIP][122] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][123] ([Intel XE#308])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][124] ([Intel XE#282]) -> [DMESG-WARN][125] ([Intel XE#1214] / [Intel XE#282]) +3 other tests dmesg-warn
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-a-hdmi-a-6.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-a-hdmi-a-6.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2-set2: [SKIP][126] ([Intel XE#308]) -> [SKIP][127] ([Intel XE#1201] / [Intel XE#308])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x512.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6:
- shard-dg2-set2: [DMESG-FAIL][128] ([Intel XE#1551]) -> [FAIL][129] ([Intel XE#616]) +1 other test fail
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-464/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-434/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html
* igt@kms_cursor_edge_walk@256x256-top-bottom:
- shard-dg2-set2: [DMESG-WARN][130] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][131] ([Intel XE#282]) +3 other tests dmesg-warn
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-466/igt@kms_cursor_edge_walk@256x256-top-bottom.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_cursor_edge_walk@256x256-top-bottom.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2-set2: [DMESG-WARN][132] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [DMESG-WARN][133] ([Intel XE#1214] / [Intel XE#282])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-435/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-433/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][134] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][135] ([Intel XE#323]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-433/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@single-move:
- shard-dg2-set2: [DMESG-WARN][136] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#877]) -> [DMESG-WARN][137] ([Intel XE#1214] / [Intel XE#282])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-433/igt@kms_cursor_legacy@single-move.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-433/igt@kms_cursor_legacy@single-move.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][138] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][139] ([Intel XE#776])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [INCOMPLETE][140] ([Intel XE#1551]) -> [INCOMPLETE][141] ([Intel XE#1195] / [Intel XE#1551] / [Intel XE#2049])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_flip@flip-vs-suspend.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [INCOMPLETE][142] ([Intel XE#1195]) -> [DMESG-WARN][143] ([Intel XE#1551])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6:
- shard-dg2-set2: [DMESG-WARN][144] ([Intel XE#1214]) -> [DMESG-WARN][145] ([Intel XE#1551])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a6:
- shard-dg2-set2: [DMESG-WARN][146] ([Intel XE#1551]) -> [DMESG-WARN][147] ([Intel XE#1214] / [Intel XE#1551])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: [SKIP][148] ([Intel XE#455]) -> [SKIP][149] ([Intel XE#1201] / [Intel XE#455]) +5 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][150] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][151] ([Intel XE#651]) +18 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][152] ([Intel XE#651]) -> [SKIP][153] ([Intel XE#1201] / [Intel XE#651]) +12 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][154] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][155] ([Intel XE#653]) +15 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][156] ([Intel XE#658]) -> [SKIP][157] ([Intel XE#1201] / [Intel XE#658])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][158] ([Intel XE#653]) -> [SKIP][159] ([Intel XE#1201] / [Intel XE#653]) +12 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: [SKIP][160] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][161] ([Intel XE#870])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-464/igt@kms_pm_backlight@fade.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: [SKIP][162] ([Intel XE#870]) -> [SKIP][163] ([Intel XE#1201] / [Intel XE#870])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_pm_backlight@fade-with-dpms.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-466/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: [SKIP][164] ([Intel XE#929]) -> [SKIP][165] ([Intel XE#1201] / [Intel XE#929]) +6 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-render.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-433/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][166] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][167] ([Intel XE#929]) +10 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-463/igt@kms_psr@psr-dpms.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_psr@psr-dpms.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][168] ([Intel XE#327]) -> [SKIP][169] ([Intel XE#1201] / [Intel XE#327])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][170] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][171] ([Intel XE#327]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: [SKIP][172] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][173] ([Intel XE#455]) +8 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-464/igt@kms_vrr@flip-dpms.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_vrr@flip-dpms.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: [SKIP][174] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][175] ([Intel XE#756]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-433/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2-set2: [SKIP][176] ([Intel XE#756]) -> [SKIP][177] ([Intel XE#1201] / [Intel XE#756])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@kms_writeback@writeback-pixel-formats.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-433/igt@kms_writeback@writeback-pixel-formats.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: [SKIP][178] ([Intel XE#1123]) -> [SKIP][179] ([Intel XE#1123] / [Intel XE#1201])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x369.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][180] ([Intel XE#1123] / [Intel XE#1201]) -> [SKIP][181] ([Intel XE#1123])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: [SKIP][182] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][183] ([Intel XE#1126])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0xfffe.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_exec_fault_mode@once-basic-imm:
- shard-dg2-set2: [SKIP][184] ([Intel XE#288]) -> [SKIP][185] ([Intel XE#1201] / [Intel XE#288]) +10 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@xe_exec_fault_mode@once-basic-imm.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-466/igt@xe_exec_fault_mode@once-basic-imm.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][186] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][187] ([Intel XE#288]) +15 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_reset@gt-reset-stress:
- shard-dg2-set2: [DMESG-WARN][188] ([Intel XE#1214] / [Intel XE#1638]) -> [DMESG-WARN][189] ([Intel XE#1214] / [Intel XE#1638] / [Intel XE#2056])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-436/igt@xe_exec_reset@gt-reset-stress.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@xe_exec_reset@gt-reset-stress.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: [SKIP][190] ([Intel XE#1201] / [Intel XE#378]) -> [SKIP][191] ([Intel XE#378])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-464/igt@xe_module_load@force-load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@xe_module_load@force-load.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][192] ([Intel XE#979]) -> [SKIP][193] ([Intel XE#1201] / [Intel XE#979])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: [SKIP][194] ([Intel XE#366]) -> [SKIP][195] ([Intel XE#1201] / [Intel XE#366])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@xe_pm@d3cold-mmap-system.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: [SKIP][196] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][197] ([Intel XE#366]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-464/igt@xe_pm@d3cold-multiple-execs.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [DMESG-WARN][198] ([Intel XE#1214]) -> [DMESG-WARN][199] ([Intel XE#1214] / [Intel XE#1551] / [Intel XE#569]) +2 other tests dmesg-warn
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-434/igt@xe_pm@s3-basic-exec.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-dg2-set2: [DMESG-WARN][200] ([Intel XE#1214] / [Intel XE#1551]) -> [DMESG-WARN][201] ([Intel XE#1214] / [Intel XE#569])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-434/igt@xe_pm@s3-vm-bind-prefetch.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-433/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_query@multigpu-query-config:
- shard-dg2-set2: [SKIP][202] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][203] ([Intel XE#944]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-463/igt@xe_query@multigpu-query-config.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-432/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: [SKIP][204] ([Intel XE#944]) -> [SKIP][205] ([Intel XE#1201] / [Intel XE#944])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-464/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [DMESG-FAIL][206] ([Intel XE#1760]) -> [DMESG-WARN][207] ([Intel XE#1214] / [Intel XE#1760])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7880/shard-dg2-432/igt@xe_wedged@wedged-at-any-timeout.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/shard-dg2-433/igt@xe_wedged@wedged-at-any-timeout.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1207]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1207
[Intel XE#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211
[Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1256]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1256
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1339
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1446
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1462]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1462
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1595]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1595
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1608
[Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1707
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1924
[Intel XE#1960]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1960
[Intel XE#2009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2009
[Intel XE#2016]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2016
[Intel XE#2024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2024
[Intel XE#2027]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2027
[Intel XE#2028]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2028
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2034]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2034
[Intel XE#2043]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2043
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2056]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2056
[Intel XE#2070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2070
[Intel XE#2071]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2071
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_7880 -> IGTPW_11247
* Linux: xe-1413-cb97aa28be4f4b914c751ed27bae7782e027826c -> xe-1441-34997e6c7d5e203ee9b54b8da59270ead2a82c59
IGTPW_11247: 42e1813d438fd5a17ad3e3408d712eb7beab642b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7880: 73618605b4370cf902267aaf1d25666ff5e26112 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1413-cb97aa28be4f4b914c751ed27bae7782e027826c: cb97aa28be4f4b914c751ed27bae7782e027826c
xe-1441-34997e6c7d5e203ee9b54b8da59270ead2a82c59: 34997e6c7d5e203ee9b54b8da59270ead2a82c59
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11247/index.html
[-- Attachment #2: Type: text/html, Size: 78345 bytes --]
^ permalink raw reply [flat|nested] 27+ messages in thread
* ✗ Fi.CI.IGT: failure for IGT KMS Test cleanup (rev2)
2024-06-11 4:53 [PATCH i-g-t 0/8] IGT KMS Test cleanup Bhanuprakash Modem
` (10 preceding siblings ...)
2024-06-11 9:35 ` ✗ CI.xeFULL: " Patchwork
@ 2024-06-11 11:06 ` Patchwork
2024-06-14 13:18 ` ✓ CI.xeBAT: success for IGT KMS Test cleanup (rev3) Patchwork
` (3 subsequent siblings)
15 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2024-06-11 11:06 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100247 bytes --]
== Series Details ==
Series: IGT KMS Test cleanup (rev2)
URL : https://patchwork.freedesktop.org/series/134685/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14917_full -> IGTPW_11247_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11247_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11247_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_11247/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11247_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_cursor@overlay@pipe-d-hdmi-a-2-size-256:
- shard-dg2: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-3/igt@kms_plane_cursor@overlay@pipe-d-hdmi-a-2-size-256.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_plane@pixel-format@pipe-a-plane-5}:
- shard-tglu: [PASS][2] -> [INCOMPLETE][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-tglu-3/igt@kms_plane@pixel-format@pipe-a-plane-5.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-9/igt@kms_plane@pixel-format@pipe-a-plane-5.html
New tests
---------
New tests have been introduced between CI_DRM_14917_full and IGTPW_11247_full:
### New IGT tests (84) ###
* igt@kms_properties@connector-properties-atomic@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [8.60] s
* igt@kms_properties@connector-properties-atomic@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.56, 1.07] s
* igt@kms_properties@connector-properties-atomic@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.68] s
* igt@kms_properties@connector-properties-atomic@pipe-none-dp-1:
- Statuses : 4 pass(s)
- Exec time: [0.00, 0.01] s
* igt@kms_properties@connector-properties-atomic@pipe-none-dp-2:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-dp-3:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-dp-4:
- Statuses : 2 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_properties@connector-properties-legacy@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [8.51] s
* igt@kms_properties@connector-properties-legacy@pipe-a-hdmi-a-1:
- Statuses : 4 pass(s)
- Exec time: [0.51, 1.83] s
* igt@kms_properties@connector-properties-legacy@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [1.68] s
* igt@kms_properties@connector-properties-legacy@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.79] s
* igt@kms_properties@connector-properties-legacy@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.66] s
* igt@kms_properties@connector-properties-legacy@pipe-none-dp-1:
- Statuses : 6 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-dp-2:
- Statuses : 4 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-dp-3:
- Statuses : 4 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-dp-4:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-hdmi-a-2:
- Statuses : 4 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-hdmi-a-3:
- Statuses : 2 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_properties@crtc-properties-atomic@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
* igt@kms_properties@crtc-properties-atomic@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.17, 0.22] s
* igt@kms_properties@crtc-properties-atomic@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_properties@crtc-properties-atomic@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.29] s
* igt@kms_properties@crtc-properties-atomic@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.34] s
* igt@kms_properties@crtc-properties-atomic@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.22] s
* igt@kms_properties@crtc-properties-atomic@pipe-b-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.17, 0.27] s
* igt@kms_properties@crtc-properties-atomic@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.24] s
* igt@kms_properties@crtc-properties-atomic@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.30] s
* igt@kms_properties@crtc-properties-atomic@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.28] s
* igt@kms_properties@crtc-properties-atomic@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.22] s
* igt@kms_properties@crtc-properties-atomic@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.17] s
* igt@kms_properties@crtc-properties-atomic@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_properties@crtc-properties-atomic@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.27] s
* igt@kms_properties@crtc-properties-atomic@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.22] s
* igt@kms_properties@crtc-properties-atomic@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.17] s
* igt@kms_properties@crtc-properties-atomic@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_properties@crtc-properties-atomic@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.27] s
* igt@kms_properties@crtc-properties-legacy@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.45] s
* igt@kms_properties@crtc-properties-legacy@pipe-a-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.17, 0.59] s
* igt@kms_properties@crtc-properties-legacy@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.30] s
* igt@kms_properties@crtc-properties-legacy@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.33] s
* igt@kms_properties@crtc-properties-legacy@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.22] s
* igt@kms_properties@crtc-properties-legacy@pipe-b-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.16, 0.27] s
* igt@kms_properties@crtc-properties-legacy@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.45] s
* igt@kms_properties@crtc-properties-legacy@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.31] s
* igt@kms_properties@crtc-properties-legacy@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.27] s
* igt@kms_properties@crtc-properties-legacy@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.22] s
* igt@kms_properties@crtc-properties-legacy@pipe-c-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.17, 0.44] s
* igt@kms_properties@crtc-properties-legacy@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.24] s
* igt@kms_properties@crtc-properties-legacy@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.27] s
* igt@kms_properties@crtc-properties-legacy@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.21] s
* igt@kms_properties@crtc-properties-legacy@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.16] s
* igt@kms_properties@crtc-properties-legacy@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.27] s
* igt@kms_properties@crtc-properties-legacy@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_properties@plane-properties-atomic@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.48] s
* igt@kms_properties@plane-properties-atomic@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.57] s
* igt@kms_properties@plane-properties-atomic@pipe-a-hdmi-a-1:
- Statuses : 4 pass(s)
- Exec time: [0.25, 0.74] s
* igt@kms_properties@plane-properties-atomic@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.48] s
* igt@kms_properties@plane-properties-atomic@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.53] s
* igt@kms_properties@plane-properties-atomic@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.33] s
* igt@kms_properties@plane-properties-atomic@pipe-b-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.26, 0.42] s
* igt@kms_properties@plane-properties-atomic@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.56] s
* igt@kms_properties@plane-properties-atomic@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.43] s
* igt@kms_properties@plane-properties-atomic@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.52] s
* igt@kms_properties@plane-properties-atomic@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.34] s
* igt@kms_properties@plane-properties-atomic@pipe-c-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.26, 0.56] s
* igt@kms_properties@plane-properties-atomic@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
* igt@kms_properties@plane-properties-atomic@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_properties@plane-properties-atomic@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.34] s
* igt@kms_properties@plane-properties-atomic@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_properties@plane-properties-atomic@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
* igt@kms_properties@plane-properties-legacy@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.56] s
* igt@kms_properties@plane-properties-legacy@pipe-a-hdmi-a-1:
- Statuses : 4 pass(s)
- Exec time: [0.26, 0.44] s
* igt@kms_properties@plane-properties-legacy@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.35] s
* igt@kms_properties@plane-properties-legacy@pipe-b-hdmi-a-1:
- Statuses : 4 pass(s)
- Exec time: [0.26, 0.42] s
* igt@kms_properties@plane-properties-legacy@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.34] s
* igt@kms_properties@plane-properties-legacy@pipe-c-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.28, 0.42] s
* igt@kms_properties@plane-properties-legacy@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.34] s
* igt@kms_properties@plane-properties-legacy@pipe-d-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.28, 0.41] s
Known issues
------------
Here are the changes found in IGTPW_11247_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-10/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-5/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#9318])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-3/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [INCOMPLETE][8] ([i915#9408])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +6 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-8/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][10] ([i915#7742])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-6/igt@drm_fdinfo@idle@rcs0.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +5 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@drm_fdinfo@isolation@vecs0.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#7697]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-14/igt@gem_basic@multigpu-create-close.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#4873])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-5/igt@gem_caching@read-writes.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#7697])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-2/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#6335])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-3/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu: NOTRUN -> [SKIP][19] ([i915#8562])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@hang:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#8555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-17/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@idempotent:
- shard-snb: NOTRUN -> [SKIP][22] ([i915#1099])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-snb7/igt@gem_ctx_persistence@idempotent.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-5/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][24] ([i915#10030] / [i915#7975] / [i915#8213])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-2/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-suspend:
- shard-dg1: NOTRUN -> [FAIL][25] ([i915#11269])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-dg1: NOTRUN -> [FAIL][26] ([i915#5784])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-pair:
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4771])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-4/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#4812]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-16/igt@gem_exec_balancer@bonded-semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4812])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-3/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4771])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-6/igt@gem_exec_balancer@bonded-sync.html
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#4771])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#6344])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-5/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-rkl: NOTRUN -> [FAIL][34] ([i915#9606])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-6/igt@gem_exec_capture@many-4k-incremental.html
- shard-dg1: NOTRUN -> [FAIL][35] ([i915#9606])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-none:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +4 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-rkl: NOTRUN -> [FAIL][37] ([i915#2842]) +1 other test fail
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-share:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-7/igt@gem_exec_fair@basic-none-share.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-glk: NOTRUN -> [FAIL][39] ([i915#2842]) +3 other tests fail
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-glk8/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-pace:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-tglu: NOTRUN -> [FAIL][41] ([i915#2842])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4473] / [i915#4771])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-7/igt@gem_exec_fair@basic-sync.html
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-8/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4812]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-10/igt@gem_exec_fence@submit3.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#5107])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-8/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-concurrent0:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +11 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@gem_exec_reloc@basic-concurrent0.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#3281]) +5 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-6/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3281]) +5 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-5/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +13 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#7276])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s0@smem:
- shard-dg2: NOTRUN -> [FAIL][52] ([i915#11279]) +3 other tests fail
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-11/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_exec_whisper@basic-queues-all:
- shard-mtlp: [PASS][53] -> [INCOMPLETE][54] ([i915#9857])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-mtlp-8/igt@gem_exec_whisper@basic-queues-all.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-7/igt@gem_exec_whisper@basic-queues-all.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4860])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-14/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg1: NOTRUN -> [FAIL][56] ([i915#10378])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
- shard-dg2: [PASS][57] -> [FAIL][58] ([i915#10378])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg2-10/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4613])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-8/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#4613]) +7 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][61] ([i915#4613]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-glk8/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg2: NOTRUN -> [FAIL][62] ([i915#10378])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-8/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#4613])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-10/igt@gem_lmem_swapping@verify-random.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4565]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#284])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-5/igt@gem_media_vme.html
* igt@gem_mmap@basic-small-bo:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4083]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-7/igt@gem_mmap@basic-small-bo.html
* igt@gem_mmap_gtt@basic-write-read:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4077]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-5/igt@gem_mmap_gtt@basic-write-read.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4077]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-10/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4083]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-8/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4083]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-17/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3282])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-3/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_pread@bench:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-7/igt@gem_pread@bench.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) +5 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-17/igt@gem_pread@exhaustion.html
- shard-glk: NOTRUN -> [WARN][74] ([i915#2658])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-glk9/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#3282]) +7 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-3/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4270])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-4/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#4270]) +6 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-1/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4270]) +4 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-13/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4270]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#4270])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#5190] / [i915#8428]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-10/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-ccs-to-linear:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8428]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-7/igt@gem_render_copy@yf-tiled-ccs-to-linear.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4885])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-16/igt@gem_softpin@evict-snoop.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][84] ([i915#5889])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-7/igt@gem_spin_batch@spin-all-new.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4879])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-16/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#3323])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4880])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#3281] / [i915#3297])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-2/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4958])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-17/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#3297]) +6 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-17/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#2527]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-5/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#2856]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-4/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#4881])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-5/igt@i915_fb_tiling.html
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#4881])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-17/igt@i915_fb_tiling.html
* igt@i915_module_load@load:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#6227])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@i915_module_load@load.html
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#6227])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [PASS][100] -> [INCOMPLETE][101] ([i915#9849])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: NOTRUN -> [ABORT][102] ([i915#9820])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [PASS][103] -> [INCOMPLETE][104] ([i915#10047] / [i915#10887] / [i915#9820])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#6412])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-2/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rc6_residency@rc6-accuracy@gt0:
- shard-dg2: [PASS][106] -> [FAIL][107] ([i915#11294])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg2-11/igt@i915_pm_rc6_residency@rc6-accuracy@gt0.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-10/igt@i915_pm_rc6_residency@rc6-accuracy@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [PASS][108] -> [FAIL][109] ([i915#3591])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#8925])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-14/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#8925]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-8/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#4387])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_suspend@sysfs-reader:
- shard-dg1: NOTRUN -> [FAIL][113] ([i915#10031] / [i915#11279])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-14/igt@i915_suspend@sysfs-reader.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4212]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-10/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#4212])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-16/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#8709]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#8709]) +11 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#10333])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-8/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][119] ([i915#1769])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#1769] / [i915#3555])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#5286]) +8 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#5286]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-6/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#5286])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5286]) +5 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#3638]) +4 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#3638]) +5 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5190]) +7 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#5190])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538]) +5 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][130] +6 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_joiner@basic:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#10656]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-4/igt@kms_big_joiner@basic.html
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#10656]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-6/igt@kms_big_joiner@basic.html
* igt@kms_big_joiner@basic-force-joiner:
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#10656])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-7/igt@kms_big_joiner@basic-force-joiner.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#10656])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-14/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#6095]) +95 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#10307] / [i915#6095]) +178 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-snb: NOTRUN -> [SKIP][138] +30 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-snb6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#10278])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6095]) +23 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-7/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#6095]) +79 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#6095]) +7 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#3742])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#7213]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#3742]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-2/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#7828]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-3/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#7828]) +5 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-4/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#7828]) +12 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#7828]) +11 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#7828]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-9/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#7118] / [i915#9424])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#3116])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#3299])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#7116] / [i915#9424])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#8063])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-5/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#7118])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-6/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#8814])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#3359]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#3555]) +10 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#3359])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#3555]) +10 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3359])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#3359]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [FAIL][164] ([i915#11279] / [i915#11298]) +1 other test fail
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-11/igt@kms_cursor_crc@cursor-suspend@pipe-d-dp-4.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#4103] / [i915#4213])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#9809])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#9067])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#9067])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-16/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#4103]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-2/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-dg2: NOTRUN -> [SKIP][170] ([i915#4103] / [i915#4213])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#9723])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#9723])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-14/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#3804])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#3555]) +5 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-5/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_aux_dev:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#1257])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#3840])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#3840])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-1/igt@kms_dsc@dsc-with-formats.html
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#3840]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-14/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-dg1: NOTRUN -> [FAIL][179] ([i915#11139] / [i915#11279])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-16/igt@kms_fbcon_fbt@fbc-suspend.html
- shard-dg2: NOTRUN -> [FAIL][180] ([i915#11139] / [i915#11279])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#4854])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-11/igt@kms_feature_discovery@chamelium.html
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#4854])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-2/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#1839]) +2 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-17/igt@kms_feature_discovery@display-4x.html
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#1839])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-5/igt@kms_feature_discovery@display-4x.html
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#1839])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-6/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#9337])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#9337])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#658])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-13/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#8381])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences.html
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#8381])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-2/igt@kms_flip@2x-flip-vs-fences.html
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#8381])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-6/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-plain-flip:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#3637]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-10/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#9934]) +7 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1:
- shard-snb: [PASS][194] -> [FAIL][195] ([i915#2122]) +1 other test fail
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-snb2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-snb7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a3:
- shard-dg2: NOTRUN -> [FAIL][196] ([i915#11275] / [i915#11279]) +3 other tests fail
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-5/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a4:
- shard-dg1: NOTRUN -> [FAIL][197] ([i915#10545] / [i915#11279]) +3 other tests fail
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-14/igt@kms_flip@flip-vs-suspend@b-hdmi-a4.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#2587] / [i915#2672])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-9/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-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#2587] / [i915#2672]) +6 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#2672])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#2672]) +6 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#2672])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#8810])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [PASS][204] -> [FAIL][205] ([i915#6880])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#5354]) +25 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#8708])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#8708]) +15 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#1825]) +59 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][210] +54 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
- shard-dg1: [PASS][211] -> [DMESG-WARN][212] ([i915#4423])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg1: NOTRUN -> [FAIL][213] ([i915#11279] / [i915#11280])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#5439])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#8708]) +20 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#3458]) +23 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#1825]) +7 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#3458]) +11 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][219] +21 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#3023]) +37 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#6118])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-5/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8228]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-17/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-5/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8228]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#6301])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-10/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#6301])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][228] ([i915#11274] / [i915#11279]) +3 other tests fail
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-3.html
* igt@kms_plane_cursor@viewport@pipe-c-edp-1-size-256:
- shard-mtlp: [PASS][229] -> [DMESG-WARN][230] ([i915#1982])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-mtlp-5/igt@kms_plane_cursor@viewport@pipe-c-edp-1-size-256.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-8/igt@kms_plane_cursor@viewport@pipe-c-edp-1-size-256.html
* igt@kms_plane_lowres@tiling-yf:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8821])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-4/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#9423]) +3 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#9423]) +3 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#9423]) +15 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#9423]) +7 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#5235]) +5 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#5235] / [i915#9423]) +7 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#5235]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#5235]) +11 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#5354]) +2 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@kms_pm_backlight@bad-brightness.html
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#5354]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-13/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#9812])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-3/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#9685]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-17/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [PASS][244] -> [FAIL][245] ([i915#9295])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#9519]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#4077]) +18 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-13/igt@kms_pm_rpm@fences.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#9519])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][249] -> [SKIP][250] ([i915#9519])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#6524])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-14/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#6524]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][253] +11 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-4/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#9683])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#9683]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-2/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#1072] / [i915#9732]) +25 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-2/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#1072] / [i915#9732]) +9 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-10/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-cursor-blt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#9688]) +2 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-2/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#1072] / [i915#9673] / [i915#9732])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-11/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][260] ([i915#9732]) +3 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-5/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr2-sprite-blt:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#1072] / [i915#9732]) +24 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][262] +369 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-glk8/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#9685])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#4235])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#4235] / [i915#5190])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#5289])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#5289])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#5289]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#3555]) +2 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#5030]) +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-4/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#5030] / [i915#9041])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-4/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#8623])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-snb: [PASS][273] -> [FAIL][274] ([i915#9196])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][275] ([i915#9196])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-14/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][276] ([i915#9196])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][277] ([i915#9196])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-3.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [PASS][278] -> [FAIL][279] ([i915#9196])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [PASS][280] -> [FAIL][281] ([i915#9196])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][282] ([i915#10305] / [i915#11279]) +1 other test fail
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-13/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-3.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#9906]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-tglu: NOTRUN -> [SKIP][284] ([i915#2437])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-3/igt@kms_writeback@writeback-check-output.html
- shard-glk: NOTRUN -> [SKIP][285] ([i915#2437])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-glk1/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#2437] / [i915#9412])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#2437] / [i915#9412])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-13/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: [PASS][288] -> [FAIL][289] ([i915#6806])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg2-5/igt@perf_pmu@frequency@gt0.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-3/igt@perf_pmu@frequency@gt0.html
- shard-dg1: [PASS][290] -> [FAIL][291] ([i915#6806])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg1-17/igt@perf_pmu@frequency@gt0.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-16/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@module-unload:
- shard-dg1: NOTRUN -> [INCOMPLETE][292] ([i915#1982] / [i915#9853])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-16/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-suspend:
- shard-dg1: NOTRUN -> [FAIL][293] ([i915#10864] / [i915#11279])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-16/igt@perf_pmu@rc6-suspend.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#8516])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#8516])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-2/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][296] ([i915#3708]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-13/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#3291] / [i915#3708])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-8/igt@prime_vgem@basic-read.html
- shard-rkl: NOTRUN -> [SKIP][298] ([i915#3291] / [i915#3708])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#3708])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#9917])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-2/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#9917]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-16/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#9917])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][303] ([i915#9781])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-dg1: NOTRUN -> [FAIL][304] ([i915#9779])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@syncobj_wait@invalid-wait-zero-handles.html
- shard-glk: NOTRUN -> [FAIL][305] ([i915#9779])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-glk7/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@v3d/v3d_get_param@get-bad-flags:
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#2575]) +3 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-7/igt@v3d/v3d_get_param@get-bad-flags.html
* igt@v3d/v3d_perfmon@create-perfmon-invalid-counters:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#2575]) +7 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-8/igt@v3d/v3d_perfmon@create-perfmon-invalid-counters.html
* igt@v3d/v3d_perfmon@get-values-invalid-pad:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#2575]) +14 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-13/igt@v3d/v3d_perfmon@get-values-invalid-pad.html
* igt@v3d/v3d_submit_cl@bad-extension:
- shard-tglu: NOTRUN -> [SKIP][309] ([i915#2575]) +4 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-7/igt@v3d/v3d_submit_cl@bad-extension.html
* igt@v3d/v3d_submit_cl@bad-pad:
- shard-rkl: NOTRUN -> [SKIP][310] +64 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-5/igt@v3d/v3d_submit_cl@bad-pad.html
* igt@vc4/vc4_perfmon@get-values-invalid-pointer:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#7711]) +2 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-8/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#7711]) +9 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-18/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
* igt@vc4/vc4_tiling@get-bad-flags:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#7711]) +12 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-5/igt@vc4/vc4_tiling@get-bad-flags.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#7711]) +6 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-5/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][315] ([i915#7742]) -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [FAIL][317] ([i915#2846]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-rkl-3/igt@gem_exec_fair@basic-deadline.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-3/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [FAIL][319] ([i915#2842]) -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [FAIL][321] ([i915#2842]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg2: [FAIL][323] ([i915#10378]) -> [PASS][324] +2 other tests pass
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg2-8/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-8/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [FAIL][325] ([i915#3591]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@waitboost:
- shard-dg2: [FAIL][327] ([i915#11295]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg2-7/igt@i915_pm_rps@waitboost.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-8/igt@i915_pm_rps@waitboost.html
- shard-dg1: [FAIL][329] ([i915#11295]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg1-13/igt@i915_pm_rps@waitboost.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@i915_pm_rps@waitboost.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-snb: [ABORT][331] ([i915#4817]) -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-snb5/igt@i915_suspend@basic-s3-without-i915.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-snb4/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1:
- shard-tglu: [FAIL][333] ([i915#10991]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-tglu-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1.html
* igt@kms_cursor_legacy@torture-bo@pipe-a:
- shard-snb: [DMESG-WARN][335] ([i915#10166]) -> [PASS][336]
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-snb4/igt@kms_cursor_legacy@torture-bo@pipe-a.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-snb7/igt@kms_cursor_legacy@torture-bo@pipe-a.html
* igt@kms_flip@dpms-off-confusion@b-hdmi-a3:
- shard-dg1: [INCOMPLETE][337] -> [PASS][338]
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg1-13/igt@kms_flip@dpms-off-confusion@b-hdmi-a3.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-13/igt@kms_flip@dpms-off-confusion@b-hdmi-a3.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1:
- shard-snb: [FAIL][339] ([i915#2122]) -> [PASS][340] +2 other tests pass
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-snb7/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-snb6/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu: [SKIP][341] ([i915#433]) -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-tglu-8/igt@kms_hdmi_inject@inject-audio.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-4/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [SKIP][343] ([i915#9519]) -> [PASS][344] +3 other tests pass
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- shard-mtlp: [FAIL][345] ([i915#9196]) -> [PASS][346]
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [FAIL][347] ([i915#9196]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
#### Warnings ####
* igt@gem_lmem_swapping@heavy-random@lmem0:
- shard-dg1: [FAIL][349] ([i915#10378]) -> [FAIL][350] ([i915#10378] / [i915#4423])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg1-18/igt@gem_lmem_swapping@heavy-random@lmem0.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@gem_lmem_swapping@heavy-random@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][351] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][352] ([i915#10131] / [i915#9820])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg1: [SKIP][353] ([i915#6621]) -> [SKIP][354] ([i915#4423] / [i915#6621])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg1-17/igt@i915_pm_rps@min-max-config-loaded.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg1-15/igt@i915_pm_rps@min-max-config-loaded.html
* igt@kms_content_protection@mei-interface:
- shard-tglu: [SKIP][355] ([i915#6944] / [i915#9424]) -> [SKIP][356] ([i915#8063])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-tglu-8/igt@kms_content_protection@mei-interface.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-tglu-9/igt@kms_content_protection@mei-interface.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2: [SKIP][357] ([i915#10433] / [i915#3458]) -> [SKIP][358] ([i915#3458]) +1 other test skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][359] ([i915#4816]) -> [SKIP][360] ([i915#4070] / [i915#4816])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pm_dc@deep-pkgc:
- shard-rkl: [SKIP][361] ([i915#3828]) -> [SKIP][362] ([i915#3361])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-rkl-5/igt@kms_pm_dc@deep-pkgc.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-rkl-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
- shard-dg2: [SKIP][363] ([i915#1072] / [i915#9732]) -> [SKIP][364] ([i915#1072] / [i915#9673] / [i915#9732]) +11 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg2-4/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
* igt@kms_psr@psr-suspend:
- shard-dg2: [SKIP][365] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][366] ([i915#1072] / [i915#9732]) +12 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg2-11/igt@kms_psr@psr-suspend.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-6/igt@kms_psr@psr-suspend.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][367] ([i915#9100]) -> [FAIL][368] ([i915#7484])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14917/shard-dg2-8/igt@perf@non-zero-reason@0-rcs0.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
[i915#10031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10031
[i915#10047]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10047
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166
[i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278
[i915#10305]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10305
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10545
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10864]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10864
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11139]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11139
[i915#11269]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11269
[i915#11274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11274
[i915#11275]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11275
[i915#11279]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11279
[i915#11280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11280
[i915#11294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11294
[i915#11295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11295
[i915#11298]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11298
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[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#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[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#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issu
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11247/index.html
[-- Attachment #2: Type: text/html, Size: 117852 bytes --]
^ permalink raw reply [flat|nested] 27+ messages in thread
* RE: [PATCH i-g-t 2/8] tests/intel/kms_pipe_b_c_ivb: Test cleanup
2024-06-11 4:53 ` [PATCH i-g-t 2/8] tests/intel/kms_pipe_b_c_ivb: " Bhanuprakash Modem
@ 2024-06-12 11:29 ` B, Jeevan
0 siblings, 0 replies; 27+ messages in thread
From: B, Jeevan @ 2024-06-12 11:29 UTC (permalink / raw)
To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org
Cc: Joshi, Kunal1, Sharma, Swati2
LGTM.
ACK Rb already present.
> -----Original Message-----
> From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Sent: Tuesday, June 11, 2024 10:24 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Joshi, Kunal1 <kunal1.joshi@intel.com>; B, Jeevan <jeevan.b@intel.com>;
> Sharma, Swati2 <swati2.sharma@intel.com>; Modem, Bhanuprakash
> <bhanuprakash.modem@intel.com>
> Subject: [PATCH i-g-t 2/8] tests/intel/kms_pipe_b_c_ivb: Test cleanup
>
> From: Kunal Joshi <kunal1.joshi@intel.com>
>
> Make sure the below points in IGT cleanup:
>
> - Sanitize the state before starting the subtest.
> - Clear the states before exiting the subtest.
> - Update existing libdrm APIs with IGT kms APIs.
> - Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..)
>
> v2:
> - Corrected commit subject. (Swati)
> - Removed comments (Swati)
>
> v3: (Bhanu)
> - Rebase
>
> CC: Jeevan B <jeevan.b@intel.com>
> Cc: Swati Sharma <swati2.sharma@intel.com>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
> Reviewed-by: Jeevan B <jeevan.b@intel.com>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> tests/intel/kms_pipe_b_c_ivb.c | 9 ++++++++-
> 1 file changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/tests/intel/kms_pipe_b_c_ivb.c b/tests/intel/kms_pipe_b_c_ivb.c
> index 71699e792..73083408a 100644
> --- a/tests/intel/kms_pipe_b_c_ivb.c
> +++ b/tests/intel/kms_pipe_b_c_ivb.c
> @@ -164,7 +164,7 @@ find_outputs(data_t *data, igt_output_t **output1,
> igt_output_t **output2)
> if (pipe == PIPE_C && output != *output1 && !*output2)
> *output2 = output;
>
> - igt_output_set_pipe(output, PIPE_ANY);
> + igt_output_set_pipe(output, PIPE_NONE);
> }
>
> igt_skip_on_f(!*output1 || !*output2, "Not enough connected
> outputs\n"); @@ -176,6 +176,7 @@ test_dpms(data_t *data)
> igt_output_t *output1, *output2;
> int ret;
>
> + igt_display_reset(&data->display);
> find_outputs(data, &output1, &output2);
>
> igt_info("Pipe %s will use connector %s\n", @@ -198,6 +199,8 @@
> test_lane_reduction(data_t *data)
> igt_output_t *output1, *output2;
> int ret;
>
> + igt_display_reset(&data->display);
> +
> find_outputs(data, &output1, &output2);
>
> igt_info("Pipe %s will use connector %s\n", @@ -221,6 +224,7 @@
> test_disable_pipe_B(data_t *data)
> igt_output_t *output1, *output2;
> int ret;
>
> + igt_display_reset(&data->display);
> find_outputs(data, &output1, &output2);
>
> igt_info("Pipe %s will use connector %s\n", @@ -247,6 +251,7 @@
> test_from_C_to_B_with_3_lanes(data_t *data)
> igt_output_t *output1, *output2;
> int ret;
>
> + igt_display_reset(&data->display);
> find_outputs(data, &output1, &output2);
>
> igt_info("Pipe %s will use connector %s\n", @@ -270,6 +275,7 @@
> test_fail_enable_pipe_C_while_B_has_3_lanes(data_t *data)
> igt_output_t *output1, *output2;
> int ret;
>
> + igt_display_reset(&data->display);
> find_outputs(data, &output1, &output2);
>
> igt_info("Pipe %s will use connector %s\n", @@ -296,6 +302,7 @@
> igt_main
>
> kmstest_set_vt_graphics_mode();
> igt_display_require(&data.display, data.drm_fd);
> + igt_display_require_output(&data.display);
> }
>
> igt_describe("Tests pipe-B and pipe-C interactions in IVB by enabling
> pipe-B with mode "
> --
> 2.43.2
^ permalink raw reply [flat|nested] 27+ messages in thread
* RE: [PATCH i-g-t 3/8] tests/intel/kms_pwrite_crc: Test cleanup
2024-06-11 4:53 ` [PATCH i-g-t 3/8] tests/intel/kms_pwrite_crc: " Bhanuprakash Modem
@ 2024-06-12 11:30 ` B, Jeevan
2024-06-14 8:46 ` B, Jeevan
0 siblings, 1 reply; 27+ messages in thread
From: B, Jeevan @ 2024-06-12 11:30 UTC (permalink / raw)
To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org; +Cc: Modem, Bhanuprakash
LGTM.
ACK RB already present.
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of
> Bhanuprakash Modem
> Sent: Tuesday, June 11, 2024 10:24 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Subject: [PATCH i-g-t 3/8] tests/intel/kms_pwrite_crc: Test cleanup
>
> Make sure the below points in IGT cleanup:
>
> - Sanitize the state before starting the subtest.
> - Clear the states before exiting the subtest.
> - Update existing libdrm APIs with IGT kms APIs.
> - Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..)
>
> V2:
> - Drop igt_fixture form igt_simple_main
>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> tests/intel/kms_pwrite_crc.c | 11 +++++------
> 1 file changed, 5 insertions(+), 6 deletions(-)
>
> diff --git a/tests/intel/kms_pwrite_crc.c b/tests/intel/kms_pwrite_crc.c index
> 12add5da6..338c92c3a 100644
> --- a/tests/intel/kms_pwrite_crc.c
> +++ b/tests/intel/kms_pwrite_crc.c
> @@ -125,7 +125,6 @@ static void prepare_crtc(data_t *data)
> igt_output_t *output = data->output;
> drmModeModeInfo *mode;
>
> - igt_display_reset(display);
> /* select the pipe we want to use */
> igt_output_set_pipe(output, data->pipe);
>
> @@ -161,7 +160,7 @@ static void cleanup_crtc(data_t *data)
>
> igt_plane_set_fb(data->primary, NULL);
>
> - igt_output_set_pipe(output, PIPE_ANY);
> + igt_output_set_pipe(output, PIPE_NONE);
> igt_display_commit(display);
>
> igt_remove_fb(data->drm_fd, &data->fb[0]); @@ -196,14 +195,14
> @@ static data_t data; igt_simple_main {
> data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
> -
> - data.devid = intel_get_drm_devid(data.drm_fd);
> -
> kmstest_set_vt_graphics_mode();
>
> + igt_display_require(&data.display, data.drm_fd);
> + igt_display_require_output(&data.display);
> igt_require_pipe_crc(data.drm_fd);
>
> - igt_display_require(&data.display, data.drm_fd);
> + data.devid = intel_get_drm_devid(data.drm_fd);
> + data.pipe_crc = NULL;
>
> run_test(&data);
>
> --
> 2.43.2
^ permalink raw reply [flat|nested] 27+ messages in thread
* RE: [PATCH i-g-t 4/8] tests/kms_hdmi_inject: Test cleanup
2024-06-11 4:53 ` [PATCH i-g-t 4/8] tests/kms_hdmi_inject: " Bhanuprakash Modem
@ 2024-06-12 11:32 ` B, Jeevan
0 siblings, 0 replies; 27+ messages in thread
From: B, Jeevan @ 2024-06-12 11:32 UTC (permalink / raw)
To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org; +Cc: Joshi, Kunal1
LGTM.
ACK, Rb already present.
> -----Original Message-----
> From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Sent: Tuesday, June 11, 2024 10:24 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Joshi, Kunal1 <kunal1.joshi@intel.com>; B, Jeevan <jeevan.b@intel.com>;
> Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Subject: [PATCH i-g-t 4/8] tests/kms_hdmi_inject: Test cleanup
>
> From: Kunal Joshi <kunal1.joshi@intel.com>
>
> Make sure the below points in IGT cleanup:
>
> - Sanitize the state before starting the subtest.
> - Clear the states before exiting the subtest.
> - Update existing libdrm APIs with IGT kms APIs.
> - Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..)
>
> v2: (Bhanu)
> - Rebase
> - Initialize pointers with NULL
> - Update connector type HDMI checks
>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
> Reviewed-by: Jeevan B <jeevan.b@intel.com>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> tests/kms_hdmi_inject.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/tests/kms_hdmi_inject.c b/tests/kms_hdmi_inject.c index
> dce74fac0..d28be38e4 100644
> --- a/tests/kms_hdmi_inject.c
> +++ b/tests/kms_hdmi_inject.c
> @@ -80,14 +80,15 @@ static drmModeConnector * get_connector(int
> drm_fd, drmModeRes *res) {
> int i;
> - drmModeConnector *connector;
> + drmModeConnector *connector = NULL;
>
> for (i = 0; i < res->count_connectors; i++) {
>
> connector =
> drmModeGetConnectorCurrent(drm_fd, res-
> >connectors[i]);
>
> - if (connector->connector_type ==
> DRM_MODE_CONNECTOR_HDMIA)
> + if (connector->connector_type ==
> DRM_MODE_CONNECTOR_HDMIA ||
> + connector->connector_type ==
> DRM_MODE_CONNECTOR_HDMIB)
> break;
>
> drmModeFreeConnector(connector);
> @@ -243,6 +244,7 @@ igt_main
>
> igt_fixture {
> drmModeFreeConnector(connector);
> + drmModeFreeResources(res);
> drm_close_driver(drm_fd);
> }
> }
> --
> 2.43.2
^ permalink raw reply [flat|nested] 27+ messages in thread
* RE: [PATCH i-g-t 6/8] tests/kms_tv_load_detect: Test cleanup
2024-06-11 4:53 ` [PATCH i-g-t 6/8] tests/kms_tv_load_detect: " Bhanuprakash Modem
@ 2024-06-12 11:34 ` B, Jeevan
0 siblings, 0 replies; 27+ messages in thread
From: B, Jeevan @ 2024-06-12 11:34 UTC (permalink / raw)
To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org; +Cc: Modem, Bhanuprakash
LGTM.
Reviewed-by: Jeevan B <jeevan.b@intel.com>
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of
> Bhanuprakash Modem
> Sent: Tuesday, June 11, 2024 10:24 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Subject: [PATCH i-g-t 6/8] tests/kms_tv_load_detect: Test cleanup
>
> Make sure the below points in IGT cleanup:
>
> - Sanitize the state before starting the subtest.
> - Clear the states before exiting the subtest.
> - Update existing libdrm APIs with IGT kms APIs.
> - Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..)
>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> tests/kms_tv_load_detect.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/tests/kms_tv_load_detect.c b/tests/kms_tv_load_detect.c index
> 8feed385f..9f6f4071e 100644
> --- a/tests/kms_tv_load_detect.c
> +++ b/tests/kms_tv_load_detect.c
> @@ -99,6 +99,7 @@ igt_main
>
> igt_fixture {
> drmModeFreeConnector(tv_connector);
> + drmModeFreeResources(res);
> drm_close_driver(drm_fd);
> }
> }
> --
> 2.43.2
^ permalink raw reply [flat|nested] 27+ messages in thread
* RE: [PATCH i-g-t 7/8] tests/kms_universal_plane: Test cleanup
2024-06-11 4:53 ` [PATCH i-g-t 7/8] tests/kms_universal_plane: " Bhanuprakash Modem
@ 2024-06-12 11:35 ` B, Jeevan
0 siblings, 0 replies; 27+ messages in thread
From: B, Jeevan @ 2024-06-12 11:35 UTC (permalink / raw)
To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org; +Cc: Modem, Bhanuprakash
LGTM.
Reviewed-by: Jeevan B <jeevan.b@intel.com>
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of
> Bhanuprakash Modem
> Sent: Tuesday, June 11, 2024 10:24 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Subject: [PATCH i-g-t 7/8] tests/kms_universal_plane: Test cleanup
>
> Make sure the below points in IGT cleanup:
>
> - Sanitize the state before starting the subtest.
> - Clear the states before exiting the subtest.
> - Update existing libdrm APIs with IGT kms APIs.
> - Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..)
>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> tests/kms_universal_plane.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c index
> a6e11777d..8c1ce8143 100644
> --- a/tests/kms_universal_plane.c
> +++ b/tests/kms_universal_plane.c
> @@ -139,7 +139,7 @@ functional_test_fini(functional_test_t *test,
> igt_output_t *output)
> igt_remove_fb(test->data->drm_fd, &test->red_fb);
> igt_remove_fb(test->data->drm_fd, &test->yellow_fb);
>
> - igt_output_set_pipe(output, PIPE_ANY);
> + igt_output_set_pipe(output, PIPE_NONE);
> igt_display_commit2(&test->data->display, COMMIT_LEGACY); }
>
> @@ -386,7 +386,7 @@ sanity_test_fini(sanity_test_t *test, igt_output_t
> *output)
> igt_remove_fb(test->data->drm_fd, &test->undersized_fb);
> igt_remove_fb(test->data->drm_fd, &test->blue_fb);
>
> - igt_output_set_pipe(output, PIPE_ANY);
> + igt_output_set_pipe(output, PIPE_NONE);
> igt_display_commit2(&test->data->display, COMMIT_LEGACY); }
>
> @@ -516,7 +516,7 @@ pageflip_test_fini(pageflip_test_t *test, igt_output_t
> *output)
> igt_remove_fb(test->data->drm_fd, &test->red_fb);
> igt_remove_fb(test->data->drm_fd, &test->blue_fb);
>
> - igt_output_set_pipe(output, PIPE_ANY);
> + igt_output_set_pipe(output, PIPE_NONE);
> igt_display_commit2(&test->data->display, COMMIT_LEGACY); }
>
> @@ -603,7 +603,7 @@ cursor_leak_test_fini(data_t *data,
> for (i = 0; i < 10; i++)
> igt_remove_fb(data->drm_fd, &curs[i]);
>
> - igt_output_set_pipe(output, PIPE_ANY);
> + igt_output_set_pipe(output, PIPE_NONE);
> }
>
> static int
> @@ -752,7 +752,7 @@ gen9_test_fini(gen9_test_t *test, igt_output_t
> *output)
> igt_remove_fb(test->data->drm_fd, &test->smallred_fb);
> igt_remove_fb(test->data->drm_fd, &test->smallblue_fb);
>
> - igt_output_set_pipe(output, PIPE_ANY);
> + igt_output_set_pipe(output, PIPE_NONE);
> igt_display_commit2(&test->data->display, COMMIT_LEGACY); }
>
> --
> 2.43.2
^ permalink raw reply [flat|nested] 27+ messages in thread
* RE: [PATCH i-g-t 8/8] tests/kms_properties: Create dynamic subtests
2024-06-11 4:53 ` [PATCH i-g-t 8/8] tests/kms_properties: Create dynamic subtests Bhanuprakash Modem
@ 2024-06-12 11:47 ` B, Jeevan
0 siblings, 0 replies; 27+ messages in thread
From: B, Jeevan @ 2024-06-12 11:47 UTC (permalink / raw)
To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org
Cc: Thasleem, Mohammed, Modem, Bhanuprakash
LGTM.
Reviewed-by: Jeevan B <jeevan.b@intel.com>
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of
> Bhanuprakash Modem
> Sent: Tuesday, June 11, 2024 10:24 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Thasleem, Mohammed <mohammed.thasleem@intel.com>; Modem,
> Bhanuprakash <bhanuprakash.modem@intel.com>
> Subject: [PATCH i-g-t 8/8] tests/kms_properties: Create dynamic subtests
>
> From: Mohammed Thasleem <mohammed.thasleem@intel.com>
>
> Modified kms_properties to include dynamic test cases.
>
> v2: Fixed compilation issue.
> v3: Removed redundant code.
> v4: Moved get_prop_sanity calls to igt_subtest_group.
> v5: Replace for loop with for_each_disconnected_output.
> v6: Moved cleanup part to igt cleanup patch.
> v7: (Bhanu)
> - Rebase
> - Handle disconnected outputs
>
> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> tests/kms_properties.c | 188 +++++++++++++++++++----------------------
> 1 file changed, 88 insertions(+), 100 deletions(-)
>
> diff --git a/tests/kms_properties.c b/tests/kms_properties.c index
> bd414f534..17e6c0471 100644
> --- a/tests/kms_properties.c
> +++ b/tests/kms_properties.c
> @@ -268,95 +268,76 @@ static void
> run_connector_property_tests(igt_display_t *display, enum pipe pipe,
>
> static void plane_properties(igt_display_t *display, bool atomic) {
> - bool found_any = false, found;
> igt_output_t *output;
> enum pipe pipe;
>
> - if (atomic)
> - igt_skip_on(!display->is_atomic);
> -
> - for_each_pipe(display, pipe) {
> - found = false;
> -
> - for_each_valid_output_on_pipe(display, pipe, output) {
> - igt_display_reset(display);
> -
> - igt_output_set_pipe(output, pipe);
> - if (!intel_pipe_output_combo_valid(display))
> - continue;
> + for_each_pipe_with_single_output(display, pipe, output) {
> + igt_display_reset(display);
>
> - found_any = found = true;
> + igt_output_set_pipe(output, pipe);
> + if (!intel_pipe_output_combo_valid(display))
> + continue;
>
> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe),
> + igt_output_name(output)) {
> run_plane_property_tests(display, pipe, output,
> atomic);
> - break;
> }
> }
> -
> - igt_skip_on(!found_any);
> }
>
> static void crtc_properties(igt_display_t *display, bool atomic) {
> - bool found_any_valid_pipe = false, found;
> enum pipe pipe;
> igt_output_t *output;
>
> - if (atomic)
> - igt_skip_on(!display->is_atomic);
> -
> - for_each_pipe(display, pipe) {
> - found = false;
> + for_each_pipe_with_single_output(display, pipe, output) {
> + igt_display_reset(display);
>
> - for_each_valid_output_on_pipe(display, pipe, output) {
> - igt_display_reset(display);
> -
> - igt_output_set_pipe(output, pipe);
> - if (!intel_pipe_output_combo_valid(display))
> - continue;
> -
> - found_any_valid_pipe = found = true;
> + igt_output_set_pipe(output, pipe);
> + if (!intel_pipe_output_combo_valid(display))
> + continue;
>
> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe),
> + igt_output_name(output)) {
> run_crtc_property_tests(display, pipe, output,
> atomic);
> - break;
> }
> }
> -
> - igt_skip_on(!found_any_valid_pipe);
> }
>
> static void connector_properties(igt_display_t *display, bool atomic) {
> - int i;
> enum pipe pipe;
> igt_output_t *output;
>
> - if (atomic)
> - igt_skip_on(!display->is_atomic);
> -
> for_each_connected_output(display, output) {
> - bool found = false;
> + igt_display_reset(display);
>
> for_each_pipe(display, pipe) {
> if (!igt_pipe_connector_valid(pipe, output))
> continue;
>
> - igt_display_reset(display);
> -
> igt_output_set_pipe(output, pipe);
> - if (!intel_pipe_output_combo_valid(display))
> + if (!intel_pipe_output_combo_valid(display)) {
> + igt_output_set_pipe(output, PIPE_NONE);
> continue;
> + }
> +
> + igt_dynamic_f("pipe-%s-%s",
> kmstest_pipe_name(pipe),
> + igt_output_name(output)) {
> + run_connector_property_tests(display, pipe,
> output, atomic);
> + }
>
> - found = true;
> - run_connector_property_tests(display, pipe, output,
> atomic);
> break;
> }
> -
> - igt_assert_f(found, "Connected output should have at least 1
> valid crtc\n");
> }
>
> - for (i = 0; i < display->n_outputs; i++)
> - if (!igt_output_is_connected(&display->outputs[i]))
> - run_connector_property_tests(display, PIPE_NONE,
> &display->outputs[i], atomic);
> + for_each_disconnected_output(display, output) {
> + igt_display_reset(display);
> +
> + igt_dynamic_f("pipe-None-%s", igt_output_name(output))
> + run_connector_property_tests(display, PIPE_NONE,
> output, atomic);
> +
> + }
> }
>
> static void test_invalid_properties(int fd, @@ -424,7 +405,6 @@ static void
> test_object_invalid_properties(igt_display_t *display,
> igt_output_t *output;
> igt_plane_t *plane;
> enum pipe pipe;
> - int i;
>
> for_each_pipe(display, pipe)
> test_invalid_properties(display->drm_fd, id, type, display-
> >pipes[pipe].crtc_id, DRM_MODE_OBJECT_CRTC, atomic); @@ -433,7 +413,7
> @@ static void test_object_invalid_properties(igt_display_t *display,
> for_each_plane_on_pipe(display, pipe, plane)
> test_invalid_properties(display->drm_fd, id, type,
> plane->drm_plane->plane_id, DRM_MODE_OBJECT_PLANE, atomic);
>
> - for (i = 0, output = &display->outputs[0]; i < display->n_outputs;
> output = &display->outputs[++i])
> + for_each_output(display, output)
> test_invalid_properties(display->drm_fd, id, type, output->id,
> DRM_MODE_OBJECT_CONNECTOR, atomic); }
>
> @@ -763,7 +743,6 @@ static void invalid_properties(igt_display_t *display,
> bool atomic)
> igt_output_t *output;
> igt_plane_t *plane;
> enum pipe pipe;
> - int i;
>
> if (atomic)
> igt_skip_on(!display->is_atomic);
> @@ -775,13 +754,33 @@ static void invalid_properties(igt_display_t
> *display, bool atomic)
> for_each_plane_on_pipe(display, pipe, plane)
> test_object_invalid_properties(display, plane-
> >drm_plane->plane_id, DRM_MODE_OBJECT_PLANE, atomic);
>
> - for (i = 0, output = &display->outputs[0]; i < display->n_outputs;
> output = &display->outputs[++i])
> + for_each_output(display, output)
> test_object_invalid_properties(display, output->id,
> DRM_MODE_OBJECT_CONNECTOR, atomic); }
>
> igt_main
> {
> igt_display_t display;
> + int i;
> + static const struct {
> + const char *name;
> + void (*func)(igt_display_t *, bool);
> + const bool atomic;
> + const char *desc;
> + } tests[] = {
> + { "plane-properties-legacy", plane_properties, false,
> + "Tests plane properties with legacy commit" },
> + { "plane-properties-atomic", plane_properties, true,
> + "Tests plane properties with atomic commit" },
> + { "crtc-properties-legacy", crtc_properties, false,
> + "Tests crtc properties with legacy commit" },
> + { "crtc-properties-atomic", crtc_properties, true,
> + "Tests crtc properties with atomic commit" },
> + { "connector-properties-legacy", connector_properties, false,
> + "Tests connector properties with legacy commit" },
> + { "connector-properties-atomic", connector_properties, true,
> + "Tests connector properties with atomic commit" },
> + };
>
> igt_fixture {
> display.drm_fd = drm_open_driver_master(DRIVER_ANY);
> @@ -791,59 +790,48 @@ igt_main
> igt_display_require(&display, display.drm_fd);
> }
>
> - igt_describe("Tests plane properties with legacy commit");
> - igt_subtest("plane-properties-legacy")
> - plane_properties(&display, false);
> -
> - igt_describe("Tests plane properties with atomic commit");
> - igt_subtest("plane-properties-atomic")
> - plane_properties(&display, true);
> -
> - igt_describe("Tests crtc properties with legacy commit");
> - igt_subtest("crtc-properties-legacy")
> - crtc_properties(&display, false);
> -
> - igt_describe("Tests crtc properties with atomic commit");
> - igt_subtest("crtc-properties-atomic")
> - crtc_properties(&display, true);
> -
> - igt_describe("Tests connector properties with legacy commit");
> - igt_subtest("connector-properties-legacy")
> - connector_properties(&display, false);
> -
> - igt_describe("Tests connector properties with atomic commit");
> - igt_subtest("connector-properties-atomic")
> - connector_properties(&display, true);
> -
> - igt_describe("Checks each property of any type with combination of
> mode object with legacy "
> - "commit and make sure only valid properties are set to
> mode object else "
> - "return with relevant error");
> -
> - igt_subtest("invalid-properties-legacy")
> - invalid_properties(&display, false);
> -
> - igt_describe("Checks each property of any type with combination of
> mode object with atomic "
> - "commit and make sure only valid properties are set to
> mode object else "
> - "return with relevant error");
> + for (i = 0; i < ARRAY_SIZE(tests); i++) {
> + igt_describe_f("%s\n", tests[i].desc);
> + igt_subtest_with_dynamic_f("%s", tests[i].name) {
> + if (tests->atomic && !display.is_atomic)
> + continue;
>
> - igt_subtest("invalid-properties-atomic")
> - invalid_properties(&display, true);
> + tests[i].func(&display, tests->atomic);
> + }
> + }
>
> - igt_describe("Test validates the properties of all planes, crtc and
> connectors with atomic commit");
> - igt_subtest("get_properties-sanity-atomic") {
> - igt_skip_on(!display.is_atomic);
> - get_prop_sanity(&display, true);
> + igt_subtest_group {
> + igt_describe("Checks each property of any type with
> combination of mode object "
> + "with legacy commit and make sure only valid
> properties are set to "
> + "mode object else return with relevant error");
> + igt_subtest("invalid-properties-legacy")
> + invalid_properties(&display, false);
> +
> + igt_describe("Checks each property of any type with
> combination of mode object "
> + "with atomic commit and make sure only valid
> properties are set to "
> + "mode object else return with relevant error");
> + igt_subtest("invalid-properties-atomic")
> + invalid_properties(&display, true);
> }
>
> - igt_describe("Test validates the properties of all planes, crtc and
> connectors with legacy commit");
> - igt_subtest("get_properties-sanity-non-atomic") {
> - if (display.is_atomic)
> - igt_assert_eq(drmSetClientCap(display.drm_fd,
> DRM_CLIENT_CAP_ATOMIC, 0), 0);
> + igt_subtest_group {
> + igt_describe("Test validates the properties of all planes, crtc
> and connectors with legacy commit");
> + igt_subtest("get_properties-sanity-non-atomic") {
> + if (display.is_atomic)
> +
> igt_assert_eq(drmSetClientCap(display.drm_fd,
> DRM_CLIENT_CAP_ATOMIC, 0), 0);
> + get_prop_sanity(&display, false);
> + if (display.is_atomic)
> +
> igt_assert_eq(drmSetClientCap(display.drm_fd,
> DRM_CLIENT_CAP_ATOMIC, 1), 0);
> + }
> + }
>
> - get_prop_sanity(&display, false);
> + igt_subtest_group {
> + igt_fixture
> + igt_require(display.is_atomic);
>
> - if (display.is_atomic)
> - igt_assert_eq(drmSetClientCap(display.drm_fd,
> DRM_CLIENT_CAP_ATOMIC, 1), 0);
> + igt_describe("Test validates the properties of all planes, crtc
> and connectors with atomic commit");
> + igt_subtest("get_properties-sanity-atomic")
> + get_prop_sanity(&display, true);
> }
>
> igt_fixture {
> --
> 2.43.2
^ permalink raw reply [flat|nested] 27+ messages in thread
* Re: [PATCH i-g-t 5/8] tests/kms_tiled_display: Test cleanup
2024-06-11 4:53 ` [PATCH i-g-t 5/8] tests/kms_tiled_display: " Bhanuprakash Modem
@ 2024-06-12 12:21 ` Kamil Konieczny
2024-06-14 8:09 ` [i-g-t V2 " Bhanuprakash Modem
1 sibling, 0 replies; 27+ messages in thread
From: Kamil Konieczny @ 2024-06-12 12:21 UTC (permalink / raw)
To: igt-dev; +Cc: Bhanuprakash Modem, Jeevan B, Mohammed Thasleem
Hi Bhanuprakash,
On 2024-06-11 at 10:23:45 +0530, Bhanuprakash Modem wrote:
> Make sure the below points in IGT cleanup:
>
> - Sanitize the state before starting the subtest.
> - Clear the states before exiting the subtest.
> - Update existing libdrm APIs with IGT kms APIs.
> - Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..)
While other patches from series looks simple this one is a lot
bigger and complicated. I suggest to split it into cleanups and
simplifications and putting more complicated changes into
separate patch.
Regards,
Kamil
>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> tests/kms_tiled_display.c | 129 ++++++++++++++------------------------
> 1 file changed, 48 insertions(+), 81 deletions(-)
>
> diff --git a/tests/kms_tiled_display.c b/tests/kms_tiled_display.c
> index 3ffd6a9a4..2096a63e1 100644
> --- a/tests/kms_tiled_display.c
> +++ b/tests/kms_tiled_display.c
> @@ -79,7 +79,6 @@ typedef struct {
> igt_fb_t fb_test_pattern;
> igt_display_t display;
> data_connector_t *conns;
> - enum igt_commit_style commit;
> struct timeval first_ts;
> int linetime_us;
>
> @@ -188,25 +187,6 @@ reset_plane(igt_output_t *output)
> igt_plane_set_fb(primary, NULL);
> }
>
> -static void reset_output(igt_output_t *output)
> -{
> - igt_output_set_pipe(output, PIPE_NONE);
> -}
> -
> -static void reset_mode(data_t *data)
> -{
> - int count;
> - igt_output_t *output;
> - data_connector_t *conns = data->conns;
> -
> - for (count = 0; count < data->num_h_tiles; count++) {
> - output = igt_output_from_connector(&data->display,
> - conns[count].connector);
> - igt_output_set_pipe(output, PIPE_NONE);
> - }
> - igt_display_commit2(&data->display, data->commit);
> -}
> -
> static void test_cleanup(data_t *data)
> {
> int count;
> @@ -215,11 +195,11 @@ static void test_cleanup(data_t *data)
> for (count = 0; count < data->num_h_tiles; count++) {
> if (conns[count].output) {
> reset_plane(conns[count].output);
> - reset_output(conns[count].output);
> + igt_output_set_pipe(conns[count].output, PIPE_NONE);
> }
> }
> igt_remove_fb(data->drm_fd, &data->fb_test_pattern);
> - igt_display_commit2(&data->display, data->commit);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> memset(conns, 0, sizeof(data_connector_t) * data->num_h_tiles);
> }
>
> @@ -230,8 +210,8 @@ static int mode_linetime_us(const drmModeModeInfo *mode)
>
> static void setup_mode(data_t *data)
> {
> - int count = 0, prev = 0, i = 0;
> - bool pipe_in_use = false, found = false;
> + int count = 0, i = 0;
> + bool found = false;
> enum pipe pipe;
> drmModeModeInfo *mode;
> igt_output_t *output;
> @@ -242,51 +222,45 @@ static void setup_mode(data_t *data)
> * This is done to ensure a complete modeset occures every
> * time the test is run.
> */
> - reset_mode(data);
> + igt_display_reset(&data->display);
>
> for (count = 0; count < data->num_h_tiles; count++) {
> + conns[count].pipe = PIPE_NONE;
> output = igt_output_from_connector(&data->display,
> conns[count].connector);
>
> for_each_pipe(&data->display, pipe) {
> - pipe_in_use = false;
> - found = false;
> -
> - if (count > 0) {
> - for (prev = count - 1; prev >= 0; prev--) {
> - if (pipe == conns[prev].pipe) {
> - pipe_in_use = true;
> - break;
> - }
> + if (output->pending_pipe == pipe)
> + continue;
> +
> + igt_output_set_pipe(output, pipe);
> + for (i = 0; i < conns[count].connector->count_modes; i++) {
> + mode = &conns[count].connector->modes[i];
> + if (mode->vdisplay == conns[count].tile.tile_v_size &&
> + mode->hdisplay == conns[count].tile.tile_h_size) {
> + found = true;
> + break;
> }
> - if (pipe_in_use)
> - continue;
> }
>
> - if (igt_pipe_connector_valid(pipe, output)) {
> - conns[count].pipe = pipe;
> - conns[count].output = output;
> -
> - igt_output_set_pipe(conns[count].output,
> - conns[count].pipe);
> - break;
> + if (!found) {
> + igt_output_set_pipe(output, PIPE_NONE);
> + continue;
> }
> - }
> - igt_require(conns[count].pipe != PIPE_NONE);
>
> - for (i = 0; i < conns[count].connector->count_modes; i++) {
> - mode = &conns[count].connector->modes[i];
> - if (mode->vdisplay == conns[count].tile.tile_v_size &&
> - mode->hdisplay == conns[count].tile.tile_h_size) {
> - found = true;
> - break;
> + igt_output_override_mode(output, mode);
> + if (!intel_pipe_output_combo_valid(&data->display)) {
> + igt_output_set_pipe(output, PIPE_NONE);
> + continue;
> }
> +
> + conns[count].pipe = pipe;
> + conns[count].output = output;
> + break;
> }
> - igt_require(found);
> - igt_output_override_mode(output, mode);
> + igt_require(conns[count].pipe != PIPE_NONE);
> data->linetime_us = mode_linetime_us(mode);
> }
> - igt_require(intel_pipe_output_combo_valid(&data->display));
> igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
> }
>
> @@ -529,7 +503,6 @@ static void override_edid(data_t *data)
> igt_output_t *output;
> int num_outputs = 0;
> int num_tiles = 0;
> - drmModeResPtr res;
>
> igt_require(data->display.n_pipes >= 2);
>
> @@ -551,10 +524,7 @@ static void override_edid(data_t *data)
> num_tiles = min(num_outputs, data->display.n_pipes);
>
> /* disable everything so that we are sure to get a full modeset */
> - res = drmModeGetResources(data->drm_fd);
> - igt_require(res);
> - kmstest_unset_all_crtcs(data->drm_fd, res);
> - drmModeFreeResources(res);
> + igt_display_reset(&data->display);
>
> for (int i = 0; i < num_tiles; i++)
> force_edid_with_tile(data, outputs[i],
> @@ -563,28 +533,24 @@ static void override_edid(data_t *data)
>
> static void basic_test(data_t *data, drmEventContext *drm_event, struct pollfd *pfd)
> {
> - int ret;
> -
> - get_number_of_h_tiles(data);
> - igt_debug("Number of Horizontal Tiles: %d\n",
> - data->num_h_tiles);
> - igt_require(data->num_h_tiles > 0);
> - data->conns = calloc(data->num_h_tiles,
> - sizeof(data_connector_t));
> - igt_assert(data->conns);
> -
> - get_connectors(data);
> - setup_mode(data);
> - setup_framebuffer(data);
> - timerclear(&data->first_ts);
> - igt_display_commit_atomic(&data->display,
> + int ret;
> +
> + data->conns = calloc(data->num_h_tiles,
> + sizeof(data_connector_t));
> + igt_assert(data->conns);
> +
> + get_connectors(data);
> + setup_mode(data);
> + setup_framebuffer(data);
> + timerclear(&data->first_ts);
> + igt_display_commit_atomic(&data->display,
> DRM_MODE_ATOMIC_NONBLOCK |
> DRM_MODE_PAGE_FLIP_EVENT, data);
> - while (!got_all_page_flips(data)) {
> - ret = poll(pfd, 1, 1000);
> - igt_assert(ret == 1);
> - drmHandleEvent(data->drm_fd, drm_event);
> - }
> + while (!got_all_page_flips(data)) {
> + ret = poll(pfd, 1, 1000);
> + igt_assert(ret == 1);
> + drmHandleEvent(data->drm_fd, drm_event);
> + }
> }
>
> igt_main
> @@ -596,14 +562,15 @@ igt_main
> data.drm_fd = drm_open_driver_master(DRIVER_ANY);
> kmstest_set_vt_graphics_mode();
> igt_display_require(&data.display, data.drm_fd);
> + igt_require(data.display.is_atomic);
> + igt_display_require_output(&data.display);
> +
> igt_display_reset(&data.display);
>
> pfd.fd = data.drm_fd;
> pfd.events = POLLIN;
> drm_event.version = 3;
> drm_event.page_flip_handler2 = page_flip_handler;
> - data.commit = data.display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY;
> - igt_require(data.commit == COMMIT_ATOMIC);
>
> get_number_of_h_tiles(&data);
> igt_debug("Number of real horizontal tiles: %d\n", data.num_h_tiles);
> --
> 2.43.2
>
^ permalink raw reply [flat|nested] 27+ messages in thread
* RE: [PATCH i-g-t 1/8] tests/intel/kms_fence_pin_leak: Test cleanup
2024-06-11 4:53 ` [PATCH i-g-t 1/8] tests/intel/kms_fence_pin_leak: " Bhanuprakash Modem
@ 2024-06-14 5:28 ` B, Jeevan
0 siblings, 0 replies; 27+ messages in thread
From: B, Jeevan @ 2024-06-14 5:28 UTC (permalink / raw)
To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org; +Cc: Modem, Bhanuprakash
LGTM.
Reviewed-by: Jeevan B <jeevan.b@intel.com>
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of
> Bhanuprakash Modem
> Sent: Tuesday, June 11, 2024 10:24 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Subject: [PATCH i-g-t 1/8] tests/intel/kms_fence_pin_leak: Test cleanup
>
> Make sure the below points in IGT cleanup:
>
> - Sanitize the state before starting the subtest.
> - Clear the states before exiting the subtest.
> - Update existing libdrm APIs with IGT kms APIs.
> - Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..)
>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> tests/intel/kms_fence_pin_leak.c | 11 +++++------
> 1 file changed, 5 insertions(+), 6 deletions(-)
>
> diff --git a/tests/intel/kms_fence_pin_leak.c b/tests/intel/kms_fence_pin_leak.c
> index 5d25d9ee3..8ccd73a93 100644
> --- a/tests/intel/kms_fence_pin_leak.c
> +++ b/tests/intel/kms_fence_pin_leak.c
> @@ -199,7 +199,7 @@ static void run_single_test(data_t *data, enum pipe pipe,
> igt_output_t *output)
> }
>
> igt_plane_set_fb(primary, NULL);
> - igt_output_set_pipe(output, PIPE_ANY);
> + igt_output_set_pipe(output, PIPE_NONE);
> igt_display_commit(display);
>
> igt_remove_fb(data->drm_fd, &fb[1]);
> @@ -234,18 +234,17 @@ igt_simple_main
> data_t data = {};
>
> data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
> + kmstest_set_vt_graphics_mode();
> + igt_display_require(&data.display, data.drm_fd);
> + igt_display_require_output(&data.display);
> +
> igt_require_gem(data.drm_fd);
> igt_require(gem_available_fences(data.drm_fd) > 0);
> igt_require(gem_has_contexts(data.drm_fd));
>
> data.devid = intel_get_drm_devid(data.drm_fd);
> -
> - kmstest_set_vt_graphics_mode();
> -
> data.bops = buf_ops_create(data.drm_fd);
>
> - igt_display_require(&data.display, data.drm_fd);
> -
> alloc_fence_objs(&data);
>
> run_test(&data);
> --
> 2.43.2
^ permalink raw reply [flat|nested] 27+ messages in thread
* [i-g-t V2 5/8] tests/kms_tiled_display: Test cleanup
2024-06-11 4:53 ` [PATCH i-g-t 5/8] tests/kms_tiled_display: " Bhanuprakash Modem
2024-06-12 12:21 ` Kamil Konieczny
@ 2024-06-14 8:09 ` Bhanuprakash Modem
1 sibling, 0 replies; 27+ messages in thread
From: Bhanuprakash Modem @ 2024-06-14 8:09 UTC (permalink / raw)
To: igt-dev; +Cc: Bhanuprakash Modem, Jeevan B
Make sure the below points in IGT cleanup:
- Sanitize the state before starting the subtest.
- Clear the states before exiting the subtest.
- Update existing libdrm APIs with IGT kms APIs.
- Other misc (Ex: update deprecated APIs/macros/enums, FB leaks etc..)
V2: - Drop few complex fixes
Cc: Jeevan B <jeevan.b@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_tiled_display.c | 77 +++++++++++++++------------------------
1 file changed, 30 insertions(+), 47 deletions(-)
diff --git a/tests/kms_tiled_display.c b/tests/kms_tiled_display.c
index 3ffd6a9a4..2c9d63799 100644
--- a/tests/kms_tiled_display.c
+++ b/tests/kms_tiled_display.c
@@ -79,7 +79,6 @@ typedef struct {
igt_fb_t fb_test_pattern;
igt_display_t display;
data_connector_t *conns;
- enum igt_commit_style commit;
struct timeval first_ts;
int linetime_us;
@@ -188,23 +187,10 @@ reset_plane(igt_output_t *output)
igt_plane_set_fb(primary, NULL);
}
-static void reset_output(igt_output_t *output)
-{
- igt_output_set_pipe(output, PIPE_NONE);
-}
-
static void reset_mode(data_t *data)
{
- int count;
- igt_output_t *output;
- data_connector_t *conns = data->conns;
-
- for (count = 0; count < data->num_h_tiles; count++) {
- output = igt_output_from_connector(&data->display,
- conns[count].connector);
- igt_output_set_pipe(output, PIPE_NONE);
- }
- igt_display_commit2(&data->display, data->commit);
+ igt_display_reset(&data->display);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
}
static void test_cleanup(data_t *data)
@@ -215,11 +201,11 @@ static void test_cleanup(data_t *data)
for (count = 0; count < data->num_h_tiles; count++) {
if (conns[count].output) {
reset_plane(conns[count].output);
- reset_output(conns[count].output);
+ igt_output_set_pipe(conns[count].output, PIPE_NONE);
}
}
igt_remove_fb(data->drm_fd, &data->fb_test_pattern);
- igt_display_commit2(&data->display, data->commit);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
memset(conns, 0, sizeof(data_connector_t) * data->num_h_tiles);
}
@@ -529,7 +515,6 @@ static void override_edid(data_t *data)
igt_output_t *output;
int num_outputs = 0;
int num_tiles = 0;
- drmModeResPtr res;
igt_require(data->display.n_pipes >= 2);
@@ -551,10 +536,7 @@ static void override_edid(data_t *data)
num_tiles = min(num_outputs, data->display.n_pipes);
/* disable everything so that we are sure to get a full modeset */
- res = drmModeGetResources(data->drm_fd);
- igt_require(res);
- kmstest_unset_all_crtcs(data->drm_fd, res);
- drmModeFreeResources(res);
+ igt_display_reset(&data->display);
for (int i = 0; i < num_tiles; i++)
force_edid_with_tile(data, outputs[i],
@@ -563,28 +545,28 @@ static void override_edid(data_t *data)
static void basic_test(data_t *data, drmEventContext *drm_event, struct pollfd *pfd)
{
- int ret;
-
- get_number_of_h_tiles(data);
- igt_debug("Number of Horizontal Tiles: %d\n",
- data->num_h_tiles);
- igt_require(data->num_h_tiles > 0);
- data->conns = calloc(data->num_h_tiles,
- sizeof(data_connector_t));
- igt_assert(data->conns);
-
- get_connectors(data);
- setup_mode(data);
- setup_framebuffer(data);
- timerclear(&data->first_ts);
- igt_display_commit_atomic(&data->display,
- DRM_MODE_ATOMIC_NONBLOCK |
- DRM_MODE_PAGE_FLIP_EVENT, data);
- while (!got_all_page_flips(data)) {
- ret = poll(pfd, 1, 1000);
- igt_assert(ret == 1);
- drmHandleEvent(data->drm_fd, drm_event);
- }
+ int ret;
+
+ get_number_of_h_tiles(data);
+ igt_debug("Number of Horizontal Tiles: %d\n",
+ data->num_h_tiles);
+ igt_require(data->num_h_tiles > 0);
+ data->conns = calloc(data->num_h_tiles,
+ sizeof(data_connector_t));
+ igt_assert(data->conns);
+
+ get_connectors(data);
+ setup_mode(data);
+ setup_framebuffer(data);
+ timerclear(&data->first_ts);
+ igt_display_commit_atomic(&data->display,
+ DRM_MODE_ATOMIC_NONBLOCK |
+ DRM_MODE_PAGE_FLIP_EVENT, data);
+ while (!got_all_page_flips(data)) {
+ ret = poll(pfd, 1, 1000);
+ igt_assert(ret == 1);
+ drmHandleEvent(data->drm_fd, drm_event);
+ }
}
igt_main
@@ -596,14 +578,15 @@ igt_main
data.drm_fd = drm_open_driver_master(DRIVER_ANY);
kmstest_set_vt_graphics_mode();
igt_display_require(&data.display, data.drm_fd);
+ igt_require(data.display.is_atomic);
+ igt_display_require_output(&data.display);
+
igt_display_reset(&data.display);
pfd.fd = data.drm_fd;
pfd.events = POLLIN;
drm_event.version = 3;
drm_event.page_flip_handler2 = page_flip_handler;
- data.commit = data.display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY;
- igt_require(data.commit == COMMIT_ATOMIC);
get_number_of_h_tiles(&data);
igt_debug("Number of real horizontal tiles: %d\n", data.num_h_tiles);
--
2.43.2
^ permalink raw reply related [flat|nested] 27+ messages in thread
* RE: [PATCH i-g-t 3/8] tests/intel/kms_pwrite_crc: Test cleanup
2024-06-12 11:30 ` B, Jeevan
@ 2024-06-14 8:46 ` B, Jeevan
0 siblings, 0 replies; 27+ messages in thread
From: B, Jeevan @ 2024-06-14 8:46 UTC (permalink / raw)
To: B, Jeevan, Modem, Bhanuprakash, igt-dev@lists.freedesktop.org
Cc: Modem, Bhanuprakash
Reviewed-by: Jeevan B <jeevan.b@intel.com>
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of B, Jeevan
> Sent: Wednesday, June 12, 2024 5:01 PM
> To: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; igt-
> dev@lists.freedesktop.org
> Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Subject: RE: [PATCH i-g-t 3/8] tests/intel/kms_pwrite_crc: Test cleanup
>
> LGTM.
>
> ACK RB already present.
>
> > -----Original Message-----
> > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of
> > Bhanuprakash Modem
> > Sent: Tuesday, June 11, 2024 10:24 AM
> > To: igt-dev@lists.freedesktop.org
> > Cc: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> > Subject: [PATCH i-g-t 3/8] tests/intel/kms_pwrite_crc: Test cleanup
> >
> > Make sure the below points in IGT cleanup:
> >
> > - Sanitize the state before starting the subtest.
> > - Clear the states before exiting the subtest.
> > - Update existing libdrm APIs with IGT kms APIs.
> > - Other misc (Ex: update deprecated APIs/macros/enums, FB leaks
> > etc..)
> >
> > V2:
> > - Drop igt_fixture form igt_simple_main
> >
> > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> > ---
> > tests/intel/kms_pwrite_crc.c | 11 +++++------
> > 1 file changed, 5 insertions(+), 6 deletions(-)
> >
> > diff --git a/tests/intel/kms_pwrite_crc.c
> > b/tests/intel/kms_pwrite_crc.c index 12add5da6..338c92c3a 100644
> > --- a/tests/intel/kms_pwrite_crc.c
> > +++ b/tests/intel/kms_pwrite_crc.c
> > @@ -125,7 +125,6 @@ static void prepare_crtc(data_t *data)
> > igt_output_t *output = data->output;
> > drmModeModeInfo *mode;
> >
> > - igt_display_reset(display);
> > /* select the pipe we want to use */
> > igt_output_set_pipe(output, data->pipe);
> >
> > @@ -161,7 +160,7 @@ static void cleanup_crtc(data_t *data)
> >
> > igt_plane_set_fb(data->primary, NULL);
> >
> > - igt_output_set_pipe(output, PIPE_ANY);
> > + igt_output_set_pipe(output, PIPE_NONE);
> > igt_display_commit(display);
> >
> > igt_remove_fb(data->drm_fd, &data->fb[0]); @@ -196,14 +195,14 @@
> > static data_t data; igt_simple_main {
> > data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
> > -
> > - data.devid = intel_get_drm_devid(data.drm_fd);
> > -
> > kmstest_set_vt_graphics_mode();
> >
> > + igt_display_require(&data.display, data.drm_fd);
> > + igt_display_require_output(&data.display);
> > igt_require_pipe_crc(data.drm_fd);
> >
> > - igt_display_require(&data.display, data.drm_fd);
> > + data.devid = intel_get_drm_devid(data.drm_fd);
> > + data.pipe_crc = NULL;
> >
> > run_test(&data);
> >
> > --
> > 2.43.2
^ permalink raw reply [flat|nested] 27+ messages in thread
* ✓ CI.xeBAT: success for IGT KMS Test cleanup (rev3)
2024-06-11 4:53 [PATCH i-g-t 0/8] IGT KMS Test cleanup Bhanuprakash Modem
` (11 preceding siblings ...)
2024-06-11 11:06 ` ✗ Fi.CI.IGT: " Patchwork
@ 2024-06-14 13:18 ` Patchwork
2024-06-14 13:27 ` ✓ Fi.CI.BAT: " Patchwork
` (2 subsequent siblings)
15 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2024-06-14 13:18 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1674 bytes --]
== Series Details ==
Series: IGT KMS Test cleanup (rev3)
URL : https://patchwork.freedesktop.org/series/134685/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7889_BAT -> XEIGTPW_11258_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (5 -> 5)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11258_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [PASS][1] -> [DMESG-FAIL][2] ([Intel XE#324])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
[Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
Build changes
-------------
* IGT: IGT_7889 -> IGTPW_11258
IGTPW_11258: 11258
IGT_7889: 9dca15da37f2a385b04427eb39cd460224d09c25 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1470-00e9498b453447a5afe527bd0e174587b12f66d2: 00e9498b453447a5afe527bd0e174587b12f66d2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/index.html
[-- Attachment #2: Type: text/html, Size: 2095 bytes --]
^ permalink raw reply [flat|nested] 27+ messages in thread
* ✓ Fi.CI.BAT: success for IGT KMS Test cleanup (rev3)
2024-06-11 4:53 [PATCH i-g-t 0/8] IGT KMS Test cleanup Bhanuprakash Modem
` (12 preceding siblings ...)
2024-06-14 13:18 ` ✓ CI.xeBAT: success for IGT KMS Test cleanup (rev3) Patchwork
@ 2024-06-14 13:27 ` Patchwork
2024-06-14 23:06 ` ✓ CI.xeFULL: " Patchwork
2024-06-16 21:11 ` ✗ Fi.CI.IGT: failure " Patchwork
15 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2024-06-14 13:27 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 8283 bytes --]
== Series Details ==
Series: IGT KMS Test cleanup (rev3)
URL : https://patchwork.freedesktop.org/series/134685/
State : success
== Summary ==
CI Bug Log - changes from IGT_7889 -> IGTPW_11258
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/index.html
Participating hosts (44 -> 42)
------------------------------
Additional (1): bat-dg2-11
Missing (3): fi-kbl-8809g fi-snb-2520m fi-bsw-n3050
Known issues
------------
Here are the changes found in IGTPW_11258 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_mmap@basic:
- bat-dg2-11: NOTRUN -> [SKIP][1] ([i915#4083])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-dg2-11/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-11: NOTRUN -> [SKIP][2] ([i915#4079]) +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-dg2-11/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-11: NOTRUN -> [SKIP][3] ([i915#4077]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-dg2-11/igt@gem_tiled_fence_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-11: NOTRUN -> [SKIP][4] ([i915#6621])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-dg2-11/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][5] ([i915#4212]) +7 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][6] ([i915#5190])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][7] ([i915#4215] / [i915#5190])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-dg2-11: NOTRUN -> [SKIP][8] ([i915#4103] / [i915#4213]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-11: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#3840])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-dg2-11/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-11: NOTRUN -> [SKIP][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-11: NOTRUN -> [SKIP][11] ([i915#5274])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-11: NOTRUN -> [SKIP][12] ([i915#5354])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-dg2-11/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-11: NOTRUN -> [SKIP][13] ([i915#1072] / [i915#9732]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-dg2-11/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-11: NOTRUN -> [SKIP][14] ([i915#3555])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-11: NOTRUN -> [SKIP][15] ([i915#3708])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-gtt:
- bat-dg2-11: NOTRUN -> [SKIP][16] ([i915#3708] / [i915#4077]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-dg2-11/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- bat-dg2-11: NOTRUN -> [SKIP][17] ([i915#3291] / [i915#3708]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-dg2-11/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
- {bat-mtlp-9}: [SKIP][18] ([i915#10580]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
* igt@kms_flip@basic-flip-vs-dpms@b-dp6:
- {bat-mtlp-9}: [FAIL][20] ([i915#6121]) -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/bat-mtlp-9/igt@kms_flip@basic-flip-vs-dpms@b-dp6.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-mtlp-9/igt@kms_flip@basic-flip-vs-dpms@b-dp6.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-6:
- {bat-mtlp-9}: [DMESG-FAIL][22] ([i915#11009]) -> [PASS][23] +1 other test pass
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-6.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-6.html
* igt@kms_pm_rpm@basic-rte:
- {bat-mtlp-9}: [DMESG-WARN][24] ([i915#11009]) -> [PASS][25] +2 other tests pass
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/bat-mtlp-9/igt@kms_pm_rpm@basic-rte.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/bat-mtlp-9/igt@kms_pm_rpm@basic-rte.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10580
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11009]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11009
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[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#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6121
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7889 -> IGTPW_11258
CI-20190529: 20190529
CI_DRM_14943: 00e9498b453447a5afe527bd0e174587b12f66d2 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11258: 11258
IGT_7889: 9dca15da37f2a385b04427eb39cd460224d09c25 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/index.html
[-- Attachment #2: Type: text/html, Size: 9796 bytes --]
^ permalink raw reply [flat|nested] 27+ messages in thread
* ✓ CI.xeFULL: success for IGT KMS Test cleanup (rev3)
2024-06-11 4:53 [PATCH i-g-t 0/8] IGT KMS Test cleanup Bhanuprakash Modem
` (13 preceding siblings ...)
2024-06-14 13:27 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-06-14 23:06 ` Patchwork
2024-06-16 21:11 ` ✗ Fi.CI.IGT: failure " Patchwork
15 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2024-06-14 23:06 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 26156 bytes --]
== Series Details ==
Series: IGT KMS Test cleanup (rev3)
URL : https://patchwork.freedesktop.org/series/134685/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7889_full -> XEIGTPW_11258_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (3 -> 2)
------------------------------
Missing (1): shard-adlp
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11258_full:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move:
- {shard-lnl}: [SKIP][1] ([Intel XE#656]) -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- {shard-lnl}: NOTRUN -> [DMESG-WARN][3] +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-lnl-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_psr@fbc-psr2-cursor-blt@edp-1:
- {shard-lnl}: [PASS][4] -> [FAIL][5] +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-lnl-1/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-lnl-3/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html
* igt@kms_psr@psr2-suspend:
- {shard-lnl}: [PASS][6] -> [DMESG-WARN][7] +2 other tests dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-lnl-4/igt@kms_psr@psr2-suspend.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-lnl-1/igt@kms_psr@psr2-suspend.html
* igt@xe_exec_basic@many-execqueues-null:
- {shard-lnl}: NOTRUN -> [INCOMPLETE][8]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-lnl-3/igt@xe_exec_basic@many-execqueues-null.html
New tests
---------
New tests have been introduced between XEIGT_7889_full and XEIGTPW_11258_full:
### New IGT tests (45) ###
* igt@kms_properties@connector-properties-atomic@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [1.49] s
* igt@kms_properties@connector-properties-atomic@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [9.35] s
* igt@kms_properties@connector-properties-atomic@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [1.02] s
* igt@kms_properties@connector-properties-atomic@pipe-none-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-dp-3:
- Statuses : 2 pass(s)
- Exec time: [0.0, 0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-5:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-7:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-8:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [1.48] s
* igt@kms_properties@connector-properties-legacy@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [9.99] s
* igt@kms_properties@connector-properties-legacy@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [1.13] s
* igt@kms_properties@connector-properties-legacy@pipe-none-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-dp-3:
- Statuses : 2 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-hdmi-a-5:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-hdmi-a-7:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-hdmi-a-8:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@crtc-properties-atomic@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.55] s
* igt@kms_properties@crtc-properties-atomic@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.32] s
* igt@kms_properties@crtc-properties-atomic@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.29] s
* igt@kms_properties@crtc-properties-atomic@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.67] s
* igt@kms_properties@crtc-properties-atomic@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.57] s
* igt@kms_properties@crtc-properties-atomic@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_properties@crtc-properties-atomic@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_properties@crtc-properties-legacy@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.55] s
* igt@kms_properties@crtc-properties-legacy@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.33] s
* igt@kms_properties@crtc-properties-legacy@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.31] s
* igt@kms_properties@crtc-properties-legacy@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.66] s
* igt@kms_properties@crtc-properties-legacy@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.65] s
* igt@kms_properties@crtc-properties-legacy@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_properties@crtc-properties-legacy@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_properties@plane-properties-atomic@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.50] s
* igt@kms_properties@plane-properties-atomic@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.45] s
* igt@kms_properties@plane-properties-atomic@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
* igt@kms_properties@plane-properties-atomic@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
* igt@kms_properties@plane-properties-legacy@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.71] s
* igt@kms_properties@plane-properties-legacy@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.50] s
* igt@kms_properties@plane-properties-legacy@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.47] s
* igt@kms_properties@plane-properties-legacy@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.79] s
* igt@kms_properties@plane-properties-legacy@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.82] s
* igt@kms_properties@plane-properties-legacy@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.43] s
* igt@kms_properties@plane-properties-legacy@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
Known issues
------------
Here are the changes found in XEIGTPW_11258_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][9] -> [FAIL][10] ([Intel XE#827]) +1 other test fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-435/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-6.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-466/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@linear-8bpp-rotate-180:
- shard-dg2-set2: [PASS][11] -> [INCOMPLETE][12] ([Intel XE#1195])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-463/igt@kms_big_fb@linear-8bpp-rotate-180.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-463/igt@kms_big_fb@linear-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1124] / [Intel XE#1201])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1201] / [Intel XE#373])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-466/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_cursor_legacy@forked-move@pipe-b:
- shard-dg2-set2: [PASS][15] -> [DMESG-WARN][16] ([Intel XE#1214] / [Intel XE#282]) +5 other tests dmesg-warn
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-433/igt@kms_cursor_legacy@forked-move@pipe-b.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-463/igt@kms_cursor_legacy@forked-move@pipe-b.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1201] / [Intel XE#455]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#651]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-stridechange:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#653])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [PASS][20] -> [SKIP][21] ([Intel XE#1201] / [Intel XE#455])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-433/igt@kms_hdr@invalid-hdr.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#870])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-435/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-dg2-set2: [PASS][23] -> [FAIL][24] ([Intel XE#771] / [Intel XE#899])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6:
- shard-dg2-set2: [PASS][25] -> [FAIL][26] ([Intel XE#899])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-dg2-set2: [PASS][27] -> [DMESG-WARN][28] ([Intel XE#1214] / [Intel XE#1551]) +2 other tests dmesg-warn
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-434/igt@kms_vblank@ts-continuation-dpms-suspend.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-434/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@xe_evict@evict-cm-threads-large:
- shard-dg2-set2: [PASS][29] -> [TIMEOUT][30] ([Intel XE#1473] / [Intel XE#392])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-463/igt@xe_evict@evict-cm-threads-large.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-435/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#288])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-dg2-set2: [PASS][32] -> [SKIP][33] ([Intel XE#1192] / [Intel XE#1201])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-434/igt@xe_live_ktest@xe_dma_buf.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-466/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1201] / [Intel XE#944])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-433/igt@xe_query@multigpu-query-hwconfig.html
#### Possible fixes ####
* igt@core_setmaster@master-drop-set-root:
- shard-dg2-set2: [DMESG-WARN][35] ([Intel XE#1214]) -> [PASS][36] +1 other test pass
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-463/igt@core_setmaster@master-drop-set-root.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2-set2: [DMESG-WARN][37] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-434/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-435/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [DMESG-WARN][39] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][40] +8 other tests pass
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-464/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- {shard-lnl}: [FAIL][41] -> [PASS][42] +1 other test pass
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-lnl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-lnl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_flip@flip-vs-suspend@c-dp4:
- shard-dg2-set2: [INCOMPLETE][43] ([Intel XE#1195] / [Intel XE#2049]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-464/igt@kms_flip@flip-vs-suspend@c-dp4.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-463/igt@kms_flip@flip-vs-suspend@c-dp4.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
- {shard-lnl}: [DMESG-WARN][45] -> [PASS][46] +2 other tests pass
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-lnl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-lnl-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][47] ([Intel XE#361]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@xe_create@create-contexts:
- shard-dg2-set2: [INCOMPLETE][49] ([Intel XE#1195]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-463/igt@xe_create@create-contexts.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-433/igt@xe_create@create-contexts.html
* igt@xe_evict@evict-beng-cm-threads-small:
- shard-dg2-set2: [FAIL][51] ([Intel XE#1069]) -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-466/igt@xe_evict@evict-beng-cm-threads-small.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-464/igt@xe_evict@evict-beng-cm-threads-small.html
* igt@xe_evict@evict-beng-threads-large:
- shard-dg2-set2: [TIMEOUT][53] ([Intel XE#1473]) -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-435/igt@xe_evict@evict-beng-threads-large.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-433/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-threads-large:
- shard-dg2-set2: [TIMEOUT][55] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][56] +1 other test pass
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-433/igt@xe_evict@evict-threads-large.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-464/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [TIMEOUT][57] ([Intel XE#2105]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_live_ktest@xe_migrate:
- shard-dg2-set2: [SKIP][59] ([Intel XE#1192] / [Intel XE#1201]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-464/igt@xe_live_ktest@xe_migrate.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-466/igt@xe_live_ktest@xe_migrate.html
* igt@xe_pm@s3-multiple-execs:
- shard-dg2-set2: [DMESG-WARN][61] ([Intel XE#1214] / [Intel XE#1551] / [Intel XE#569]) -> [PASS][62] +1 other test pass
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-463/igt@xe_pm@s3-multiple-execs.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-434/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-dg2-set2: [DMESG-WARN][63] ([Intel XE#1214] / [Intel XE#569]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-433/igt@xe_pm@s3-vm-bind-prefetch.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-466/igt@xe_pm@s3-vm-bind-prefetch.html
#### Warnings ####
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [INCOMPLETE][65] ([Intel XE#1195] / [Intel XE#1551] / [Intel XE#2049]) -> [DMESG-WARN][66] ([Intel XE#1214] / [Intel XE#1551])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-464/igt@kms_flip@flip-vs-suspend.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-463/igt@kms_flip@flip-vs-suspend.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][67] ([Intel XE#1201] / [Intel XE#1500]) -> [SKIP][68] ([Intel XE#1201] / [Intel XE#362])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_wedged@basic-wedged:
- shard-dg2-set2: [SKIP][69] ([Intel XE#1130] / [Intel XE#1201]) -> [DMESG-WARN][70] ([Intel XE#1214] / [Intel XE#1760])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7889/shard-dg2-435/igt@xe_wedged@basic-wedged.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/shard-dg2-463/igt@xe_wedged@basic-wedged.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[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#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1899
[Intel XE#1909]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1909
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_7889 -> IGTPW_11258
IGTPW_11258: 11258
IGT_7889: 9dca15da37f2a385b04427eb39cd460224d09c25 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1470-00e9498b453447a5afe527bd0e174587b12f66d2: 00e9498b453447a5afe527bd0e174587b12f66d2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11258/index.html
[-- Attachment #2: Type: text/html, Size: 28733 bytes --]
^ permalink raw reply [flat|nested] 27+ messages in thread
* ✗ Fi.CI.IGT: failure for IGT KMS Test cleanup (rev3)
2024-06-11 4:53 [PATCH i-g-t 0/8] IGT KMS Test cleanup Bhanuprakash Modem
` (14 preceding siblings ...)
2024-06-14 23:06 ` ✓ CI.xeFULL: " Patchwork
@ 2024-06-16 21:11 ` Patchwork
15 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2024-06-16 21:11 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100247 bytes --]
== Series Details ==
Series: IGT KMS Test cleanup (rev3)
URL : https://patchwork.freedesktop.org/series/134685/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7889_full -> IGTPW_11258_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11258_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11258_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_11258/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11258_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
New tests
---------
New tests have been introduced between IGT_7889_full and IGTPW_11258_full:
### New IGT tests (62) ###
* igt@kms_properties@connector-properties-atomic@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [8.56] s
* igt@kms_properties@connector-properties-atomic@pipe-a-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.56, 1.07] s
* igt@kms_properties@connector-properties-atomic@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.79] s
* igt@kms_properties@connector-properties-atomic@pipe-none-dp-1:
- Statuses : 5 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-dp-2:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-dp-3:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-dp-4:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-2:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-atomic@pipe-none-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_properties@connector-properties-legacy@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [8.58] s
* igt@kms_properties@connector-properties-legacy@pipe-a-hdmi-a-1:
- Statuses : 4 pass(s)
- Exec time: [0.52, 1.05] s
* igt@kms_properties@connector-properties-legacy@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.67] s
* igt@kms_properties@connector-properties-legacy@pipe-none-dp-1:
- Statuses : 6 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-dp-2:
- Statuses : 4 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-dp-3:
- Statuses : 4 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-dp-4:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-hdmi-a-2:
- Statuses : 4 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-hdmi-a-3:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@kms_properties@connector-properties-legacy@pipe-none-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_properties@crtc-properties-atomic@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
* igt@kms_properties@crtc-properties-atomic@pipe-a-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.16, 0.25] s
* igt@kms_properties@crtc-properties-atomic@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.31] s
* igt@kms_properties@crtc-properties-atomic@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.25] s
* igt@kms_properties@crtc-properties-atomic@pipe-b-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.18, 0.27] s
* igt@kms_properties@crtc-properties-atomic@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.28] s
* igt@kms_properties@crtc-properties-atomic@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.21] s
* igt@kms_properties@crtc-properties-atomic@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.16] s
* igt@kms_properties@crtc-properties-atomic@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.27] s
* igt@kms_properties@crtc-properties-atomic@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.22] s
* igt@kms_properties@crtc-properties-atomic@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.16] s
* igt@kms_properties@crtc-properties-atomic@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_properties@crtc-properties-legacy@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.46] s
* igt@kms_properties@crtc-properties-legacy@pipe-a-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.23, 0.38] s
* igt@kms_properties@crtc-properties-legacy@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.26] s
* igt@kms_properties@crtc-properties-legacy@pipe-b-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.17, 0.31] s
* igt@kms_properties@crtc-properties-legacy@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.21] s
* igt@kms_properties@crtc-properties-legacy@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.17] s
* igt@kms_properties@crtc-properties-legacy@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.22] s
* igt@kms_properties@crtc-properties-legacy@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.16] s
* igt@kms_properties@plane-properties-atomic@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.56] s
* igt@kms_properties@plane-properties-atomic@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.30, 0.49] s
* igt@kms_properties@plane-properties-atomic@pipe-a-hdmi-a-3:
- Statuses : 2 pass(s)
- Exec time: [0.45, 0.46] s
* igt@kms_properties@plane-properties-atomic@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.35] s
* igt@kms_properties@plane-properties-atomic@pipe-b-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.39] s
* igt@kms_properties@plane-properties-atomic@pipe-b-hdmi-a-3:
- Statuses : 2 pass(s)
- Exec time: [0.45] s
* igt@kms_properties@plane-properties-atomic@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.33] s
* igt@kms_properties@plane-properties-atomic@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.28] s
* igt@kms_properties@plane-properties-atomic@pipe-c-hdmi-a-3:
- Statuses : 2 pass(s)
- Exec time: [0.40, 0.45] s
* igt@kms_properties@plane-properties-atomic@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.35] s
* igt@kms_properties@plane-properties-atomic@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_properties@plane-properties-atomic@pipe-d-hdmi-a-3:
- Statuses : 2 pass(s)
- Exec time: [0.42, 0.44] s
* igt@kms_properties@plane-properties-legacy@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.56] s
* igt@kms_properties@plane-properties-legacy@pipe-a-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.27, 0.51] s
* igt@kms_properties@plane-properties-legacy@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.41] s
* igt@kms_properties@plane-properties-legacy@pipe-b-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.27, 0.42] s
* igt@kms_properties@plane-properties-legacy@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.38] s
* igt@kms_properties@plane-properties-legacy@pipe-c-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.42] s
* igt@kms_properties@plane-properties-legacy@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.33] s
* igt@kms_properties@plane-properties-legacy@pipe-d-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.28, 0.44] s
Known issues
------------
Here are the changes found in IGTPW_11258_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][4] ([i915#10380])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@api_intel_bb@render-ccs.html
* igt@drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414]) +5 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-7/igt@drm_fdinfo@busy-check-all@ccs0.html
* igt@drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +11 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-16/igt@drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@drm_fdinfo@busy@rcs0:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +16 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-2/igt@drm_fdinfo@busy@rcs0.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#3281]) +11 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-3/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-2/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][11] ([i915#7297])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#7697])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-2/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#6335])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][14] -> [FAIL][15] ([i915#6268])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8555]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#5882]) +6 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_ctx_sseu@invalid-args:
- shard-tglu: NOTRUN -> [SKIP][19] ([i915#280])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-8/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#280])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-6/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#280]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-5/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-16/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][23] -> [FAIL][24] ([i915#5784])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-dg1-17/igt@gem_eio@reset-stress.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-18/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: NOTRUN -> [FAIL][25] ([i915#5784])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-17/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4812])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-3/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#4771])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#4036])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-1/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#6334])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-2/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][31] ([i915#10386]) +3 other tests fail
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fair@basic-none:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-15/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: NOTRUN -> [FAIL][33] ([i915#2842]) +6 other tests fail
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-pace:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4473] / [i915#4771])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-3/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][35] -> [FAIL][36] ([i915#2842])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-tglu: NOTRUN -> [FAIL][37] ([i915#2842]) +4 other tests fail
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-5/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-6/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fence@concurrent:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4812])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-6/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +6 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-10/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +12 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-16/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#3281]) +24 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-10/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) +6 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#7276])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@gem_exec_schedule@semaphore-power.html
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4812]) +4 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-16/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-rkl: NOTRUN -> [ABORT][47] ([i915#7975] / [i915#8213])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4860]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-y.html
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-8/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#4613] / [i915#7582])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@gem_lmem_evict@dontneed-evict-race.html
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613] / [i915#7582])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-6/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@basic@lmem0:
- shard-dg2: [PASS][52] -> [FAIL][53] ([i915#10378])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-dg2-2/igt@gem_lmem_swapping@basic@lmem0.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-2/igt@gem_lmem_swapping@basic@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg2: NOTRUN -> [FAIL][54] ([i915#10378]) +1 other test fail
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-tglu: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-10/igt@gem_lmem_swapping@parallel-multi.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-6/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4565])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-18/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#8289])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@gem_media_fill@media-fill.html
* igt@gem_mmap@bad-offset:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4083]) +5 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-15/igt@gem_mmap@bad-offset.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4077]) +12 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-17/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
* igt@gem_mmap_gtt@fault-concurrent-y:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4077]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-8/igt@gem_mmap_gtt@fault-concurrent-y.html
* igt@gem_mmap_wc@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4083]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-3/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4083]) +7 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-10/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3282]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-5/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#3282]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_pread@bench:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +5 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-4/igt@gem_pread@bench.html
* igt@gem_pwrite@basic-self:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-13/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@create-regular-buffer:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4270]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-13/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@create-regular-context-2:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4270]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-8/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +7 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#4270])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-10/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#5190] / [i915#8428]) +7 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8428]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-8/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4079]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4079])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4079])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-18/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4885])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][79] ([i915#5889])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-6/igt@gem_spin_batch@spin-all-new.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4077]) +17 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#3297]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-4/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#3323])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-8/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#4880]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3297]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-1/igt@gem_userptr_blits@unsync-overlap.html
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#3297])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-10/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-16/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen9_exec_parse@basic-rejected:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-3/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-10/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#2527]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-3/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-chained:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#2527]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-18/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#2856]) +5 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@load:
- shard-glk: NOTRUN -> [SKIP][94] ([i915#6227])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-glk8/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [PASS][95] -> [ABORT][96] ([i915#9820])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#6590]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-3/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: NOTRUN -> [FAIL][98] ([i915#3591])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#6621])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@i915_pm_rps@min-max-config-loaded.html
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#6621])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-4/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#8925]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@i915_pm_rps@thresholds-idle@gt0.html
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#8925])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-17/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#8437])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-5/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#7984])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-5/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#6245])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-3/igt@i915_query@hwconfig_table.html
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#6245])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-4/igt@i915_query@hwconfig_table.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][107] ([i915#7443])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-5/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#4212]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-3/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#4215])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4212]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#3826])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#8709]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#8709]) +7 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#8709]) +7 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#8709]) +11 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5286]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-15/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][118] ([i915#5286]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#5286]) +6 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-3/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#3638]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#3638]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-17/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5190]) +19 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538]) +4 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_joiner@basic:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#10656]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@kms_big_joiner@basic.html
* igt@kms_big_joiner@basic-force-joiner:
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#10656])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-5/igt@kms_big_joiner@basic-force-joiner.html
* igt@kms_big_joiner@invalid-modeset-force-joiner:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#10656])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-2/igt@kms_big_joiner@invalid-modeset-force-joiner.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][127] +105 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-glk1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#6095]) +107 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#10307] / [i915#6095]) +173 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#6095]) +11 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#10278]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#10278])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#10278]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#10278])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#6095]) +39 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-5/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#10278])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#6095]) +81 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#7213]) +4 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#7828]) +16 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-10/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg1: NOTRUN -> [SKIP][141] +51 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-13/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][142] +9 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-4/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#7828]) +4 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#7828]) +5 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#7828]) +8 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#7828]) +6 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-16/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_color@deep-color:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#3555]) +8 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][148] ([i915#7173])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#3299])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#6944] / [i915#9424])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-7/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#9424])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@kms_content_protection@mei-interface.html
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#9424]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-15/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#7118])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#7118] / [i915#9424]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-4/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#7116] / [i915#9424]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-17/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#3359])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#8814]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#3359]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#3359])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#9809]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#5354]) +63 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#4103])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#4103] / [i915#4213]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-dg2: [PASS][164] -> [DMESG-WARN][165] ([i915#10166])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-dg2-5/igt@kms_cursor_legacy@torture-move@pipe-a.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#3804])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#3804])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#1257])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-14/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#8812]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3840])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-6/igt@kms_dsc@dsc-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-5/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#3840])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-16/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#3469])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-15/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#2065] / [i915#4854])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-3/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#1839])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-6/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#1839])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-5/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#658])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-13/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#3637] / [i915#3966])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-8/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3637]) +3 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-2/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][181] +33 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-4/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#3637]) +5 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][183] +42 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#9934]) +8 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-17/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-vga1:
- shard-snb: [PASS][185] -> [FAIL][186] ([i915#2122])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-snb2/igt@kms_flip@flip-vs-blocking-wf-vblank@a-vga1.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-snb7/igt@kms_flip@flip-vs-blocking-wf-vblank@a-vga1.html
* igt@kms_flip@flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#8381])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#2587] / [i915#2672]) +5 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#2672]) +6 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#2672])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#2672] / [i915#3555]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#2587] / [i915#2672])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#2672]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8810])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#8708]) +21 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#5439])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#10055])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#10070])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#3458]) +30 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#3023]) +25 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#1825]) +18 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#1825]) +38 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#8708]) +30 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#8708]) +3 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#3458]) +12 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][207] +57 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8228]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@kms_hdr@invalid-hdr.html
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8228])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-swap:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8228]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-15/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#8228]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-6/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#6301]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#8821])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#3555]) +4 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#3555]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-6/igt@kms_plane_multiple@tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8806])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-2/igt@kms_plane_multiple@tiling-yf.html
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8806])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#6953] / [i915#9423])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][220] ([i915#8292])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][221] ([i915#8292])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][222] ([i915#8292])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-16/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#9423]) +3 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#5176]) +3 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#9423]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#5176] / [i915#9423]) +3 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#9423]) +15 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#5235]) +7 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#5235] / [i915#9423]) +11 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-dp-4.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#5235]) +3 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#5235]) +2 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#5235])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#5354])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-17/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#9685]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#9685])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#5978])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-10/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#9685]) +2 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@kms_pm_dc@dc6-psr.html
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#9685])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-13/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#3828])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-2/igt@kms_pm_dc@deep-pkgc.html
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#3828])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-7/igt@kms_pm_dc@deep-pkgc.html
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#3828])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-8/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#8430])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-5/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [PASS][244] -> [SKIP][245] ([i915#9519]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#9519])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#9519]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#9519]) +2 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#6524])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-13/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#6524] / [i915#6805]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#9683])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-18/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#9683]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#9683])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-8/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#1072] / [i915#9673] / [i915#9732]) +6 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr2-cursor-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#9732]) +12 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-3/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html
* igt@kms_psr@pr-sprite-blt:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#9688]) +4 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-7/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@pr-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#1072] / [i915#9732]) +22 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-5/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#1072] / [i915#9732]) +25 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-17/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#1072] / [i915#9732]) +30 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-1/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#5190]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#4235] / [i915#5190])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#5289])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][263] ([i915#5289]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#5289])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#4235]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#3555]) +2 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-16/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][267] ([IGT#2])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#8623])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-snb: [PASS][269] -> [FAIL][270] ([i915#9196])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
- shard-tglu: [PASS][271] -> [FAIL][272] ([i915#9196])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
- shard-rkl: [PASS][273] -> [FAIL][274] ([i915#9196])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-rkl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_vrr@max-min:
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#9906]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-13/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#9906]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-tglu: NOTRUN -> [SKIP][277] ([i915#9906])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-8/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#9906]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#2437] / [i915#9412])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#2437])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#2437] / [i915#9412]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#2437])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#7387])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@perf@global-sseu-config-invalid.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#2434])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@perf@mi-rpc.html
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#2434])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-18/igt@perf@mi-rpc.html
* igt@perf_pmu@cpu-hotplug:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#8850])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@perf_pmu@cpu-hotplug.html
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#8850])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-14/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@frequency@gt0:
- shard-dg1: NOTRUN -> [FAIL][288] ([i915#6806])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][289] ([i915#10537] / [i915#5793])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-2/igt@perf_pmu@module-unload.html
* igt@perf_pmu@most-busy-check-all@rcs0:
- shard-rkl: [PASS][290] -> [FAIL][291] ([i915#4349])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-rkl-4/igt@perf_pmu@most-busy-check-all@rcs0.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-1/igt@perf_pmu@most-busy-check-all@rcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#8516])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-16/igt@perf_pmu@rc6-all-gts.html
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#8516])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#8516])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][295] ([i915#9351])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][296] ([i915#3708]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-18/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#3708] / [i915#4077])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#3291] / [i915#3708]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-2/igt@prime_vgem@basic-fence-read.html
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#3291] / [i915#3708])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-4/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg1: NOTRUN -> [SKIP][300] ([i915#3708] / [i915#4077]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-15/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#3708])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-1/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#3708])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#9917])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#9917]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-16/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-dg1: NOTRUN -> [FAIL][305] ([i915#9779])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-16/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#4818])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_ctx_persistence@smoketest:
- shard-rkl: [FAIL][307] ([i915#10251]) -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-rkl-3/igt@gem_ctx_persistence@smoketest.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-4/igt@gem_ctx_persistence@smoketest.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [FAIL][309] ([i915#2842]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_lmem_swapping@heavy-multi@lmem0:
- shard-dg2: [FAIL][311] ([i915#10378]) -> [PASS][312]
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-dg2-5/igt@gem_lmem_swapping@heavy-multi@lmem0.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-5/igt@gem_lmem_swapping@heavy-multi@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [ABORT][313] ([i915#9820]) -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][315] ([i915#10976] / [i915#11231]) -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [ABORT][317] ([i915#9820]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [FAIL][319] ([i915#10031] / [i915#11279]) -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-2/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: [DMESG-WARN][321] ([i915#1982] / [i915#4391] / [i915#4423]) -> [PASS][322] +1 other test pass
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-dg1-13/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-17/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][323] ([i915#2346]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg2: [FAIL][325] ([i915#6880]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-snb: [SKIP][327] -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][329] ([i915#9295]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][331] ([i915#9519]) -> [PASS][332] +1 other test pass
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][333] ([i915#9519]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-snb: [FAIL][335] ([i915#9196]) -> [PASS][336]
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [FAIL][337] ([i915#9196]) -> [PASS][338]
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@kms_vblank@query-busy-hang@pipe-d-hdmi-a-4:
- shard-dg1: [INCOMPLETE][339] -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-dg1-18/igt@kms_vblank@query-busy-hang@pipe-d-hdmi-a-4.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-17/igt@kms_vblank@query-busy-hang@pipe-d-hdmi-a-4.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [INCOMPLETE][341] ([i915#9364]) -> [ABORT][342] ([i915#9846])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html
* igt@kms_big_joiner@basic-force-joiner:
- shard-dg1: [SKIP][343] ([i915#10656] / [i915#4423]) -> [SKIP][344] ([i915#10656])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-dg1-13/igt@kms_big_joiner@basic-force-joiner.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-18/igt@kms_big_joiner@basic-force-joiner.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: [SKIP][345] ([i915#10433] / [i915#3458]) -> [SKIP][346] ([i915#3458]) +3 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_psr@fbc-psr2-cursor-render:
- shard-dg2: [SKIP][347] ([i915#1072] / [i915#9732]) -> [SKIP][348] ([i915#1072] / [i915#9673] / [i915#9732]) +7 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-dg2-4/igt@kms_psr@fbc-psr2-cursor-render.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg2-11/igt@kms_psr@fbc-psr2-cursor-render.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-dg1: [SKIP][349] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][350] ([i915#1072] / [i915#9732])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7889/shard-dg1-13/igt@kms_psr@psr-cursor-plane-onoff.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/shard-dg1-17/igt@kms_psr@psr-cursor-plane-onoff.html
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[i915#10031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10031
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10070
[i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166
[i915#10251]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10251
[i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10380]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10380
[i915#10386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10386
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10537
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10976]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10976
[i915#11231]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11231
[i915#11279]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11279
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[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#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[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#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[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#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[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#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473
[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#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
[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#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5793]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5793
[i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[i915#5889]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5889
[i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6268]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#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#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[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#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437
[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/kern
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11258/index.html
[-- Attachment #2: Type: text/html, Size: 122143 bytes --]
^ permalink raw reply [flat|nested] 27+ messages in thread
end of thread, other threads:[~2024-06-16 21:11 UTC | newest]
Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-11 4:53 [PATCH i-g-t 0/8] IGT KMS Test cleanup Bhanuprakash Modem
2024-06-11 4:53 ` [PATCH i-g-t 1/8] tests/intel/kms_fence_pin_leak: " Bhanuprakash Modem
2024-06-14 5:28 ` B, Jeevan
2024-06-11 4:53 ` [PATCH i-g-t 2/8] tests/intel/kms_pipe_b_c_ivb: " Bhanuprakash Modem
2024-06-12 11:29 ` B, Jeevan
2024-06-11 4:53 ` [PATCH i-g-t 3/8] tests/intel/kms_pwrite_crc: " Bhanuprakash Modem
2024-06-12 11:30 ` B, Jeevan
2024-06-14 8:46 ` B, Jeevan
2024-06-11 4:53 ` [PATCH i-g-t 4/8] tests/kms_hdmi_inject: " Bhanuprakash Modem
2024-06-12 11:32 ` B, Jeevan
2024-06-11 4:53 ` [PATCH i-g-t 5/8] tests/kms_tiled_display: " Bhanuprakash Modem
2024-06-12 12:21 ` Kamil Konieczny
2024-06-14 8:09 ` [i-g-t V2 " Bhanuprakash Modem
2024-06-11 4:53 ` [PATCH i-g-t 6/8] tests/kms_tv_load_detect: " Bhanuprakash Modem
2024-06-12 11:34 ` B, Jeevan
2024-06-11 4:53 ` [PATCH i-g-t 7/8] tests/kms_universal_plane: " Bhanuprakash Modem
2024-06-12 11:35 ` B, Jeevan
2024-06-11 4:53 ` [PATCH i-g-t 8/8] tests/kms_properties: Create dynamic subtests Bhanuprakash Modem
2024-06-12 11:47 ` B, Jeevan
2024-06-11 7:14 ` ✓ Fi.CI.BAT: success for IGT KMS Test cleanup (rev2) Patchwork
2024-06-11 7:19 ` ✗ CI.xeBAT: failure " Patchwork
2024-06-11 9:35 ` ✗ CI.xeFULL: " Patchwork
2024-06-11 11:06 ` ✗ Fi.CI.IGT: " Patchwork
2024-06-14 13:18 ` ✓ CI.xeBAT: success for IGT KMS Test cleanup (rev3) Patchwork
2024-06-14 13:27 ` ✓ Fi.CI.BAT: " Patchwork
2024-06-14 23:06 ` ✓ CI.xeFULL: " Patchwork
2024-06-16 21:11 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox