* [igt-dev] [PATCH v1 0/3] Terminate lease fd before subtests execution
@ 2023-09-22 5:16 Mohammed Thasleem
2023-09-22 5:16 ` [igt-dev] [PATCH v1 1/3] tests/kms_lease: " Mohammed Thasleem
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Mohammed Thasleem @ 2023-09-22 5:16 UTC (permalink / raw)
To: igt-dev
Terminate the lease fd when any assert happen with out termination
of lease fd and on any drmModeSetCrtc or drmModeGetCrtc exit.
Terminate lease fd on every display dependent subtests execution.
Mohammed Thasleem (3):
tests/kms_lease: Terminate lease fd before subtests execution
tests/kms_lease: Removed lease_t from all sub-tests
tests/kms_lease: Add wrapper to create lease
tests/kms_lease.c | 261 +++++++++++++++++++++++-----------------------
1 file changed, 130 insertions(+), 131 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [igt-dev] [PATCH v1 1/3] tests/kms_lease: Terminate lease fd before subtests execution 2023-09-22 5:16 [igt-dev] [PATCH v1 0/3] Terminate lease fd before subtests execution Mohammed Thasleem @ 2023-09-22 5:16 ` Mohammed Thasleem 2023-09-22 5:17 ` [igt-dev] [PATCH v1 2/3] tests/kms_lease: Removed lease_t from all sub-tests Mohammed Thasleem ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Mohammed Thasleem @ 2023-09-22 5:16 UTC (permalink / raw) To: igt-dev Failures happen at drmModeSetCursor and prepare_crtc_master or prepare_crtc_lease which exit tests without termination of lease fd which resulting in resource busy for sub-sequence execution, when new lessor request for lease. Terminate the lease fd when any assert happen with out termination of lease fd and on any drmModeSetCrtc or drmModeGetCrtc exit. Terminate lease fd on every display dependent subtests execution. Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> --- tests/kms_lease.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/kms_lease.c b/tests/kms_lease.c index 9ada6d5ea..dc6124ede 100644 --- a/tests/kms_lease.c +++ b/tests/kms_lease.c @@ -216,6 +216,7 @@ typedef struct { } lease_t; typedef struct { + int lease_fd; lease_t master; enum pipe pipe; uint32_t crtc_id; @@ -335,6 +336,7 @@ static int make_lease(data_t *data, lease_t *lease) object_ids[mcl.object_count++] = data->plane_id; ret = create_lease(data->master.fd, &mcl); + data->lease_fd = mcl.fd; if (ret) return ret; @@ -434,6 +436,7 @@ static void page_flip_implicit_plane(data_t *data) drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 0); do_or_die(create_lease(data->master.fd, &mcl)); + data->lease_fd = mcl.fd; drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1); /* Set a mode on the leased output */ @@ -503,6 +506,7 @@ static void setcrtc_implicit_plane(data_t *data) drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 0); do_or_die(create_lease(data->master.fd, &mcl)); + data->lease_fd = mcl.fd; drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1); /* @@ -554,6 +558,7 @@ static void cursor_implicit_plane(data_t *data) drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 0); do_or_die(create_lease(data->master.fd, &mcl)); + data->lease_fd = mcl.fd; drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1); /* Set a mode on the leased output */ @@ -567,6 +572,7 @@ static void cursor_implicit_plane(data_t *data) /* primary plane is never the cursor */ object_ids[mcl.object_count++] = data->plane_id; do_or_die(create_lease(data->master.fd, &mcl)); + data->lease_fd = mcl.fd; igt_assert_eq(drmModeSetCursor(mcl.fd, data->crtc_id, 0, 0, 0), -EACCES); @@ -629,6 +635,7 @@ static void atomic_implicit_crtc(data_t *data) igt_assert(crtc_id_prop); do_or_die(create_lease(data->master.fd, &mcl)); + data->lease_fd = mcl.fd; do_or_die(drmSetClientCap(mcl.fd, DRM_CLIENT_CAP_ATOMIC, 1)); /* check CRTC_ID property on the plane */ @@ -1397,6 +1404,8 @@ igt_main igt_pipe_get_plane_type(&data.master.display.pipes[data.pipe], DRM_PLANE_TYPE_PRIMARY)->drm_plane->plane_id; f->func(&data); + if (data.lease_fd != 0) + close(data.lease_fd); } } } -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH v1 2/3] tests/kms_lease: Removed lease_t from all sub-tests 2023-09-22 5:16 [igt-dev] [PATCH v1 0/3] Terminate lease fd before subtests execution Mohammed Thasleem 2023-09-22 5:16 ` [igt-dev] [PATCH v1 1/3] tests/kms_lease: " Mohammed Thasleem @ 2023-09-22 5:17 ` Mohammed Thasleem 2023-09-22 5:17 ` [igt-dev] [PATCH v1 3/3] tests/kms_lease: Add wrapper to create lease Mohammed Thasleem ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Mohammed Thasleem @ 2023-09-22 5:17 UTC (permalink / raw) To: igt-dev Removed lease_t from all sub-tests and move it to data_t and send data struct instead lease struct. Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> --- tests/kms_lease.c | 126 +++++++++++++++++++++------------------------- 1 file changed, 58 insertions(+), 68 deletions(-) diff --git a/tests/kms_lease.c b/tests/kms_lease.c index dc6124ede..cbf225ff2 100644 --- a/tests/kms_lease.c +++ b/tests/kms_lease.c @@ -217,6 +217,7 @@ typedef struct { typedef struct { int lease_fd; + lease_t lease; lease_t master; enum pipe pipe; uint32_t crtc_id; @@ -232,9 +233,10 @@ static igt_output_t *connector_id_to_output(igt_display_t *display, uint32_t con return igt_output_from_connector(display, &connector); } -static int prepare_crtc(lease_t *lease, data_t *data) +static int prepare_crtc(data_t *data, bool is_master) { drmModeModeInfo *mode; + lease_t *lease = is_master ? &data->master : &data->lease; igt_display_t *display = &lease->display; igt_output_t *output = connector_id_to_output(display, data->connector_id); enum pipe pipe = display->pipes[data->pipe].pipe; @@ -254,7 +256,6 @@ static int prepare_crtc(lease_t *lease, data_t *data) DRM_FORMAT_MOD_LINEAR, 0.0, 0.0, 0.0, &lease->primary_fb); - primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); igt_plane_set_fb(primary, &lease->primary_fb); @@ -320,7 +321,7 @@ static int get_lease(int fd, struct drm_mode_get_lease *mgl) return err; } -static int make_lease(data_t *data, lease_t *lease) +static int make_lease(data_t *data) { uint32_t object_ids[3]; struct drm_mode_create_lease mcl; @@ -341,8 +342,7 @@ static int make_lease(data_t *data, lease_t *lease) if (ret) return ret; - lease->fd = mcl.fd; - lease->lessee_id = mcl.lessee_id; + data->lease.lessee_id = mcl.lessee_id; return 0; } @@ -377,24 +377,23 @@ static void simple_lease(data_t *data) { enum pipe pipe = data->pipe; - lease_t lease; - /* Create a valid lease */ - igt_assert_eq(make_lease(data, &lease), 0); + igt_assert_eq(make_lease(data), 0); - igt_display_require(&lease.display, lease.fd); + igt_display_require(&data->lease.display, data->lease.fd); /* Set a mode on the leased output */ - igt_assert_eq(0, prepare_crtc(&lease, data)); + igt_assert_eq(0, prepare_crtc(data, false)); /* Paint something attractive */ - paint_fb(lease.fd, &lease.primary_fb, "simple_lease", - lease.mode->name, igt_output_name(lease.output), kmstest_pipe_name(pipe)); + paint_fb(data->lease.fd, &data->lease.primary_fb, "simple_lease", + data->lease.mode->name, igt_output_name(data->lease.output), + kmstest_pipe_name(pipe)); igt_debug_wait_for_keypress("lease"); - cleanup_crtc(&lease, - connector_id_to_output(&lease.display, data->connector_id)); + cleanup_crtc(&data->lease, + connector_id_to_output(&data->lease.display, data->connector_id)); - terminate_lease(&lease); + terminate_lease(&data->lease); } static void empty_lease(data_t *data) @@ -440,7 +439,7 @@ static void page_flip_implicit_plane(data_t *data) drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1); /* Set a mode on the leased output */ - igt_assert_eq(0, prepare_crtc(&data->master, data)); + igt_assert_eq(0, prepare_crtc(data, true)); /* sanity check */ do_or_die(drmModePageFlip(data->master.fd, data->crtc_id, @@ -518,7 +517,7 @@ static void setcrtc_implicit_plane(data_t *data) } /* Set a mode on the leased output */ - igt_assert_eq(0, prepare_crtc(&data->master, data)); + igt_assert_eq(0, prepare_crtc(data, true)); /* sanity check */ ret = drmModeSetCrtc(data->master.fd, data->crtc_id, -1, @@ -531,6 +530,7 @@ static void setcrtc_implicit_plane(data_t *data) object_ids[mcl.object_count++] = wrong_plane_id; do_or_die(create_lease(data->master.fd, &mcl)); + data->lease.fd = mcl.fd; igt_assert_eq(drmModeSetCrtc(mcl.fd, data->crtc_id, -1, 0, 0, object_ids, 1, mode), @@ -562,7 +562,7 @@ static void cursor_implicit_plane(data_t *data) drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1); /* Set a mode on the leased output */ - igt_assert_eq(0, prepare_crtc(&data->master, data)); + igt_assert_eq(0, prepare_crtc(data, true)); /* sanity check */ do_or_die(drmModeSetCursor(data->master.fd, data->crtc_id, 0, 0, 0)); @@ -580,7 +580,7 @@ static void cursor_implicit_plane(data_t *data) cleanup_crtc(&data->master, connector_id_to_output(&data->master.display, data->connector_id)); -} + } static void atomic_implicit_crtc(data_t *data) { @@ -674,19 +674,18 @@ static void atomic_implicit_crtc(data_t *data) /* Test listing lessees */ static void lessee_list(data_t *data) { - lease_t lease; struct drm_mode_list_lessees mll; uint32_t lessees[1]; mll.pad = 0; /* Create a valid lease */ - igt_assert_eq(make_lease(data, &lease), 0); + igt_assert_eq(make_lease(data), 0); /* check for nested leases */ mll.count_lessees = 0; mll.lessees_ptr = 0; - igt_assert_eq(list_lessees(lease.fd, &mll), 0); + igt_assert_eq(list_lessees(data->lease.fd, &mll), 0); igt_assert_eq(mll.count_lessees, 0); /* Get the number of lessees */ @@ -708,14 +707,14 @@ static void lessee_list(data_t *data) igt_assert_eq(mll.count_lessees, 1); /* Make sure the listed lease is the same as the one we created */ - igt_assert_eq(lessees[0], lease.lessee_id); + igt_assert_eq(lessees[0], data->lease.lessee_id); /* invalid pad */ mll.pad = -1; igt_assert_eq(list_lessees(data->master.fd, &mll), -EINVAL); mll.pad = 0; - terminate_lease(&lease); + terminate_lease(&data->lease); /* Make sure the lease is gone */ igt_assert_eq(list_lessees(data->master.fd, &mll), 0); @@ -725,7 +724,6 @@ static void lessee_list(data_t *data) /* Test getting the contents of a lease */ static void lease_get(data_t *data) { - lease_t lease; struct drm_mode_get_lease mgl; int num_leased_obj = 3; uint32_t objects[num_leased_obj]; @@ -734,12 +732,12 @@ static void lease_get(data_t *data) mgl.pad = 0; /* Create a valid lease */ - igt_assert_eq(make_lease(data, &lease), 0); + igt_assert_eq(make_lease(data), 0); /* Get the number of objects */ mgl.count_objects = 0; mgl.objects_ptr = 0; - igt_assert_eq(get_lease(lease.fd, &mgl), 0); + igt_assert_eq(get_lease(data->lease.fd, &mgl), 0); /* Make sure it's 2 */ igt_assert_eq(mgl.count_objects, num_leased_obj); @@ -747,7 +745,7 @@ static void lease_get(data_t *data) /* Get the objects */ mgl.objects_ptr = (uint64_t) (uintptr_t) objects; - igt_assert_eq(get_lease(lease.fd, &mgl), 0); + igt_assert_eq(get_lease(data->lease.fd, &mgl), 0); /* Make sure it's 2 */ igt_assert_eq(mgl.count_objects, num_leased_obj); @@ -773,28 +771,27 @@ static void lease_get(data_t *data) /* invalid pad */ mgl.pad = -1; - igt_assert_eq(get_lease(lease.fd, &mgl), -EINVAL); + igt_assert_eq(get_lease(data->lease.fd, &mgl), -EINVAL); mgl.pad = 0; /* invalid pointer */ mgl.objects_ptr = 0; - igt_assert_eq(get_lease(lease.fd, &mgl), -EFAULT); + igt_assert_eq(get_lease(data->lease.fd, &mgl), -EFAULT); - terminate_lease(&lease); + terminate_lease(&data->lease); } static void lease_unleased_crtc(data_t *data) { - lease_t lease; enum pipe p; uint32_t bad_crtc_id; drmModeCrtc *crtc; int ret; /* Create a valid lease */ - igt_assert_eq(make_lease(data, &lease), 0); + igt_assert_eq(make_lease(data), 0); - igt_display_require(&lease.display, lease.fd); + igt_display_require(&data->lease.display, data->lease.fd); /* Find another CRTC that we don't control */ bad_crtc_id = 0; @@ -810,36 +807,35 @@ static void lease_unleased_crtc(data_t *data) igt_skip_on(bad_crtc_id == 0); /* sanity check */ - ret = drmModeSetCrtc(lease.fd, data->crtc_id, 0, 0, 0, NULL, 0, NULL); + ret = drmModeSetCrtc(data->lease.fd, data->crtc_id, 0, 0, 0, NULL, 0, NULL); igt_assert_eq(ret, 0); - crtc = drmModeGetCrtc(lease.fd, data->crtc_id); + crtc = drmModeGetCrtc(data->lease.fd, data->crtc_id); igt_assert(crtc); drmModeFreeCrtc(crtc); /* Attempt to use the unleased crtc id. We need raw ioctl to bypass the * igt_kms helpers. */ - ret = drmModeSetCrtc(lease.fd, bad_crtc_id, 0, 0, 0, NULL, 0, NULL); + ret = drmModeSetCrtc(data->lease.fd, bad_crtc_id, 0, 0, 0, NULL, 0, NULL); igt_assert_eq(ret, -ENOENT); - crtc = drmModeGetCrtc(lease.fd, bad_crtc_id); + crtc = drmModeGetCrtc(data->lease.fd, bad_crtc_id); igt_assert(!crtc); igt_assert_eq(errno, ENOENT); drmModeFreeCrtc(crtc); - terminate_lease(&lease); + terminate_lease(&data->lease); } static void lease_unleased_connector(data_t *data) { - lease_t lease; int o; uint32_t bad_connector_id; drmModeConnector *c; /* Create a valid lease */ - igt_assert_eq(make_lease(data, &lease), 0); + igt_assert_eq(make_lease(data), 0); - igt_display_require(&lease.display, lease.fd); + igt_display_require(&data->lease.display, data->lease.fd); /* Find another connector that we don't control */ bad_connector_id = 0; @@ -852,72 +848,70 @@ static void lease_unleased_connector(data_t *data) igt_skip_on(bad_connector_id == 0); /* sanity check */ - c = drmModeGetConnector(lease.fd, data->connector_id); + c = drmModeGetConnector(data->lease.fd, data->connector_id); igt_assert(c); /* Attempt to use the unleased connector id. Note that the */ - c = drmModeGetConnector(lease.fd, bad_connector_id); + c = drmModeGetConnector(data->lease.fd, bad_connector_id); igt_assert(!c); igt_assert_eq(errno, ENOENT); - terminate_lease(&lease); + terminate_lease(&data->lease); } /* Test revocation of lease */ static void lease_revoke(data_t *data) { - lease_t lease; struct drm_mode_revoke_lease mrl; int ret; /* Create a valid lease */ - igt_assert_eq(make_lease(data, &lease), 0); + igt_assert_eq(make_lease(data), 0); - igt_display_require(&lease.display, lease.fd); + igt_display_require(&data->lease.display, data->lease.fd); /* try to revoke an invalid lease */ mrl.lessee_id = 0; igt_assert_eq(revoke_lease(data->master.fd, &mrl), -ENOENT); /* try to revoke with the wrong fd */ - mrl.lessee_id = lease.lessee_id; - igt_assert_eq(revoke_lease(lease.fd, &mrl), -EACCES); + mrl.lessee_id = data->lease.lessee_id; + igt_assert_eq(revoke_lease(data->lease.fd, &mrl), -EACCES); /* Revoke the lease using the master fd */ - mrl.lessee_id = lease.lessee_id; + mrl.lessee_id = data->lease.lessee_id; igt_assert_eq(revoke_lease(data->master.fd, &mrl), 0); /* Try to use the leased objects */ - ret = prepare_crtc(&lease, data); + ret = prepare_crtc(data, false); /* Ensure that the expected error is returned */ igt_assert_eq(ret, -ENOENT); - terminate_lease(&lease); + terminate_lease(&data->lease); /* make sure the lease is gone */ - mrl.lessee_id = lease.lessee_id; + mrl.lessee_id = data->lease.lessee_id; igt_assert_eq(revoke_lease(data->master.fd, &mrl), -ENOENT); } /* Test leasing objects more than once */ static void lease_again(data_t *data) { - lease_t lease_a, lease_b; /* Create a valid lease */ - igt_assert_eq(make_lease(data, &lease_a), 0); + igt_assert_eq(make_lease(data), 0); /* Attempt to re-lease the same objects */ - igt_assert_eq(make_lease(data, &lease_b), -EBUSY); + igt_assert_eq(make_lease(data), -EBUSY); - terminate_lease(&lease_a); + terminate_lease(&data->lease); /* Now attempt to lease the same objects */ - igt_assert_eq(make_lease(data, &lease_b), 0); + igt_assert_eq(make_lease(data), 0); - terminate_lease(&lease_b); + terminate_lease(&data->lease); } #define assert_unleased(ret) \ @@ -927,14 +921,13 @@ static void lease_again(data_t *data) /* Test leasing an invalid connector */ static void lease_invalid_connector(data_t *data) { - lease_t lease; uint32_t save_connector_id; int ret; /* Create an invalid lease */ save_connector_id = data->connector_id; data->connector_id = 0xbaadf00d; - ret = make_lease(data, &lease); + ret = make_lease(data); data->connector_id = save_connector_id; assert_unleased(ret); } @@ -942,28 +935,26 @@ static void lease_invalid_connector(data_t *data) /* Test leasing an invalid crtc */ static void lease_invalid_crtc(data_t *data) { - lease_t lease; uint32_t save_crtc_id; int ret; /* Create an invalid lease */ save_crtc_id = data->crtc_id; data->crtc_id = 0xbaadf00d; - ret = make_lease(data, &lease); + ret = make_lease(data); data->crtc_id = save_crtc_id; assert_unleased(ret); } static void lease_invalid_plane(data_t *data) { - lease_t lease; uint32_t save_plane_id; int ret; /* Create an invalid lease */ save_plane_id = data->plane_id; data->plane_id = 0xbaadf00d; - ret = make_lease(data, &lease); + ret = make_lease(data); data->plane_id = save_plane_id; assert_unleased(ret); } @@ -1404,9 +1395,8 @@ igt_main igt_pipe_get_plane_type(&data.master.display.pipes[data.pipe], DRM_PLANE_TYPE_PRIMARY)->drm_plane->plane_id; f->func(&data); - if (data.lease_fd != 0) - close(data.lease_fd); } + terminate_lease(&data.lease); } } } -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH v1 3/3] tests/kms_lease: Add wrapper to create lease 2023-09-22 5:16 [igt-dev] [PATCH v1 0/3] Terminate lease fd before subtests execution Mohammed Thasleem 2023-09-22 5:16 ` [igt-dev] [PATCH v1 1/3] tests/kms_lease: " Mohammed Thasleem 2023-09-22 5:17 ` [igt-dev] [PATCH v1 2/3] tests/kms_lease: Removed lease_t from all sub-tests Mohammed Thasleem @ 2023-09-22 5:17 ` Mohammed Thasleem 2023-09-22 6:37 ` [igt-dev] ✓ Fi.CI.BAT: success for Terminate lease fd before subtests execution Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Mohammed Thasleem @ 2023-09-22 5:17 UTC (permalink / raw) To: igt-dev Add wrapper to create lease and store mcl.fd and add wrapper to all required subtests. Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> --- tests/kms_lease.c | 164 +++++++++++++++++++++++----------------------- 1 file changed, 82 insertions(+), 82 deletions(-) diff --git a/tests/kms_lease.c b/tests/kms_lease.c index cbf225ff2..716363488 100644 --- a/tests/kms_lease.c +++ b/tests/kms_lease.c @@ -216,7 +216,6 @@ typedef struct { } lease_t; typedef struct { - int lease_fd; lease_t lease; lease_t master; enum pipe pipe; @@ -285,7 +284,7 @@ static void cleanup_crtc(lease_t *lease, igt_output_t *output) igt_display_commit(display); } -static int create_lease(int fd, struct drm_mode_create_lease *mcl) +static int _create_lease(int fd, struct drm_mode_create_lease *mcl) { int err = 0; @@ -294,6 +293,17 @@ static int create_lease(int fd, struct drm_mode_create_lease *mcl) return err; } +static int create_lease(data_t *data, struct drm_mode_create_lease *mcl) +{ + int ret; + + ret = _create_lease(data->master.fd, mcl); + + if (!ret) + data->lease.fd = mcl->fd; + return ret; +} + static int revoke_lease(int fd, struct drm_mode_revoke_lease *mrl) { int err = 0; @@ -336,8 +346,7 @@ static int make_lease(data_t *data) /* We use universal planes, must add the primary plane */ object_ids[mcl.object_count++] = data->plane_id; - ret = create_lease(data->master.fd, &mcl); - data->lease_fd = mcl.fd; + ret = create_lease(data, &mcl); if (ret) return ret; @@ -346,9 +355,9 @@ static int make_lease(data_t *data) return 0; } -static void terminate_lease(lease_t *lease) +static void terminate_lease(int lease_fd) { - close(lease->fd); + close(lease_fd); } static int paint_fb(int drm_fd, struct igt_fb *fb, const char *test_name, @@ -393,16 +402,16 @@ static void simple_lease(data_t *data) cleanup_crtc(&data->lease, connector_id_to_output(&data->lease.display, data->connector_id)); - terminate_lease(&data->lease); + terminate_lease(data->lease.fd); } static void empty_lease(data_t *data) { struct drm_mode_create_lease mcl = {0}; - igt_assert_eq(create_lease(data->master.fd, &mcl), 0); + igt_assert_eq(create_lease(data, &mcl), 0); - close(mcl.fd); + close(data->lease.fd); } static void page_flip_implicit_plane(data_t *data) @@ -434,8 +443,7 @@ static void page_flip_implicit_plane(data_t *data) object_ids[mcl.object_count++] = data->crtc_id; drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 0); - do_or_die(create_lease(data->master.fd, &mcl)); - data->lease_fd = mcl.fd; + do_or_die(create_lease(data, &mcl)); drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1); /* Set a mode on the leased output */ @@ -451,22 +459,22 @@ static void page_flip_implicit_plane(data_t *data) igt_wait_for_vblank(data->master.fd, display->pipes[pipe].crtc_offset); - do_or_die(drmModePageFlip(mcl.fd, data->crtc_id, + do_or_die(drmModePageFlip(data->lease.fd, data->crtc_id, data->master.primary_fb.fb_id, 0, NULL)); - close(mcl.fd); + close(data->lease.fd); object_ids[mcl.object_count++] = wrong_plane_id; - do_or_die(create_lease(data->master.fd, &mcl)); + do_or_die(create_lease(data, &mcl)); igt_wait_for_vblank(data->master.fd, display->pipes[pipe].crtc_offset); - igt_assert_eq(drmModePageFlip(mcl.fd, data->crtc_id, + igt_assert_eq(drmModePageFlip(data->lease.fd, data->crtc_id, data->master.primary_fb.fb_id, 0, NULL), -EACCES); - close(mcl.fd); + close(data->lease.fd); cleanup_crtc(&data->master, connector_id_to_output(&data->master.display, data->connector_id)); @@ -504,8 +512,7 @@ static void setcrtc_implicit_plane(data_t *data) object_ids[mcl.object_count++] = data->crtc_id; drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 0); - do_or_die(create_lease(data->master.fd, &mcl)); - data->lease_fd = mcl.fd; + do_or_die(create_lease(data, &mcl)); drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1); /* @@ -513,7 +520,7 @@ static void setcrtc_implicit_plane(data_t *data) * then the client cap for aspect-ratio bits must be set. */ if (mode->flags & DRM_MODE_FLAG_PIC_AR_MASK) { - drmSetClientCap(mcl.fd, DRM_CLIENT_CAP_ASPECT_RATIO, 1); + drmSetClientCap(data->lease.fd, DRM_CLIENT_CAP_ASPECT_RATIO, 1); } /* Set a mode on the leased output */ @@ -522,23 +529,21 @@ static void setcrtc_implicit_plane(data_t *data) /* sanity check */ ret = drmModeSetCrtc(data->master.fd, data->crtc_id, -1, 0, 0, object_ids, 1, mode); - ret_mcl = drmModeSetCrtc(mcl.fd, data->crtc_id, -1, + ret_mcl = drmModeSetCrtc(data->lease.fd, data->crtc_id, -1, 0, 0, object_ids, 1, mode); - close(mcl.fd); + close(data->lease.fd); igt_assert_eq(ret, 0); igt_assert_eq(ret_mcl, 0); object_ids[mcl.object_count++] = wrong_plane_id; - do_or_die(create_lease(data->master.fd, &mcl)); - data->lease.fd = mcl.fd; - - igt_assert_eq(drmModeSetCrtc(mcl.fd, data->crtc_id, -1, + do_or_die(create_lease(data, &mcl)); + igt_assert_eq(drmModeSetCrtc(data->lease.fd, data->crtc_id, -1, 0, 0, object_ids, 1, mode), -EACCES); /* make sure we are allowed to turn the CRTC off */ do_or_die(drmModeSetCrtc(mcl.fd, data->crtc_id, 0, 0, 0, NULL, 0, NULL)); - close(mcl.fd); + close(data->lease.fd); cleanup_crtc(&data->master, connector_id_to_output(&data->master.display, data->connector_id)); @@ -557,8 +562,7 @@ static void cursor_implicit_plane(data_t *data) object_ids[mcl.object_count++] = data->crtc_id; drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 0); - do_or_die(create_lease(data->master.fd, &mcl)); - data->lease_fd = mcl.fd; + do_or_die(create_lease(data, &mcl)); drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1); /* Set a mode on the leased output */ @@ -566,17 +570,16 @@ static void cursor_implicit_plane(data_t *data) /* sanity check */ do_or_die(drmModeSetCursor(data->master.fd, data->crtc_id, 0, 0, 0)); - do_or_die(drmModeSetCursor(mcl.fd, data->crtc_id, 0, 0, 0)); - close(mcl.fd); + do_or_die(drmModeSetCursor(data->lease.fd, data->crtc_id, 0, 0, 0)); + close(data->lease.fd); /* primary plane is never the cursor */ object_ids[mcl.object_count++] = data->plane_id; - do_or_die(create_lease(data->master.fd, &mcl)); - data->lease_fd = mcl.fd; + do_or_die(create_lease(data, &mcl)); - igt_assert_eq(drmModeSetCursor(mcl.fd, data->crtc_id, 0, 0, 0), + igt_assert_eq(drmModeSetCursor(data->lease.fd, data->crtc_id, 0, 0, 0), -EACCES); - close(mcl.fd); + close(data->lease.fd); cleanup_crtc(&data->master, connector_id_to_output(&data->master.display, data->connector_id)); @@ -634,9 +637,8 @@ static void atomic_implicit_crtc(data_t *data) drmModeFreeObjectProperties(props); igt_assert(crtc_id_prop); - do_or_die(create_lease(data->master.fd, &mcl)); - data->lease_fd = mcl.fd; - do_or_die(drmSetClientCap(mcl.fd, DRM_CLIENT_CAP_ATOMIC, 1)); + do_or_die(create_lease(data, &mcl)); + do_or_die(drmSetClientCap(data->lease.fd, DRM_CLIENT_CAP_ATOMIC, 1)); /* check CRTC_ID property on the plane */ req = drmModeAtomicAlloc(); @@ -649,7 +651,7 @@ static void atomic_implicit_crtc(data_t *data) ret = drmModeAtomicCommit(data->master.fd, req, DRM_MODE_ATOMIC_TEST_ONLY, NULL); igt_assert(ret == 0 || ret == -EINVAL); - ret = drmModeAtomicCommit(mcl.fd, req, DRM_MODE_ATOMIC_TEST_ONLY, NULL); + ret = drmModeAtomicCommit(data->lease.fd, req, DRM_MODE_ATOMIC_TEST_ONLY, NULL); igt_assert(ret == -EACCES); drmModeAtomicFree(req); @@ -664,11 +666,11 @@ static void atomic_implicit_crtc(data_t *data) ret = drmModeAtomicCommit(data->master.fd, req, DRM_MODE_ATOMIC_TEST_ONLY, NULL); igt_assert(ret == 0 || ret == -EINVAL); - ret = drmModeAtomicCommit(mcl.fd, req, DRM_MODE_ATOMIC_TEST_ONLY, NULL); + ret = drmModeAtomicCommit(data->lease.fd, req, DRM_MODE_ATOMIC_TEST_ONLY, NULL); igt_assert(ret == -EACCES); drmModeAtomicFree(req); - close(mcl.fd); + close(data->lease.fd); } /* Test listing lessees */ @@ -714,7 +716,7 @@ static void lessee_list(data_t *data) igt_assert_eq(list_lessees(data->master.fd, &mll), -EINVAL); mll.pad = 0; - terminate_lease(&data->lease); + terminate_lease(data->lease.fd); /* Make sure the lease is gone */ igt_assert_eq(list_lessees(data->master.fd, &mll), 0); @@ -778,7 +780,7 @@ static void lease_get(data_t *data) mgl.objects_ptr = 0; igt_assert_eq(get_lease(data->lease.fd, &mgl), -EFAULT); - terminate_lease(&data->lease); + terminate_lease(data->lease.fd); } static void lease_unleased_crtc(data_t *data) @@ -823,7 +825,7 @@ static void lease_unleased_crtc(data_t *data) igt_assert_eq(errno, ENOENT); drmModeFreeCrtc(crtc); - terminate_lease(&data->lease); + terminate_lease(data->lease.fd); } static void lease_unleased_connector(data_t *data) @@ -857,7 +859,7 @@ static void lease_unleased_connector(data_t *data) igt_assert(!c); igt_assert_eq(errno, ENOENT); - terminate_lease(&data->lease); + terminate_lease(data->lease.fd); } /* Test revocation of lease */ @@ -889,7 +891,7 @@ static void lease_revoke(data_t *data) /* Ensure that the expected error is returned */ igt_assert_eq(ret, -ENOENT); - terminate_lease(&data->lease); + terminate_lease(data->lease.fd); /* make sure the lease is gone */ mrl.lessee_id = data->lease.lessee_id; @@ -906,12 +908,12 @@ static void lease_again(data_t *data) /* Attempt to re-lease the same objects */ igt_assert_eq(make_lease(data), -EBUSY); - terminate_lease(&data->lease); + terminate_lease(data->lease.fd); /* Now attempt to lease the same objects */ igt_assert_eq(make_lease(data), 0); - terminate_lease(&data->lease); + terminate_lease(data->lease.fd); } #define assert_unleased(ret) \ @@ -972,76 +974,76 @@ static void invalid_create_leases(data_t *data) /* NULL array pointer */ mcl.object_count = 1; - igt_assert_eq(create_lease(data->master.fd, &mcl), -EFAULT); + igt_assert_eq(create_lease(data, &mcl), -EFAULT); /* nil object */ object_ids[0] = 0; mcl.object_ids = (uint64_t) (uintptr_t) object_ids; mcl.object_count = 1; - igt_assert_eq(create_lease(data->master.fd, &mcl), -ENOENT); + igt_assert_eq(create_lease(data, &mcl), -ENOENT); /* no crtc, non-universal_plane */ drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 0); object_ids[0] = data->master.display.outputs[0].id; - igt_assert_eq(create_lease(data->master.fd, &mcl), -EINVAL); + igt_assert_eq(create_lease(data, &mcl), -EINVAL); /* no connector, non-universal_plane */ object_ids[0] = data->master.display.pipes[0].crtc_id; - igt_assert_eq(create_lease(data->master.fd, &mcl), -EINVAL); + igt_assert_eq(create_lease(data, &mcl), -EINVAL); /* sanity check */ object_ids[0] = data->master.display.pipes[0].crtc_id; object_ids[1] = data->master.display.outputs[0].id; mcl.object_count = 2; - igt_assert_eq(create_lease(data->master.fd, &mcl), 0); - close(mcl.fd); + igt_assert_eq(create_lease(data, &mcl), 0); + close(data->lease.fd); /* no plane, universal planes */ drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1); - igt_assert_eq(create_lease(data->master.fd, &mcl), -EINVAL); + igt_assert_eq(create_lease(data, &mcl), -EINVAL); /* sanity check */ object_ids[2] = igt_pipe_get_plane_type(&data->master.display.pipes[0], DRM_PLANE_TYPE_PRIMARY)->drm_plane->plane_id; mcl.object_count = 3; - igt_assert_eq(create_lease(data->master.fd, &mcl), 0); - close(mcl.fd); + igt_assert_eq(create_lease(data, &mcl), 0); + close(data->lease.fd); /* array overflow, do a small scan around overflow sizes */ for (int i = 1; i <= 4; i++) { mcl.object_count = UINT32_MAX / sizeof(object_ids[0]) + i; - igt_assert_eq(create_lease(data->master.fd, &mcl), -ENOMEM); + igt_assert_eq(create_lease(data, &mcl), -ENOMEM); } /* sanity check */ mcl.object_count = 3; mcl.flags = O_CLOEXEC | O_NONBLOCK; - igt_assert_eq(create_lease(data->master.fd, &mcl), 0); - close(mcl.fd); + igt_assert_eq(create_lease(data, &mcl), 0); + close(data->lease.fd); /* invalid flags */ mcl.flags = -1; - igt_assert_eq(create_lease(data->master.fd, &mcl), -EINVAL); + igt_assert_eq(create_lease(data, &mcl), -EINVAL); /* no subleasing */ mcl.object_count = 3; mcl.flags = 0; - igt_assert_eq(create_lease(data->master.fd, &mcl), 0); - tmp_fd = mcl.fd; - igt_assert_eq(create_lease(tmp_fd, &mcl), -EINVAL); + igt_assert_eq(create_lease(data, &mcl), 0); + tmp_fd = data->lease.fd; + igt_assert_eq(_create_lease(tmp_fd, &mcl), -EINVAL); close(tmp_fd); /* no double-leasing */ - igt_assert_eq(create_lease(data->master.fd, &mcl), 0); - tmp_fd = mcl.fd; - igt_assert_eq(create_lease(data->master.fd, &mcl), -EBUSY); + igt_assert_eq(create_lease(data, &mcl), 0); + tmp_fd = data->lease.fd; + igt_assert_eq(create_lease(data, &mcl), -EBUSY); close(tmp_fd); /* no double leasing */ object_ids[3] = object_ids[2]; mcl.object_count = 4; /* Note: the ENOSPC is from idr double-insertion failing */ - ret = create_lease(data->master.fd, &mcl); + ret = create_lease(data, &mcl); assert_double_id_err(ret); /* no encoder leasing */ @@ -1049,7 +1051,7 @@ static void invalid_create_leases(data_t *data) igt_assert(resources); igt_assert(resources->count_encoders > 0); object_ids[3] = resources->encoders[0]; - igt_assert_eq(create_lease(data->master.fd, &mcl), -EINVAL); + igt_assert_eq(create_lease(data, &mcl), -EINVAL); drmModeFreeResources(resources); } @@ -1135,19 +1137,17 @@ static void possible_crtcs_filtering(data_t *data) mcl.flags = 0; for (i = 0; i < resources->count_crtcs; i++) { - int lease_fd; object_ids[mcl.object_count - 1] = resources->crtcs[i]; - igt_assert_eq(create_lease(master_fd, &mcl), 0); - lease_fd = mcl.fd; + igt_assert_eq(create_lease(data, &mcl), 0); - drmSetClientCap(lease_fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1); + drmSetClientCap(data->lease.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1); - check_crtc_masks(master_fd, lease_fd, 1 << i); + check_crtc_masks(master_fd, data->lease.fd, 1 << i); - close(lease_fd); + close(data->lease.fd); } free(object_ids); @@ -1174,7 +1174,7 @@ static int _create_simple_lease(int master_fd, data_t *data, int expected_ret) mcl.object_count = 3; mcl.flags = 0; - igt_assert_eq(create_lease(master_fd, &mcl), expected_ret); + igt_assert_eq(_create_lease(master_fd, &mcl), expected_ret); return expected_ret == 0 ? mcl.fd : 0; } @@ -1268,13 +1268,13 @@ static void implicit_plane_lease(data_t *data) mcl.flags = 0; /* sanity check */ - igt_assert_eq(create_lease(data->master.fd, &mcl), 0); - close(mcl.fd); + igt_assert_eq(create_lease(data, &mcl), 0); + close(data->lease.fd); drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 0); /* non universal plane automatically adds primary/cursor plane */ mcl.object_count = 2; - igt_assert_eq(create_lease(data->master.fd, &mcl), 0); + igt_assert_eq(create_lease(data, &mcl), 0); mgl.pad = 0; mgl.count_objects = 0; @@ -1283,17 +1283,17 @@ static void implicit_plane_lease(data_t *data) igt_assert_eq(mgl.count_objects, 3 + (cursor_id ? 1 : 0)); - close(mcl.fd); + close(data->lease.fd); /* check that implicit lease doesn't lead to confusion when * explicitly adding primary plane */ mcl.object_count = 3; - ret = create_lease(data->master.fd, &mcl); + ret = create_lease(data, &mcl); assert_double_id_err(ret); /* same for the cursor */ object_ids[2] = cursor_id; - ret = create_lease(data->master.fd, &mcl); + ret = create_lease(data, &mcl); assert_double_id_err(ret); drmSetClientCap(data->master.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1); @@ -1396,7 +1396,7 @@ igt_main DRM_PLANE_TYPE_PRIMARY)->drm_plane->plane_id; f->func(&data); } - terminate_lease(&data.lease); + terminate_lease(data.lease.fd); } } } -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Terminate lease fd before subtests execution 2023-09-22 5:16 [igt-dev] [PATCH v1 0/3] Terminate lease fd before subtests execution Mohammed Thasleem ` (2 preceding siblings ...) 2023-09-22 5:17 ` [igt-dev] [PATCH v1 3/3] tests/kms_lease: Add wrapper to create lease Mohammed Thasleem @ 2023-09-22 6:37 ` Patchwork 2023-09-22 7:10 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-09-23 4:15 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-22 6:37 UTC (permalink / raw) To: Mohammed Thasleem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1560 bytes --] == Series Details == Series: Terminate lease fd before subtests execution URL : https://patchwork.freedesktop.org/series/124089/ State : success == Summary == CI Bug Log - changes from CI_DRM_13667 -> IGTPW_9845 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/index.html Participating hosts (37 -> 36) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9845 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [DMESG-FAIL][1] ([i915#5334]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7496 -> IGTPW_9845 CI-20190529: 20190529 CI_DRM_13667: 5e02013de5896d3099b06de0d2d93c6788111409 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9845: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/index.html IGT_7496: 6a96d3ad178e468b74a58cc10dead2f57bc1558d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/index.html [-- Attachment #2: Type: text/html, Size: 2146 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Terminate lease fd before subtests execution 2023-09-22 5:16 [igt-dev] [PATCH v1 0/3] Terminate lease fd before subtests execution Mohammed Thasleem ` (3 preceding siblings ...) 2023-09-22 6:37 ` [igt-dev] ✓ Fi.CI.BAT: success for Terminate lease fd before subtests execution Patchwork @ 2023-09-22 7:10 ` Patchwork 2023-09-23 4:15 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-22 7:10 UTC (permalink / raw) To: Mohammed Thasleem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2045 bytes --] == Series Details == Series: Terminate lease fd before subtests execution URL : https://patchwork.freedesktop.org/series/124089/ State : success == Summary == CI Bug Log - changes from XEIGT_7496_BAT -> XEIGTPW_9845_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9845_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1: - bat-adlp-7: [FAIL][1] ([Intel XE#480]) -> [PASS][2] +3 other tests pass [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7496/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9845/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html * {igt@xe_create@create-execqueues-leak}: - bat-atsm-2: [FAIL][3] ([Intel XE#524]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7496/bat-atsm-2/igt@xe_create@create-execqueues-leak.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9845/bat-atsm-2/igt@xe_create@create-execqueues-leak.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 Build changes ------------- * IGT: IGT_7496 -> IGTPW_9845 IGTPW_9845: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/index.html IGT_7496: 6a96d3ad178e468b74a58cc10dead2f57bc1558d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-389-7e0d40e7aa56f19a9b3e9bc492003085f9be01c3: 7e0d40e7aa56f19a9b3e9bc492003085f9be01c3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9845/index.html [-- Attachment #2: Type: text/html, Size: 2652 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Terminate lease fd before subtests execution 2023-09-22 5:16 [igt-dev] [PATCH v1 0/3] Terminate lease fd before subtests execution Mohammed Thasleem ` (4 preceding siblings ...) 2023-09-22 7:10 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-09-23 4:15 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-23 4:15 UTC (permalink / raw) To: Mohammed Thasleem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100263 bytes --] == Series Details == Series: Terminate lease fd before subtests execution URL : https://patchwork.freedesktop.org/series/124089/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13667_full -> IGTPW_9845_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9845_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9845_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9845/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_9845_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_flush@basic-wb-pro-default: - shard-mtlp: [PASS][1] -> [DMESG-FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-5/igt@gem_exec_flush@basic-wb-pro-default.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-4/igt@gem_exec_flush@basic-wb-pro-default.html * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-5/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3.html * igt@kms_psr@cursor_mmap_cpu: - shard-mtlp: [PASS][4] -> [DMESG-WARN][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-1/igt@kms_psr@cursor_mmap_cpu.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-7/igt@kms_psr@cursor_mmap_cpu.html * igt@kms_psr@psr2_no_drrs: - shard-mtlp: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-1/igt@kms_psr@psr2_no_drrs.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@kms_psr@psr2_no_drrs.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-rkl: [PASS][8] -> [INCOMPLETE][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html #### Warnings #### * igt@i915_suspend@basic-s3-without-i915: - shard-snb: [DMESG-WARN][10] ([i915#8841]) -> [INCOMPLETE][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-snb1/igt@i915_suspend@basic-s3-without-i915.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-snb6/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: [SKIP][12] ([i915#2672]) -> [TIMEOUT][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html New tests --------- New tests have been introduced between CI_DRM_13667_full and IGTPW_9845_full: ### New IGT tests (16) ### * igt@kms_flip_event_leak@basic@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_event_leak@basic@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_flip_event_leak@basic@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_event_leak@basic@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_event_leak@basic@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_event_leak@basic@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_flip_event_leak@basic@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_event_leak@basic@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_event_leak@basic@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_event_leak@basic@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_flip_event_leak@basic@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_event_leak@basic@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@setcrtc_implicit_plane@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@setcrtc_implicit_plane@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@setcrtc_implicit_plane@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@setcrtc_implicit_plane@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9845_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8411]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-5/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#6230]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-19/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#8411]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#7701]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-3/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#8414]) +12 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@idle@rcs0: - shard-rkl: NOTRUN -> [FAIL][19] ([i915#7742]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-2/igt@drm_fdinfo@idle@rcs0.html * igt@drm_fdinfo@isolation@bcs0: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8414]) +9 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-2/igt@drm_fdinfo@isolation@bcs0.html * igt@gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#3936]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-13/igt@gem_busy@semaphore.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-17/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][23] ([i915#7297]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-10/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#7697]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#6335]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-4/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8555]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-3/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@legacy-engines-cleanup: - shard-snb: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#1099]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-snb5/igt@gem_ctx_persistence@legacy-engines-cleanup.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-tglu: NOTRUN -> [ABORT][30] ([i915#7975] / [i915#8213] / [i915#8398]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-10/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4771]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-3/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4771]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-10/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@bonded-true-hang: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4812]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-1/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_fair@basic-flow: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-18/igt@gem_exec_fair@basic-flow.html * igt@gem_exec_fair@basic-none-solo: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4473]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-rkl: [PASS][36] -> [FAIL][37] ([i915#2842]) +2 other tests fail [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-6/igt@gem_exec_fair@basic-pace@bcs0.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-1/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-2/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4473] / [i915#4771]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-1/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: NOTRUN -> [FAIL][40] ([i915#2842]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-10/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_params@secure-non-root: - shard-mtlp: NOTRUN -> [SKIP][43] ([fdo#112283]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-3/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +12 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-range-active: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-2/igt@gem_exec_reloc@basic-range-active.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +4 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-16/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_exec_reloc@basic-write-wc: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3281]) +9 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-1/igt@gem_exec_reloc@basic-write-wc.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-2/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@reorder-wide: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4812]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-16/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4860]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-1/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4860]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-2/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-14/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613] / [i915#7582]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-3/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4613]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-6/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-random: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-1/igt@gem_lmem_swapping@heavy-random.html - shard-tglu: NOTRUN -> [SKIP][57] ([i915#4613]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-7/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@parallel-multi: - shard-glk: NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#4613]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-glk4/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@smem-oom: - shard-apl: NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#4613]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-apl1/igt@gem_lmem_swapping@smem-oom.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-1/igt@gem_mmap@bad-size.html * igt@gem_mmap@basic: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4083]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-14/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@close-race: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4077]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-15/igt@gem_mmap_gtt@close-race.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4077]) +8 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-6/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4077]) +9 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-10/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@bad-object: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-3/igt@gem_mmap_wc@bad-object.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3282]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-16/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3282]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-7/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-random: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-7/igt@gem_pwrite@basic-random.html * igt@gem_pxp@create-protected-buffer: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4270]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-16/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@gem_pxp@reject-modify-context-protection-off-1.html - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-2/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#4270]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-3/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3282]) +6 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-5/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8428]) +6 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-3/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4079]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-16/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@noreloc-s3: - shard-mtlp: [PASS][76] -> [ABORT][77] ([i915#9262]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-1/igt@gem_softpin@noreloc-s3.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-1/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4079]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#4880]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@mmap-offset-banned@gtt: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3297]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@gem_userptr_blits@mmap-offset-banned@gtt.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-1/igt@gem_userptr_blits@readonly-unsync.html - shard-tglu: NOTRUN -> [SKIP][82] ([i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-2/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@vma-merge: - shard-mtlp: NOTRUN -> [FAIL][83] ([i915#3318]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@gem_userptr_blits@vma-merge.html * igt@gem_workarounds@suspend-resume-context: - shard-dg2: [PASS][84] -> [FAIL][85] ([fdo#103375]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-6/igt@gem_workarounds@suspend-resume-context.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-5/igt@gem_workarounds@suspend-resume-context.html * igt@gen3_render_linear_blits: - shard-dg2: NOTRUN -> [SKIP][86] ([fdo#109289]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-10/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@basic-offset: - shard-rkl: NOTRUN -> [SKIP][87] ([fdo#109289]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-6/igt@gen7_exec_parse@basic-offset.html - shard-tglu: NOTRUN -> [SKIP][88] ([fdo#109289]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-6/igt@gen7_exec_parse@basic-offset.html * igt@gen9_exec_parse@bb-oversize: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-5/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#2527]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-15/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#2856]) +5 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-2/igt@gen9_exec_parse@valid-registers.html * igt@i915_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#7707]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-1/igt@i915_hwmon@hwmon-write.html * igt@i915_module_load@load: - shard-snb: NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#6227]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-snb5/igt@i915_module_load@load.html - shard-glk: NOTRUN -> [SKIP][94] ([fdo#109271] / [i915#6227]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-glk4/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][95] -> [DMESG-WARN][96] ([i915#8617]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [PASS][97] -> [ABORT][98] ([i915#8489] / [i915#8668]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-apl: NOTRUN -> [FAIL][99] ([i915#7036]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-apl6/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#8436]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-1/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#6590]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-1/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-dg1: [PASS][102] -> [FAIL][103] ([i915#3591]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@cursor-dpms: - shard-mtlp: [PASS][104] -> [TIMEOUT][105] ([i915#7953]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-5/igt@i915_pm_rpm@cursor-dpms.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-7/igt@i915_pm_rpm@cursor-dpms.html * igt@i915_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][106] -> [SKIP][107] ([i915#1397]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-10/igt@i915_pm_rpm@dpms-lpsp.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-3/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][108] ([fdo#111644] / [i915#1397]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][109] -> [SKIP][110] ([i915#1397]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-2/igt@i915_pm_rpm@dpms-non-lpsp.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-glk: NOTRUN -> [SKIP][111] ([fdo#109271]) +46 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-glk2/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg1: [PASS][112] -> [SKIP][113] ([i915#1397]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-13/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#1397]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-6/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#6621]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][116] -> [INCOMPLETE][117] ([i915#7790]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-snb6/igt@i915_pm_rps@reset.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-snb1/igt@i915_pm_rps@reset.html - shard-mtlp: NOTRUN -> [FAIL][118] ([i915#8346]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-5/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#8925]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-1/igt@i915_pm_rps@thresholds-park@gt1.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#4387]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-7/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-unsupported: - shard-mtlp: NOTRUN -> [SKIP][121] ([fdo#109302]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@i915_query@query-topology-unsupported.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#4212]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4212]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-1/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#8502]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#8709]) +11 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#8502]) +7 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][127] ([i915#8247]) +3 other tests fail [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-13/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#6228]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-7/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#404]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#1769] / [i915#3555]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][131] ([fdo#109271] / [i915#1769]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-glk3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-snb: NOTRUN -> [SKIP][132] ([fdo#109271] / [i915#1769]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4538] / [i915#5286]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-18/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#5286]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-tglu: NOTRUN -> [SKIP][135] ([fdo#111615] / [i915#5286]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][136] ([fdo#111614]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-5/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][137] ([fdo#111614]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#3638]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-19/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [PASS][139] -> [FAIL][140] ([i915#3743]) +1 other test fail [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][141] ([fdo#111614] / [i915#3638]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-2/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#5190]) +11 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][143] ([fdo#111615]) +14 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][144] ([fdo#110723]) +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html - shard-tglu: NOTRUN -> [SKIP][145] ([fdo#111615]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4538] / [i915#5190]) +5 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6187]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#4538]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_joiner@2x-modeset: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#2705]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-7/igt@kms_big_joiner@2x-modeset.html * igt@kms_big_joiner@basic: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#2705]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-13/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#3689] / [i915#3886] / [i915#5354]) +6 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-1/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#5354] / [i915#6095]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3689] / [i915#5354]) +20 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][154] ([fdo#109271] / [i915#3886]) +5 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-glk8/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#5354]) +45 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-7/igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#3734] / [i915#5354] / [i915#6095]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3886] / [i915#5354] / [i915#6095]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-5/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-10/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#5354] / [i915#6095]) +8 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-13/igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#5354]) +12 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-6/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][161] ([fdo#109271] / [i915#3886]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-apl4/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#5354] / [i915#6095]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-6/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-18/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#3689] / [i915#5354] / [i915#6095]) +7 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-19/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#5354] / [i915#6095]) +36 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-4/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#3689] / [i915#5354] / [i915#6095]) +4 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-4/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#3742]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-15/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#4087]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-4/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_chamelium_color@ctm-0-50: - shard-mtlp: NOTRUN -> [SKIP][169] ([fdo#111827]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-3/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2: NOTRUN -> [SKIP][170] ([fdo#111827]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-2/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#7828]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-15/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#7828]) +5 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-3/igt@kms_chamelium_frames@dp-frame-dump.html - shard-tglu: NOTRUN -> [SKIP][173] ([i915#7828]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-6/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#7828]) +8 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#7828]) +4 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3555]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-2/igt@kms_color@deep-color.html * igt@kms_color@degamma@pipe-a: - shard-mtlp: NOTRUN -> [FAIL][177] ([i915#9257]) +3 other tests fail [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-7/igt@kms_color@degamma@pipe-a.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#7118]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#3299]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-14/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][180] ([i915#7173]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@mei_interface: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#8063]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-1/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@uevent@pipe-a-dp-1: - shard-apl: NOTRUN -> [FAIL][182] ([i915#1339]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-apl1/igt@kms_content_protection@uevent@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][183] ([fdo#109279] / [i915#3359]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3359]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#8814]) +4 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#3359]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-14/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3359]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3546]) +3 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-rkl: NOTRUN -> [SKIP][189] ([fdo#111825]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html - shard-tglu: NOTRUN -> [SKIP][190] ([fdo#109274]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][191] ([fdo#109274] / [i915#5354]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][192] -> [FAIL][193] ([i915#2346]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#4103] / [i915#4213]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#4213]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#9226] / [i915#9261]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#9227]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8827]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#8588]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-4/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#3804]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-1/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][201] ([i915#3555]) +3 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-5/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#1257]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-4/igt@kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][203] ([i915#1257]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-5/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8812]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-2/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#3840]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#3469]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-3/igt@kms_fbcon_fbt@psr.html - shard-rkl: NOTRUN -> [SKIP][207] ([i915#3955]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-7/igt@kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][208] ([i915#3469]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-3/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-apl: NOTRUN -> [SKIP][209] ([fdo#109271] / [fdo#111767]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-apl2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#8381]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3637]) +8 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-dg2: NOTRUN -> [SKIP][212] ([fdo#109274]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-suspend@d-hdmi-a2: - shard-dg2: NOTRUN -> [FAIL][213] ([fdo#103375]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-2/igt@kms_flip@flip-vs-suspend@d-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8810]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#2672]) +5 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-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][216] ([i915#2672]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][217] ([i915#2587] / [i915#2672]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#2587] / [i915#2672]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#8810]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#2672]) +2 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#2672] / [i915#3555]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [FAIL][222] ([i915#6880]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#8708]) +17 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#8708]) +5 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][225] ([fdo#111825]) +15 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#5439]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][227] ([i915#5439]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#3458]) +16 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#1825]) +27 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][230] ([fdo#109280]) +4 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#3458]) +6 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#3023]) +6 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#5460]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#8708]) +13 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][235] ([fdo#111825] / [i915#1825]) +8 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-18/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-6/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-5/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-2/igt@kms_hdr@static-toggle-dpms.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#4816]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-mtlp: NOTRUN -> [SKIP][241] ([fdo#109289]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_lowres@tiling-4@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#3582]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@kms_plane_lowres@tiling-4@pipe-c-edp-1.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#8806]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-5/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#5176]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#5176]) +11 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#5176]) +11 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@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][247] ([i915#5235]) +9 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-6/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-20x20@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#5235]) +3 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#5235]) +19 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#5235]) +7 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][251] ([fdo#109271]) +85 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-snb4/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#5235]) +15 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-15/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#6524] / [i915#6805]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#6524]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-3/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][255] ([i915#6524]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-4/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#6524]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-18/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-glk: NOTRUN -> [SKIP][257] ([fdo#109271] / [i915#658]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-glk2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#658]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-17/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-apl: NOTRUN -> [SKIP][259] ([fdo#109271] / [i915#658]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-apl3/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][260] ([fdo#111068] / [i915#658]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-14/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#658]) +2 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][262] ([fdo#111068] / [i915#658]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][263] ([fdo#109642] / [fdo#111068] / [i915#658]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-9/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@cursor_mmap_gtt: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#1072]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-2/igt@kms_psr@cursor_mmap_gtt.html - shard-tglu: NOTRUN -> [SKIP][265] ([fdo#110189]) +5 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-5/igt@kms_psr@cursor_mmap_gtt.html * igt@kms_psr@primary_page_flip: - shard-apl: NOTRUN -> [SKIP][266] ([fdo#109271]) +92 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-apl2/igt@kms_psr@primary_page_flip.html * igt@kms_psr@psr2_sprite_blt: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#1072]) +6 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-6/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr@sprite_plane_move: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#1072]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-17/igt@kms_psr@sprite_plane_move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#5461] / [i915#658]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#5289]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-17/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#4235]) +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-4/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#5289]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#4235] / [i915#5190]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-rkl: NOTRUN -> [SKIP][274] ([fdo#111615] / [i915#5289]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8809]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-5/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#8623]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][277] ([i915#8623]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][278] ([fdo#109309]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-3/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-apl: [PASS][279] -> [INCOMPLETE][280] ([i915#9392]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: - shard-snb: NOTRUN -> [DMESG-WARN][281] ([i915#8841]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-snb2/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-c-ts-continuation-idle: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#4070] / [i915#6768]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-3/igt@kms_vblank@pipe-c-ts-continuation-idle.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-mtlp: NOTRUN -> [ABORT][283] ([i915#9262]) +4 other tests abort [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-4/igt@kms_vblank@pipe-c-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-query-busy-hang: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#4070] / [i915#533] / [i915#6768]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-1/igt@kms_vblank@pipe-d-query-busy-hang.html * igt@kms_vblank@pipe-d-query-idle: - shard-mtlp: NOTRUN -> [TIMEOUT][285] ([i915#7953]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-7/igt@kms_vblank@pipe-d-query-idle.html * igt@kms_vrr@flip-basic: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#3555]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-15/igt@kms_vrr@flip-basic.html - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8808]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-5/igt@kms_vrr@flip-basic.html * igt@kms_vrr@negative-basic: - shard-tglu: NOTRUN -> [SKIP][288] ([i915#3555]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-9/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-invalid-parameters: - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#2437]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-3/igt@kms_writeback@writeback-invalid-parameters.html - shard-dg2: NOTRUN -> [SKIP][290] ([i915#2437]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#7387]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-5/igt@perf@global-sseu-config.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#7387]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][293] ([i915#4349]) +3 other tests fail [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@event-wait@rcs0: - shard-dg1: NOTRUN -> [SKIP][294] ([fdo#112283]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-16/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#8440]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-5/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][296] ([i915#8516]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-13/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-blt: - shard-mtlp: NOTRUN -> [FAIL][297] ([i915#8445]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-6/igt@prime_vgem@basic-blt.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#3708] / [i915#4077]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-2/igt@prime_vgem@coherency-gtt.html - shard-rkl: NOTRUN -> [SKIP][299] ([fdo#109295] / [fdo#111656] / [i915#3708]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-3/igt@prime_vgem@coherency-gtt.html - shard-tglu: NOTRUN -> [SKIP][300] ([fdo#109295] / [fdo#111656]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-6/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#3708]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-7/igt@prime_vgem@fence-flip-hang.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: NOTRUN -> [FAIL][302] ([i915#1731]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@vecs0.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#2575]) +4 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-16/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_get_param@get-bad-param: - shard-tglu: NOTRUN -> [SKIP][304] ([fdo#109315] / [i915#2575]) +2 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-7/igt@v3d/v3d_get_param@get-bad-param.html * igt@v3d/v3d_submit_cl@bad-multisync-in-sync: - shard-rkl: NOTRUN -> [SKIP][305] ([fdo#109315]) +6 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-2/igt@v3d/v3d_submit_cl@bad-multisync-in-sync.html * igt@v3d/v3d_submit_cl@valid-submission: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#2575]) +13 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-2/igt@v3d/v3d_submit_cl@valid-submission.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#2575]) +12 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-10/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_label_bo@set-kernel-name: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#7711]) +6 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-2/igt@vc4/vc4_label_bo@set-kernel-name.html * igt@vc4/vc4_perfmon@create-perfmon-exceed: - shard-tglu: NOTRUN -> [SKIP][309] ([i915#2575]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-6/igt@vc4/vc4_perfmon@create-perfmon-exceed.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#7711]) +6 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-2/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#7711]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-18/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#7711]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-1/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@gem_busy@close-race: - shard-rkl: [ABORT][313] ([i915#6016]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-1/igt@gem_busy@close-race.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-1/igt@gem_busy@close-race.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][315] ([i915#7297]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][317] ([i915#6268]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-6/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: [FAIL][319] ([i915#2410]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-6/igt@gem_ctx_persistence@engines-hang@vcs0.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-5/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][321] ([i915#2842]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][323] ([i915#2842]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][325] ([i915#2842]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_spin_batch@legacy-resubmit-new@default: - shard-mtlp: [ABORT][327] -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-7/igt@gem_spin_batch@legacy-resubmit-new@default.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-3/igt@gem_spin_batch@legacy-resubmit-new@default.html * igt@gem_spin_batch@legacy-resubmit-new@vebox: - shard-mtlp: [DMESG-WARN][329] -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-7/igt@gem_spin_batch@legacy-resubmit-new@vebox.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-3/igt@gem_spin_batch@legacy-resubmit-new@vebox.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [FAIL][331] ([i915#9353]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-8/igt@gem_userptr_blits@nohangcheck.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-5/igt@gem_userptr_blits@nohangcheck.html * igt@gen9_exec_parse@allowed-all: - shard-apl: [INCOMPLETE][333] ([i915#5566]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-apl1/igt@gen9_exec_parse@allowed-all.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-apl2/igt@gen9_exec_parse@allowed-all.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [FAIL][335] ([i915#7069]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-8/igt@i915_hangman@gt-engine-hang@vcs0.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-1/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-dg1: [FAIL][337] ([i915#3591]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-dg1: [SKIP][339] ([i915#1397]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-18/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [SKIP][341] ([i915#1397]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-5/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_selftest@live@dmabuf: - shard-apl: [DMESG-FAIL][343] ([i915#7562]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-apl1/igt@i915_selftest@live@dmabuf.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-apl6/igt@i915_selftest@live@dmabuf.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][345] ([fdo#103375]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2: - shard-glk: [FAIL][347] ([i915#2521]) -> [PASS][348] [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-glk8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][349] ([i915#5138]) -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][351] ([i915#3743]) -> [PASS][352] +2 other tests pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-b-vga-1: - shard-snb: [ABORT][353] ([i915#8865]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-snb7/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-b-vga-1.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-snb6/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-b-vga-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][355] ([i915#2346]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html - shard-apl: [FAIL][357] ([i915#2346]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-suspend-interruptible@d-edp1: - shard-mtlp: [DMESG-WARN][359] ([i915#9262]) -> [PASS][360] +2 other tests pass [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-4/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-mtlp-7/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2: [FAIL][361] ([i915#6880]) -> [PASS][362] +1 other test pass [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@kms_universal_plane@cursor-fb-leak-pipe-c: - shard-apl: [FAIL][363] ([i915#9196]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-apl2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-apl2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: - shard-dg2: [FAIL][365] ([fdo#103375]) -> [PASS][366] [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-5/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-apl: [INCOMPLETE][367] -> [PASS][368] [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-apl6/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-apl4/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg2: [FAIL][369] ([i915#4521]) -> [PASS][370] +7 other tests pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-3/igt@perf_pmu@busy-idle-check-all@vcs0.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-1/igt@perf_pmu@busy-idle-check-all@vcs0.html * igt@perf_pmu@busy-idle-check-all@vecs0: - shard-dg1: [FAIL][371] ([i915#4521]) -> [PASS][372] +2 other tests pass [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vecs0.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-14/igt@perf_pmu@busy-idle-check-all@vecs0.html #### Warnings #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][373] ([i915#7461]) -> [INCOMPLETE][374] ([i915#9283]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [DMESG-WARN][375] ([i915#4936] / [i915#5493]) -> [TIMEOUT][376] ([i915#5493]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [WARN][377] ([i915#2681]) -> [FAIL][378] ([i915#2681] / [i915#3591]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_content_protection@mei_interface: - shard-rkl: [SKIP][379] ([i915#7118]) -> [SKIP][380] ([fdo#109300]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-2/igt@kms_content_protection@mei_interface.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-7/igt@kms_content_protection@mei_interface.html - shard-tglu: [SKIP][381] ([i915#6944] / [i915#7116] / [i915#7118]) -> [SKIP][382] ([fdo#109300]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-tglu-4/igt@kms_content_protection@mei_interface.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-tglu-3/igt@kms_content_protection@mei_interface.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][383] ([i915#4070] / [i915#4816]) -> [SKIP][384] ([i915#4816]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][385] ([i915#1072]) -> [SKIP][386] ([i915#1072] / [i915#4078]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg1-19/igt@kms_psr@sprite_plane_onoff.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/shard-dg1-13/igt@kms_psr@sprite_plane_onoff.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6016]: https://gitlab.freedesktop.org/drm/intel/issues/6016 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7562]: https://gitlab.freedesktop.org/drm/intel/issues/7562 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.fre == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9845/index.html [-- Attachment #2: Type: text/html, Size: 122948 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-09-23 4:15 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-22 5:16 [igt-dev] [PATCH v1 0/3] Terminate lease fd before subtests execution Mohammed Thasleem 2023-09-22 5:16 ` [igt-dev] [PATCH v1 1/3] tests/kms_lease: " Mohammed Thasleem 2023-09-22 5:17 ` [igt-dev] [PATCH v1 2/3] tests/kms_lease: Removed lease_t from all sub-tests Mohammed Thasleem 2023-09-22 5:17 ` [igt-dev] [PATCH v1 3/3] tests/kms_lease: Add wrapper to create lease Mohammed Thasleem 2023-09-22 6:37 ` [igt-dev] ✓ Fi.CI.BAT: success for Terminate lease fd before subtests execution Patchwork 2023-09-22 7:10 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-09-23 4:15 ` [igt-dev] ✗ 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