* [PATCH i-g-t v2 0/3] tests/intel/kms_pipe_stress: fix plane setup and cursor handling
@ 2026-06-02 16:24 Sowmiya S
2026-06-02 16:24 ` [PATCH i-g-t v2 1/3] tests/intel/kms_pipe_stress: fix inverted condition skipping plane setup Sowmiya S
` (7 more replies)
0 siblings, 8 replies; 11+ messages in thread
From: Sowmiya S @ 2026-06-02 16:24 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, chaitanya.kumar.borah, Sowmiya S
This series fixes three bugs in kms_pipe_stress that
prevented overlay and cursor planes from being exercised.
The root cause was an inverted condition that caused the plane setup
loop to be skipped entirely on every successful mode commit (patch 1).
Once that was fixed, two further issues became visible: the plane
source crop was not initialized correctly, causing the hardware
downscale limit to be exceeded when the destination size was reduced
(patch 2); and the cursor framebuffer was created with the overlay
format and modifier, which the cursor hardware does not support --
only ARGB8888 with a linear modifier is accepted (patch 3).
With these three fixes, both stress-xrgb8888-untiled and
stress-xrgb8888-4tiled subtests complete successfully on Nova Lake
with and without MST displays.
Sowmiya S (3):
tests/intel/kms_pipe_stress: fix inverted condition skipping plane
setup
tests/intel/kms_pipe_stress: fix plane source crop and separate cursor
loop
tests/intel/kms_pipe_stress: use ARGB8888/LINEAR for cursor
framebuffer
tests/intel/kms_pipe_stress.c | 116 +++++++++++++++++++++-------------
1 file changed, 71 insertions(+), 45 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 11+ messages in thread* [PATCH i-g-t v2 1/3] tests/intel/kms_pipe_stress: fix inverted condition skipping plane setup 2026-06-02 16:24 [PATCH i-g-t v2 0/3] tests/intel/kms_pipe_stress: fix plane setup and cursor handling Sowmiya S @ 2026-06-02 16:24 ` Sowmiya S 2026-06-02 16:24 ` [PATCH i-g-t v2 2/3] tests/intel/kms_pipe_stress: fix plane source crop and separate cursor loop Sowmiya S ` (6 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Sowmiya S @ 2026-06-02 16:24 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, chaitanya.kumar.borah, Sowmiya S The condition after commit_mode() was "if (!ret) return ret;" which returned immediately on success, skipping the entire plane and cursor setup loop. Fix to "if (ret)" so the loop runs on success and returns only on failure. Signed-off-by: Sowmiya S <sowmiya.s@intel.com> Reviewed-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel/kms_pipe_stress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/intel/kms_pipe_stress.c b/tests/intel/kms_pipe_stress.c index 36e3842c6..8724a674c 100644 --- a/tests/intel/kms_pipe_stress.c +++ b/tests/intel/kms_pipe_stress.c @@ -411,7 +411,7 @@ static int crtc_stress(struct data *data, igt_output_t *output, ret = commit_mode(data, output, crtc, mode); - if (!ret) + if (ret) return ret; data->last_mode[crtc->pipe] = mode; -- 2.43.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH i-g-t v2 2/3] tests/intel/kms_pipe_stress: fix plane source crop and separate cursor loop 2026-06-02 16:24 [PATCH i-g-t v2 0/3] tests/intel/kms_pipe_stress: fix plane setup and cursor handling Sowmiya S 2026-06-02 16:24 ` [PATCH i-g-t v2 1/3] tests/intel/kms_pipe_stress: fix inverted condition skipping plane setup Sowmiya S @ 2026-06-02 16:24 ` Sowmiya S 2026-06-29 19:28 ` Juha-Pekka Heikkilä 2026-06-02 16:24 ` [PATCH i-g-t v2 3/3] tests/intel/kms_pipe_stress: use ARGB8888/LINEAR for cursor framebuffer Sowmiya S ` (5 subsequent siblings) 7 siblings, 1 reply; 11+ messages in thread From: Sowmiya S @ 2026-06-02 16:24 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, chaitanya.kumar.borah, Sowmiya S Pass 3/4 destination size as initial source crop to universal_plane_set_fb() to avoid an immediate downscale. Keep source in sync with igt_fb_set_size() in the reduction loop so the downscale ratio never exceeds the hardware limit (~3x). Move cursor handling out of the overlay loop into a dedicated second for_each_plane_on_crtc loop with a DRM_MODE_ATOMIC_TEST_ONLY commit. If the test commit rejects the cursor (e.g. unsupported format or modifier), disable it gracefully so the final commit with only overlay planes can succeed. Signed-off-by: Sowmiya S <sowmiya.s@intel.com> --- tests/intel/kms_pipe_stress.c | 110 +++++++++++++++++++++------------- 1 file changed, 68 insertions(+), 42 deletions(-) diff --git a/tests/intel/kms_pipe_stress.c b/tests/intel/kms_pipe_stress.c index 8724a674c..a84433b9d 100644 --- a/tests/intel/kms_pipe_stress.c +++ b/tests/intel/kms_pipe_stress.c @@ -425,57 +425,83 @@ static int crtc_stress(struct data *data, igt_output_t *output, if (!data->num_planes[crtc->pipe] || !new_mode) return 0; - for_each_plane_on_crtc(crtc, - plane) { + /* Set up overlay/primary planes up to the configured limit. */ + for_each_plane_on_crtc(crtc, plane) { int plane_width, plane_height; - if (plane->type == DRM_PLANE_TYPE_CURSOR) { - cursor_plane_set_fb(plane, - &data->cursor_fb[crtc->pipe], - cursor_width, cursor_height); - plane_width = cursor_width; - plane_height = cursor_height; - } else { - universal_plane_set_fb(plane, - &data->fb[crtc->pipe * MAX_PLANES + i], - mode->hdisplay, mode->vdisplay); - plane_width = (mode->hdisplay * 3) / 4; - plane_height = (mode->vdisplay * 3) / 4; + if (plane->type == DRM_PLANE_TYPE_CURSOR) + continue; - ret = try_plane_scaling(data, plane, plane_width, plane_height); + plane_width = (mode->hdisplay * 3) / 4; + plane_height = (mode->vdisplay * 3) / 4; - while (ret) { - if (plane_width <= cursor_width || plane_height <= cursor_height) - break; + /* + * Set the source crop to match the initial destination + * size (no upscaling). Keeping source == destination + * prevents the downscale ratio from exceeding the + * hardware limit (~3×) when the destination is halved + * in the reduction loop below. + */ + universal_plane_set_fb(plane, + &data->fb[crtc->pipe * MAX_PLANES + i], + plane_width, plane_height); - plane_width /= 2; - plane_height /= 2; + ret = try_plane_scaling(data, plane, plane_width, plane_height); - ret = try_plane_scaling(data, plane, plane_width, plane_height); + while (ret) { + if (plane_width <= cursor_width || plane_height <= cursor_height) + break; - igt_info("Reduced plane %d size to %dx%d\n", - plane->index, plane_width, plane_height); - } - if (ret) { - igt_info("Plane %d pipe %d try commit failed, exiting\n", i, - crtc->pipe); - data->num_planes[crtc->pipe] = i; - igt_info("Max num planes for pipe %d set to %d\n", - crtc->pipe, i); - /* - * We have now determined max amount of full sized planes, we will just - * keep it in mind and be smarter next time. Also lets remove unneeded fbs. - * Don't destroy cursor_fb as will take care about it at the end. - */ + plane_width /= 2; + plane_height /= 2; + + /* Keep source crop in sync with the reduced destination. */ + igt_fb_set_size(&data->fb[crtc->pipe * MAX_PLANES + i], + plane, plane_width, plane_height); + + ret = try_plane_scaling(data, plane, plane_width, plane_height); + + igt_info("Reduced plane %d size to %dx%d\n", + plane->index, plane_width, plane_height); + } + if (ret) { + igt_info("Plane %d pipe %d try commit failed, exiting\n", i, + crtc->pipe); + data->num_planes[crtc->pipe] = i; + igt_info("Max num planes for pipe %d set to %d\n", + crtc->pipe, i); + /* + * We have now determined max amount of full sized planes, we will just + * keep it in mind and be smarter next time. Also lets remove unneeded fbs. + * Don't destroy cursor_fb as will take care about it at the end. + */ + igt_plane_set_fb(plane, NULL); + cleanup_plane_fbs(data, crtc, i, MAX_PLANES); + } + + if (++i >= data->num_planes[crtc->pipe]) + break; + } + + /* + * Always attempt to enable the cursor plane. First validate it with + * a TEST_ONLY commit: some format/modifier combinations (e.g. + * XRGB8888, 4-tiled) are not accepted by the cursor hardware. + * If the test commit rejects the cursor, gracefully disable it so + * the final actual commit with only overlay planes can succeed. + */ + for_each_plane_on_crtc(crtc, plane) { + if (plane->type == DRM_PLANE_TYPE_CURSOR) { + cursor_plane_set_fb(plane, + &data->cursor_fb[crtc->pipe], + cursor_width, cursor_height); + if (igt_display_try_commit_atomic(&data->display, + DRM_MODE_ATOMIC_TEST_ONLY | + DRM_MODE_ATOMIC_ALLOW_MODESET, NULL)) { igt_plane_set_fb(plane, NULL); - cleanup_plane_fbs(data, - crtc, - i, - MAX_PLANES); + igt_info("Cursor fb not supported by hw (format/modifier), disabling\n"); } - - if (++i >= data->num_planes[crtc->pipe]) - break; + break; } } -- 2.43.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t v2 2/3] tests/intel/kms_pipe_stress: fix plane source crop and separate cursor loop 2026-06-02 16:24 ` [PATCH i-g-t v2 2/3] tests/intel/kms_pipe_stress: fix plane source crop and separate cursor loop Sowmiya S @ 2026-06-29 19:28 ` Juha-Pekka Heikkilä 0 siblings, 0 replies; 11+ messages in thread From: Juha-Pekka Heikkilä @ 2026-06-29 19:28 UTC (permalink / raw) To: Sowmiya S, igt-dev; +Cc: swati2.sharma, chaitanya.kumar.borah This original test look bit messy to my eye but I think this change does what it says and is all ok. Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> On 02/06/2026 19.24, Sowmiya S wrote: > Pass 3/4 destination size as initial source crop to > universal_plane_set_fb() to avoid an immediate > downscale. Keep source in sync with igt_fb_set_size() > in the reduction loop so the downscale ratio never > exceeds the hardware limit (~3x). > > Move cursor handling out of the overlay loop into a > dedicated second for_each_plane_on_crtc loop with a > DRM_MODE_ATOMIC_TEST_ONLY commit. If the test commit > rejects the cursor (e.g. unsupported format or modifier), > disable it gracefully so the final commit with only overlay > planes can succeed. > > Signed-off-by: Sowmiya S <sowmiya.s@intel.com> > --- > tests/intel/kms_pipe_stress.c | 110 +++++++++++++++++++++------------- > 1 file changed, 68 insertions(+), 42 deletions(-) > > diff --git a/tests/intel/kms_pipe_stress.c b/tests/intel/kms_pipe_stress.c > index 8724a674c..a84433b9d 100644 > --- a/tests/intel/kms_pipe_stress.c > +++ b/tests/intel/kms_pipe_stress.c > @@ -425,57 +425,83 @@ static int crtc_stress(struct data *data, igt_output_t *output, > if (!data->num_planes[crtc->pipe] || !new_mode) > return 0; > > - for_each_plane_on_crtc(crtc, > - plane) { > + /* Set up overlay/primary planes up to the configured limit. */ > + for_each_plane_on_crtc(crtc, plane) { > int plane_width, plane_height; > - if (plane->type == DRM_PLANE_TYPE_CURSOR) { > - cursor_plane_set_fb(plane, > - &data->cursor_fb[crtc->pipe], > - cursor_width, cursor_height); > - plane_width = cursor_width; > - plane_height = cursor_height; > - } else { > - universal_plane_set_fb(plane, > - &data->fb[crtc->pipe * MAX_PLANES + i], > - mode->hdisplay, mode->vdisplay); > > - plane_width = (mode->hdisplay * 3) / 4; > - plane_height = (mode->vdisplay * 3) / 4; > + if (plane->type == DRM_PLANE_TYPE_CURSOR) > + continue; > > - ret = try_plane_scaling(data, plane, plane_width, plane_height); > + plane_width = (mode->hdisplay * 3) / 4; > + plane_height = (mode->vdisplay * 3) / 4; > > - while (ret) { > - if (plane_width <= cursor_width || plane_height <= cursor_height) > - break; > + /* > + * Set the source crop to match the initial destination > + * size (no upscaling). Keeping source == destination > + * prevents the downscale ratio from exceeding the > + * hardware limit (~3×) when the destination is halved > + * in the reduction loop below. > + */ > + universal_plane_set_fb(plane, > + &data->fb[crtc->pipe * MAX_PLANES + i], > + plane_width, plane_height); > > - plane_width /= 2; > - plane_height /= 2; > + ret = try_plane_scaling(data, plane, plane_width, plane_height); > > - ret = try_plane_scaling(data, plane, plane_width, plane_height); > + while (ret) { > + if (plane_width <= cursor_width || plane_height <= cursor_height) > + break; > > - igt_info("Reduced plane %d size to %dx%d\n", > - plane->index, plane_width, plane_height); > - } > - if (ret) { > - igt_info("Plane %d pipe %d try commit failed, exiting\n", i, > - crtc->pipe); > - data->num_planes[crtc->pipe] = i; > - igt_info("Max num planes for pipe %d set to %d\n", > - crtc->pipe, i); > - /* > - * We have now determined max amount of full sized planes, we will just > - * keep it in mind and be smarter next time. Also lets remove unneeded fbs. > - * Don't destroy cursor_fb as will take care about it at the end. > - */ > + plane_width /= 2; > + plane_height /= 2; > + > + /* Keep source crop in sync with the reduced destination. */ > + igt_fb_set_size(&data->fb[crtc->pipe * MAX_PLANES + i], > + plane, plane_width, plane_height); > + > + ret = try_plane_scaling(data, plane, plane_width, plane_height); > + > + igt_info("Reduced plane %d size to %dx%d\n", > + plane->index, plane_width, plane_height); > + } > + if (ret) { > + igt_info("Plane %d pipe %d try commit failed, exiting\n", i, > + crtc->pipe); > + data->num_planes[crtc->pipe] = i; > + igt_info("Max num planes for pipe %d set to %d\n", > + crtc->pipe, i); > + /* > + * We have now determined max amount of full sized planes, we will just > + * keep it in mind and be smarter next time. Also lets remove unneeded fbs. > + * Don't destroy cursor_fb as will take care about it at the end. > + */ > + igt_plane_set_fb(plane, NULL); > + cleanup_plane_fbs(data, crtc, i, MAX_PLANES); > + } > + > + if (++i >= data->num_planes[crtc->pipe]) > + break; > + } > + > + /* > + * Always attempt to enable the cursor plane. First validate it with > + * a TEST_ONLY commit: some format/modifier combinations (e.g. > + * XRGB8888, 4-tiled) are not accepted by the cursor hardware. > + * If the test commit rejects the cursor, gracefully disable it so > + * the final actual commit with only overlay planes can succeed. > + */ > + for_each_plane_on_crtc(crtc, plane) { > + if (plane->type == DRM_PLANE_TYPE_CURSOR) { > + cursor_plane_set_fb(plane, > + &data->cursor_fb[crtc->pipe], > + cursor_width, cursor_height); > + if (igt_display_try_commit_atomic(&data->display, > + DRM_MODE_ATOMIC_TEST_ONLY | > + DRM_MODE_ATOMIC_ALLOW_MODESET, NULL)) { > igt_plane_set_fb(plane, NULL); > - cleanup_plane_fbs(data, > - crtc, > - i, > - MAX_PLANES); > + igt_info("Cursor fb not supported by hw (format/modifier), disabling\n"); > } > - > - if (++i >= data->num_planes[crtc->pipe]) > - break; > + break; > } > } > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH i-g-t v2 3/3] tests/intel/kms_pipe_stress: use ARGB8888/LINEAR for cursor framebuffer 2026-06-02 16:24 [PATCH i-g-t v2 0/3] tests/intel/kms_pipe_stress: fix plane setup and cursor handling Sowmiya S 2026-06-02 16:24 ` [PATCH i-g-t v2 1/3] tests/intel/kms_pipe_stress: fix inverted condition skipping plane setup Sowmiya S 2026-06-02 16:24 ` [PATCH i-g-t v2 2/3] tests/intel/kms_pipe_stress: fix plane source crop and separate cursor loop Sowmiya S @ 2026-06-02 16:24 ` Sowmiya S 2026-06-04 7:22 ` Borah, Chaitanya Kumar 2026-06-03 6:10 ` ✓ Xe.CI.BAT: success for tests/intel/kms_pipe_stress: fix plane setup and cursor handling (rev2) Patchwork ` (4 subsequent siblings) 7 siblings, 1 reply; 11+ messages in thread From: Sowmiya S @ 2026-06-02 16:24 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, chaitanya.kumar.borah, Sowmiya S Cursor planes on Intel hardware accept only DRM_FORMAT_MOD_LINEAR, regardless of the overlay format and modifier used by the test variant. Using data->modifier (e.g. 4-tiled) caused -EINVAL on the cursor commit. Bspec: 69833 v2: Add bspec reference in commit message (Swati) Signed-off-by: Sowmiya S <sowmiya.s@intel.com> Reviewed-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel/kms_pipe_stress.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/intel/kms_pipe_stress.c b/tests/intel/kms_pipe_stress.c index a84433b9d..5362fe9f3 100644 --- a/tests/intel/kms_pipe_stress.c +++ b/tests/intel/kms_pipe_stress.c @@ -736,8 +736,8 @@ static void create_framebuffers(struct data *data) if (!data->cursor_fb[i].fb_id) { igt_create_color_fb(data->drm_fd, cursor_width, cursor_height, - data->format, - data->modifier, + DRM_FORMAT_ARGB8888, + DRM_FORMAT_MOD_LINEAR, 1.0, 0.0, 0.0, &data->cursor_fb[i]); } -- 2.43.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t v2 3/3] tests/intel/kms_pipe_stress: use ARGB8888/LINEAR for cursor framebuffer 2026-06-02 16:24 ` [PATCH i-g-t v2 3/3] tests/intel/kms_pipe_stress: use ARGB8888/LINEAR for cursor framebuffer Sowmiya S @ 2026-06-04 7:22 ` Borah, Chaitanya Kumar 0 siblings, 0 replies; 11+ messages in thread From: Borah, Chaitanya Kumar @ 2026-06-04 7:22 UTC (permalink / raw) To: Sowmiya S, igt-dev; +Cc: swati2.sharma On 6/2/2026 9:54 PM, Sowmiya S wrote: > Cursor planes on Intel hardware accept only nit: s/accept/accepts > DRM_FORMAT_MOD_LINEAR, regardless of the overlay > format and modifier used by the test variant. Using and DRM_FORMAT_ARGB8888, unlike the formats and modifier used for primary and overlay planes in the test. Other than that LGTM. Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com> > data->modifier (e.g. 4-tiled) caused -EINVAL on the > cursor commit. > Bspec: 69833 > > v2: Add bspec reference in commit message (Swati) > > Signed-off-by: Sowmiya S <sowmiya.s@intel.com> > Reviewed-by: Swati Sharma <swati2.sharma@intel.com> > --- > tests/intel/kms_pipe_stress.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tests/intel/kms_pipe_stress.c b/tests/intel/kms_pipe_stress.c > index a84433b9d..5362fe9f3 100644 > --- a/tests/intel/kms_pipe_stress.c > +++ b/tests/intel/kms_pipe_stress.c > @@ -736,8 +736,8 @@ static void create_framebuffers(struct data *data) > if (!data->cursor_fb[i].fb_id) { > igt_create_color_fb(data->drm_fd, > cursor_width, cursor_height, > - data->format, > - data->modifier, > + DRM_FORMAT_ARGB8888, > + DRM_FORMAT_MOD_LINEAR, > 1.0, 0.0, 0.0, > &data->cursor_fb[i]); > } ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/kms_pipe_stress: fix plane setup and cursor handling (rev2) 2026-06-02 16:24 [PATCH i-g-t v2 0/3] tests/intel/kms_pipe_stress: fix plane setup and cursor handling Sowmiya S ` (2 preceding siblings ...) 2026-06-02 16:24 ` [PATCH i-g-t v2 3/3] tests/intel/kms_pipe_stress: use ARGB8888/LINEAR for cursor framebuffer Sowmiya S @ 2026-06-03 6:10 ` Patchwork 2026-06-03 6:23 ` ✓ i915.CI.BAT: " Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2026-06-03 6:10 UTC (permalink / raw) To: Sowmiya S; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1097 bytes --] == Series Details == Series: tests/intel/kms_pipe_stress: fix plane setup and cursor handling (rev2) URL : https://patchwork.freedesktop.org/series/167348/ State : success == Summary == CI Bug Log - changes from XEIGT_8947_BAT -> XEIGTPW_15292_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8947 -> IGTPW_15292 * Linux: xe-5186-dae47e6a1cce1d19d56c27b48b2670d4094ecbdc -> xe-5189-ab2d36ce7e67d2825cea19ea956947a21e932f70 IGTPW_15292: 15292 IGT_8947: e322bfd77da04314dd310da9a6cf0562b5751f1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5186-dae47e6a1cce1d19d56c27b48b2670d4094ecbdc: dae47e6a1cce1d19d56c27b48b2670d4094ecbdc xe-5189-ab2d36ce7e67d2825cea19ea956947a21e932f70: ab2d36ce7e67d2825cea19ea956947a21e932f70 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/index.html [-- Attachment #2: Type: text/html, Size: 1656 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/kms_pipe_stress: fix plane setup and cursor handling (rev2) 2026-06-02 16:24 [PATCH i-g-t v2 0/3] tests/intel/kms_pipe_stress: fix plane setup and cursor handling Sowmiya S ` (3 preceding siblings ...) 2026-06-03 6:10 ` ✓ Xe.CI.BAT: success for tests/intel/kms_pipe_stress: fix plane setup and cursor handling (rev2) Patchwork @ 2026-06-03 6:23 ` Patchwork 2026-06-03 17:46 ` ✗ Xe.CI.FULL: failure " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2026-06-03 6:23 UTC (permalink / raw) To: Sowmiya S; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4901 bytes --] == Series Details == Series: tests/intel/kms_pipe_stress: fix plane setup and cursor handling (rev2) URL : https://patchwork.freedesktop.org/series/167348/ State : success == Summary == CI Bug Log - changes from IGT_8947 -> IGTPW_15292 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/index.html Participating hosts (41 -> 40) ------------------------------ Additional (1): bat-adls-6 Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_15292 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests: - bat-adls-6: NOTRUN -> [SKIP][1] ([i915#15931]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/bat-adls-6/igt@dmabuf@all-tests.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adls-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic@basic: - bat-adls-6: NOTRUN -> [SKIP][3] ([i915#15656]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/bat-adls-6/igt@gem_tiled_pread_basic@basic.html * igt@intel_hwmon@hwmon-read: - bat-adls-6: NOTRUN -> [SKIP][4] ([i915#7707]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/bat-adls-6/igt@intel_hwmon@hwmon-read.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adls-6: NOTRUN -> [SKIP][5] ([i915#4103]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-adls-6: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#3840]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/bat-adls-6/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-adls-6: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-adls-6: NOTRUN -> [SKIP][8] ([i915#5354]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-mmap-gtt: - bat-adls-6: NOTRUN -> [SKIP][9] ([i915#1072] / [i915#9732]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adls-6: NOTRUN -> [SKIP][10] ([i915#3555]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-adls-6: NOTRUN -> [SKIP][11] ([i915#3291]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/bat-adls-6/igt@prime_vgem@basic-fence-read.html * igt@vgem_basic@create: - bat-adls-6: NOTRUN -> [FAIL][12] ([i915#16296]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/bat-adls-6/igt@vgem_basic@create.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931 [i915#16296]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16296 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8947 -> IGTPW_15292 * Linux: CI_DRM_18611 -> CI_DRM_18613 CI-20190529: 20190529 CI_DRM_18611: f059886850b97ea5c089703ba3e566a4f847fa19 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18613: ab2d36ce7e67d2825cea19ea956947a21e932f70 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15292: 15292 IGT_8947: e322bfd77da04314dd310da9a6cf0562b5751f1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/index.html [-- Attachment #2: Type: text/html, Size: 5888 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/intel/kms_pipe_stress: fix plane setup and cursor handling (rev2) 2026-06-02 16:24 [PATCH i-g-t v2 0/3] tests/intel/kms_pipe_stress: fix plane setup and cursor handling Sowmiya S ` (4 preceding siblings ...) 2026-06-03 6:23 ` ✓ i915.CI.BAT: " Patchwork @ 2026-06-03 17:46 ` Patchwork 2026-06-04 2:29 ` ✗ i915.CI.Full: " Patchwork 2026-06-09 15:51 ` ✓ i915.CI.Full: success " Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2026-06-03 17:46 UTC (permalink / raw) To: Sowmiya S; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 26357 bytes --] == Series Details == Series: tests/intel/kms_pipe_stress: fix plane setup and cursor handling (rev2) URL : https://patchwork.freedesktop.org/series/167348/ State : failure == Summary == CI Bug Log - changes from XEIGT_8947_FULL -> XEIGTPW_15292_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15292_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15292_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_15292_FULL: ### IGT changes ### #### Possible regressions #### * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html New tests --------- New tests have been introduced between XEIGT_8947_FULL and XEIGTPW_15292_FULL: ### New IGT tests (1) ### * igt@xe_drm_fdinfo@utilization-single-full-load-while-active: - Statuses : 2 pass(s) - Exec time: [5.08, 7.07] s Known issues ------------ Here are the changes found in XEIGTPW_15292_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@alternate-sync-async-flip-atomic: - shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#3718] / [Intel XE#6078]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip-atomic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-9/igt@kms_async_flips@alternate-sync-async-flip-atomic.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2: - shard-bmg: [PASS][5] -> [FAIL][6] ([Intel XE#6078]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-9/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2370]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2327]) +4 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +5 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-10/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_bw@connected-linear-tiling-2-displays-target-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7679]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-9/igt@kms_bw@connected-linear-tiling-2-displays-target-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-target-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#367]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-10/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +4 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-10/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2652]) +8 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html * igt@kms_chamelium_color@ctm-limited-range: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2325] / [Intel XE#7358]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-7/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2252]) +4 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#6974]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-1/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@legacy: - shard-bmg: NOTRUN -> [FAIL][17] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-3/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2320]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [PASS][19] -> [FAIL][20] ([Intel XE#7571]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1508]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#4156] / [Intel XE#7425]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-5/igt@kms_fbcon_fbt@fbc.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#1138] / [Intel XE#7344]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-9/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [PASS][24] -> [FAIL][25] ([Intel XE#3098]) +1 other test fail [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7178] / [Intel XE#7349]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4141]) +6 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2311]) +27 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#7061]) +5 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2313]) +34 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_hdr@invalid-hdr: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#1503]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-10/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7922]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-10/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f: - shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#7915]) +5 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-3/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_plane@pixel-format-y-tiled-modifier: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7283]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-modifier.html * igt@kms_plane_lowres@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2393]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-1/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-y: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#5020] / [Intel XE#7348]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-8/igt@kms_plane_multiple@tiling-y.html * igt@kms_pm_backlight@basic-brightness: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-5/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1489]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-9/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7795]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_sharpness_filter@filter-scaler-downscale: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#6503]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-3/igt@kms_sharpness_filter@filter-scaler-downscale.html * igt@xe_eudebug_online@single-step: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7636]) +7 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-6/igt@xe_eudebug_online@single-step.html * igt@xe_evict@evict-small-multi-queue-priority: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7140]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-3/igt@xe_evict@evict-small-multi-queue-priority.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt@xe_exec_fault_mode@twice-multi-queue: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7136]) +5 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-9/igt@xe_exec_fault_mode@twice-multi-queue.html * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#6874]) +15 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-7/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority.html * igt@xe_exec_reset@cm-multi-queue-cat-error: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7866]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-9/igt@xe_exec_reset@cm-multi-queue-cat-error.html * igt@xe_exec_system_allocator@many-64k-mmap-prefetch-shared: - shard-bmg: NOTRUN -> [ABORT][51] ([Intel XE#8007]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-1/igt@xe_exec_system_allocator@many-64k-mmap-prefetch-shared.html - shard-lnl: [PASS][52] -> [ABORT][53] ([Intel XE#8007]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-lnl-1/igt@xe_exec_system_allocator@many-64k-mmap-prefetch-shared.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-lnl-6/igt@xe_exec_system_allocator@many-64k-mmap-prefetch-shared.html * igt@xe_exec_system_allocator@many-stride-new-prefetch: - shard-bmg: NOTRUN -> [INCOMPLETE][54] ([Intel XE#7098] / [Intel XE#8159]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-4/igt@xe_exec_system_allocator@many-stride-new-prefetch.html * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#7138]) +5 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2229]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-5/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_multigpu_svm@mgpu-atomic-op-basic: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#6964]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-5/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html * igt@xe_page_reclaim@prl-max-entries: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7793]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-9/igt@xe_page_reclaim@prl-max-entries.html * igt@xe_pat@pat-sw-hw-reset-compare: - shard-bmg: NOTRUN -> [FAIL][59] ([Intel XE#7695]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-5/igt@xe_pat@pat-sw-hw-reset-compare.html * igt@xe_pat@xa-app-transient-media-off: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#7590]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-10/igt@xe_pat@xa-app-transient-media-off.html * igt@xe_peer2peer@read: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-6/igt@xe_peer2peer@read.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2284] / [Intel XE#7370]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-6/igt@xe_pm@s3-d3cold-basic-exec.html #### Possible fixes #### * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [FAIL][63] ([Intel XE#301]) -> [PASS][64] +4 other tests pass [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][65] ([Intel XE#7340] / [Intel XE#7504]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [FAIL][67] ([Intel XE#7340]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: [FAIL][69] ([Intel XE#6569]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-9/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_wedged@wedged-mode-toggle: - shard-bmg: [ABORT][71] ([Intel XE#8007]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-4/igt@xe_wedged@wedged-mode-toggle.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-1/igt@xe_wedged@wedged-mode-toggle.html #### Warnings #### * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][73] ([Intel XE#3544] / [Intel XE#7916]) -> [SKIP][74] ([Intel XE#3544] / [Intel XE#7915] / [Intel XE#7916]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f: - shard-bmg: [SKIP][75] ([Intel XE#7916]) -> [SKIP][76] ([Intel XE#7915]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-4/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-3/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][77] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][78] ([Intel XE#2426] / [Intel XE#5848]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344 [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348 [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425 [Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795 [Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866 [Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915 [Intel XE#7916]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7916 [Intel XE#7922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7922 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 Build changes ------------- * IGT: IGT_8947 -> IGTPW_15292 * Linux: xe-5186-dae47e6a1cce1d19d56c27b48b2670d4094ecbdc -> xe-5189-ab2d36ce7e67d2825cea19ea956947a21e932f70 IGTPW_15292: 15292 IGT_8947: e322bfd77da04314dd310da9a6cf0562b5751f1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5186-dae47e6a1cce1d19d56c27b48b2670d4094ecbdc: dae47e6a1cce1d19d56c27b48b2670d4094ecbdc xe-5189-ab2d36ce7e67d2825cea19ea956947a21e932f70: ab2d36ce7e67d2825cea19ea956947a21e932f70 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15292/index.html [-- Attachment #2: Type: text/html, Size: 28983 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/kms_pipe_stress: fix plane setup and cursor handling (rev2) 2026-06-02 16:24 [PATCH i-g-t v2 0/3] tests/intel/kms_pipe_stress: fix plane setup and cursor handling Sowmiya S ` (5 preceding siblings ...) 2026-06-03 17:46 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-06-04 2:29 ` Patchwork 2026-06-09 15:51 ` ✓ i915.CI.Full: success " Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2026-06-04 2:29 UTC (permalink / raw) To: Sowmiya S; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 144185 bytes --] == Series Details == Series: tests/intel/kms_pipe_stress: fix plane setup and cursor handling (rev2) URL : https://patchwork.freedesktop.org/series/167348/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18613_full -> IGTPW_15292_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15292_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15292_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): pig-kbl-iris Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15292_full: ### IGT changes ### #### Possible regressions #### * igt@gem_eio@hibernate: - shard-mtlp: [PASS][1] -> [FAIL][2] +2 other tests fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-mtlp-4/igt@gem_eio@hibernate.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@gem_eio@hibernate.html * igt@gem_exec_suspend@basic-s4-devices: - shard-tglu: [PASS][3] -> [FAIL][4] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-tglu-5/igt@gem_exec_suspend@basic-s4-devices.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@gem_exec_suspend@basic-s4-devices.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-b-plane-2: - shard-glk11: NOTRUN -> [FAIL][5] +3 other tests fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk11/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-b-plane-2.html New tests --------- New tests have been introduced between CI_DRM_18613_full and IGTPW_15292_full: ### New IGT tests (22) ### * igt@gem_spin_batch@bad-rotation-90-4-tiled-dg2-rc-ccs: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@basic-queues-all: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@basics: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@cursora-vs-flipb-toggle: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@fbc-1p-primscrn-cur-indfb-draw-render: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@fbc-1p-primscrn-indfb-msflip-blt: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@fbcpsrhdr-1p-primscrn-spr-indfb-fullscreen: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@hdr-1p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@hdr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@import-basic: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@invalid-bad-pad: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@linear-max-hw-stride-64bpp-rotate-180-hflip: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@media-rc6-accuracy: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@misplaced-blitter: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@plane-use-after-nonblocking-unbind-fencing: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@pr-primary-mmap-gtt: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@preservation-s3: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@yf-tiled-16bpp-rotate-0: - Statuses : - Exec time: [None] s * igt@kms_flip@2x-flip-vs-panning@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.95] s * igt@kms_flip@2x-flip-vs-panning@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.79] s * igt@kms_flip@2x-flip-vs-panning@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.73] s Known issues ------------ Here are the changes found in IGTPW_15292_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#6230]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@api_intel_bb@crc32.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@device_reset@cold-reset-bound.html - shard-tglu: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@device_reset@cold-reset-bound.html - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-7/igt@device_reset@cold-reset-bound.html - shard-dg2: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][11] ([i915#11078]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@device_reset@cold-reset-bound.html * igt@gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][13] ([i915#9323]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-5/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][14] -> [INCOMPLETE][15] ([i915#13356] / [i915#16348]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-4/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-5/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#14544] / [i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#6335]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@gem_create@create-ext-cpu-access-big.html - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html - shard-dg2: NOTRUN -> [FAIL][20] ([i915#15454]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html - shard-rkl: NOTRUN -> [SKIP][21] ([i915#6335]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: [PASS][22] -> [INCOMPLETE][23] ([i915#13356]) +2 other tests incomplete [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-7/igt@gem_ctx_isolation@preservation-s3.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][24] ([i915#13356]) +1 other test incomplete [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk4/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][26] ([i915#1099]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-snb7/igt@gem_ctx_persistence@processes.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-1/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][29] ([i915#13390]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk2/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4812]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-15/igt@gem_exec_balancer@bonded-false-hang.html - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-8/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@hog: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@parallel-bb-first: - shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#4525]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#4525]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu: NOTRUN -> [SKIP][35] ([i915#4525]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-3/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#6344]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-1/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-15/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +6 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-read.html - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +4 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +5 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +10 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-chain.html - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_fence_thrash@bo-copy: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4860]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_linear_blits@normal: - shard-dg1: [PASS][47] -> [FAIL][48] ([i915#15391]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-17/igt@gem_linear_blits@normal.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@gem_linear_blits@normal.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][49] ([i915#4613]) +5 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-multi: - shard-tglu: NOTRUN -> [SKIP][50] ([i915#4613]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@gem_lmem_swapping@parallel-multi.html - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-1/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-tglu-1: NOTRUN -> [SKIP][53] ([i915#4613]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@gem_lmem_swapping@random-engines.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#284]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@gem_media_vme.html * igt@gem_mmap_gtt@cpuset-big-copy-xy: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@gem_mmap_gtt@cpuset-big-copy-xy.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4077]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@ptrace: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4077]) +6 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@gem_mmap_gtt@ptrace.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4083]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-2/igt@gem_mmap_wc@set-cache-level.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-18/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html - shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][63] ([i915#2658]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk8/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [WARN][64] ([i915#2658]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4270]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@gem_pxp@reject-modify-context-protection-off-3.html - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4270]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-glk11: NOTRUN -> [SKIP][67] +186 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk11/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3282]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-2/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#8428]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-5/igt@gem_render_copy@y-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][70] +520 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk9/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html - shard-dg2: NOTRUN -> [SKIP][71] ([i915#5190] / [i915#8428]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282]) +6 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@gem_set_tiling_vs_pwrite.html * igt@gem_spin_batch@spin-all: - shard-mtlp: [PASS][73] -> [DMESG-WARN][74] ([i915#13562]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-mtlp-3/igt@gem_spin_batch@spin-all.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-7/igt@gem_spin_batch@spin-all.html * igt@gem_userptr_blits@coherency-sync: - shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@gem_userptr_blits@create-destroy-unsync.html - shard-tglu: NOTRUN -> [SKIP][77] ([i915#3297]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3297]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3297]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3281] / [i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@gem_userptr_blits@relocations.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3281] / [i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-17/igt@gem_userptr_blits@relocations.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3281] / [i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@gem_userptr_blits@relocations.html * igt@gem_workarounds@suspend-resume-fd: - shard-glk: NOTRUN -> [INCOMPLETE][84] ([i915#13356] / [i915#14586]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk1/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@bb-large: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-oversize: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#2527]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-17/igt@gen9_exec_parse@bb-oversize.html - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#2856]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@gen9_exec_parse@shadow-peek.html * igt@i915_drm_fdinfo@most-busy-idle-check-all: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#14073]) +6 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-2/igt@i915_drm_fdinfo@most-busy-idle-check-all.html * igt@i915_drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#14073]) +5 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-18/igt@i915_drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#14073]) +7 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@i915_drm_fdinfo@virtual-busy: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#14118]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy.html - shard-dg1: NOTRUN -> [SKIP][94] ([i915#14118]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-17/igt@i915_drm_fdinfo@virtual-busy.html - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#14118]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@i915_drm_fdinfo@virtual-busy.html * igt@i915_fb_tiling@basic-x-tiling: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#13786]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@i915_fb_tiling@basic-x-tiling.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#8399]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#6590]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#11681] / [i915#6621]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-18/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_query@query-topology-unsupported: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#16079]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-5/igt@i915_query@query-topology-unsupported.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#5723]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@i915_query@test-query-geometry-subslices.html - shard-dg1: NOTRUN -> [SKIP][102] ([i915#5723]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@i915_query@test-query-geometry-subslices.html - shard-tglu: NOTRUN -> [SKIP][103] ([i915#5723]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-3/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: [PASS][104] -> [INCOMPLETE][105] ([i915#4817]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@i915_suspend@fence-restore-untiled.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html * igt@intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#7707]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#4212]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-15/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#12454] / [i915#12712]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#12454] / [i915#12712]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][110] ([i915#12761] / [i915#16314]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk3/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][111] ([i915#12761] / [i915#14995] / [i915#16314]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk3/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#9531]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#5286]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#5286]) +7 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#5286]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5286]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-0: - shard-dg2: NOTRUN -> [FAIL][117] ([i915#16308]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-1/igt@kms_big_fb@linear-16bpp-rotate-0.html * igt@kms_big_fb@linear-32bpp-rotate-0: - shard-glk: NOTRUN -> [FAIL][118] ([i915#16308]) +1 other test fail [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk5/igt@kms_big_fb@linear-32bpp-rotate-0.html - shard-tglu: NOTRUN -> [FAIL][119] ([i915#16308]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-5/igt@kms_big_fb@linear-32bpp-rotate-0.html * igt@kms_big_fb@linear-32bpp-rotate-180: - shard-tglu-1: NOTRUN -> [FAIL][120] ([i915#16308]) +1 other test fail [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_big_fb@linear-32bpp-rotate-180.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3638]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][122] ([i915#3638]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-16/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-dg1: NOTRUN -> [FAIL][123] ([i915#16308]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-13/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#3828]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][125] +94 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5190]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-16/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#6187]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#5190]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#12313]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#14098] / [i915#6095]) +48 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#6095]) +19 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-7/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#14544] / [i915#6095]) +5 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#10307] / [i915#6095]) +78 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#6095]) +84 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#12313]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-17/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#6095]) +206 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-glk10: NOTRUN -> [SKIP][139] +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk10/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#6095]) +12 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][141] ([i915#15582] / [i915#16205]) +1 other test incomplete [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#6095]) +29 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#12313]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][145] ([i915#12313]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][146] ([i915#12313]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#12313]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#6095]) +71 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#13781]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][150] +5 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +7 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@kms_chamelium_frames@hdmi-crc-fast.html - shard-rkl: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +9 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +5 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +5 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-4/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +11 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#9979]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#15330] / [i915#3299]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][159] ([i915#15330] / [i915#3299]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#15330] / [i915#3116] / [i915#3299]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][161] ([i915#15330] / [i915#3299]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#15330]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html - shard-dg2: NOTRUN -> [SKIP][163] ([i915#15330]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#15330] / [i915#3116]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#15330] / [i915#3116] / [i915#3299]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#15865]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#15865]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#15865]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@kms_content_protection@type1.html - shard-rkl: NOTRUN -> [SKIP][169] ([i915#15865]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_content_protection@type1.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#15865]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-17/igt@kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#15865]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-1/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#13049]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][173] ([i915#13049] / [i915#14544]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#8814]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-tglu: NOTRUN -> [FAIL][175] ([i915#13566]) +3 other tests fail [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#8814]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][177] ([i915#13566]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#13049]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#3555]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#13046] / [i915#5354]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#9809]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#9833]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][183] ([i915#9723]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-15/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][184] ([i915#9723]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#3555]) +3 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#13749]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-7/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#13748]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-2/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][190] ([i915#9878]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk11/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#16081]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-1/igt@kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#16081]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][193] ([i915#16081]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@kms_feature_discovery@display-4x.html - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#16081]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-1/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#9934]) +5 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@kms_flip@2x-absolute-wf_vblank.html - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3637] / [i915#9934]) +5 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-7/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#3637] / [i915#9934]) +9 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#9934]) +9 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#9934]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#14544] / [i915#9934]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#8381]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][202] ([i915#8381]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#8381]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#9934]) +9 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#3637] / [i915#9934]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-mtlp: [PASS][206] -> [FAIL][207] ([i915#13027]) +1 other test fail [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-mtlp-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#15643]) +4 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#15643]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#15643]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#15643] / [i915#5190]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#15643]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8813]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#8810] / [i915#8813]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/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-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#15643]) +2 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#15643]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#15990] / [i915#8708]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#15991] / [i915#1825]) +14 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][219] ([i915#10056]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk10/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [PASS][220] -> [SKIP][221] ([i915#15989]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt: - shard-tglu-1: NOTRUN -> [SKIP][222] +41 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-fullscreen: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#15991]) +23 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#14544]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#15989] / [i915#4423]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-13/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#5439]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-linear: - shard-rkl: [PASS][227] -> [SKIP][228] ([i915#15989]) +12 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#10055]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-snb: NOTRUN -> [SKIP][230] +180 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html - shard-dg2: NOTRUN -> [SKIP][231] ([i915#15104] / [i915#15990]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#15104] / [i915#15990]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#1825]) +4 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#15990] / [i915#8708]) +8 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#15990]) +16 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#14544] / [i915#15102]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#15989]) +13 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#15102]) +18 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#15102]) +34 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#15989]) +27 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-10/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-blt: - shard-glk: [PASS][242] -> [SKIP][243] +4 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-blt.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#15989]) +5 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html - shard-rkl: NOTRUN -> [SKIP][245] ([i915#15989]) +17 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html - shard-dg1: NOTRUN -> [SKIP][246] ([i915#15989]) +7 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#15989]) +9 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@hdr-2p-rte: - shard-dg1: NOTRUN -> [SKIP][248] +48 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@kms_frontbuffer_tracking@hdr-2p-rte.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#9766]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#15102] / [i915#3023]) +18 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#15102]) +54 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#15102]) +15 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#15990] / [i915#8708]) +7 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#15991] / [i915#5354]) +22 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#15990]) +4 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#15991]) +27 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#15990]) +9 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-13/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][258] +130 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-5/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#15102]) +22 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-pwrite.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#16012] / [i915#3555] / [i915#8228]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#16012]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#16012] / [i915#3555] / [i915#8228]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-7/igt@kms_hdr@bpc-switch-suspend.html - shard-dg2: NOTRUN -> [SKIP][263] ([i915#16012] / [i915#3555] / [i915#8228]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@kms_hdr@bpc-switch-suspend.html - shard-dg1: NOTRUN -> [SKIP][264] ([i915#16012] / [i915#3555] / [i915#8228]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-16/igt@kms_hdr@bpc-switch-suspend.html - shard-snb: NOTRUN -> [FAIL][265] ([i915#16018]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-snb5/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010: - shard-snb: NOTRUN -> [FAIL][266] ([i915#16013]) +1 other test fail [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-snb5/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#16012]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#16012]) +7 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-16/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010.html * igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][269] ([i915#16012]) +3 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@invalid-hdr@pipe-a-dp-3-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#16025]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-10/igt@kms_hdr@invalid-hdr@pipe-a-dp-3-xrgb2101010.html * igt@kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#16011] / [i915#3555] / [i915#8228]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@kms_hdr@static-swap.html - shard-rkl: NOTRUN -> [SKIP][272] ([i915#16011] / [i915#3555] / [i915#8228]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_hdr@static-swap.html - shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#16011] / [i915#3555] / [i915#8228]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_hdr@static-swap.html - shard-dg1: NOTRUN -> [SKIP][274] ([i915#16011] / [i915#3555] / [i915#8228]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-18/igt@kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#16011] / [i915#3555] / [i915#8228]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-2/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-swap@pipe-a-edp-1-xrgb2101010: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#16011]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-2/igt@kms_hdr@static-swap@pipe-a-edp-1-xrgb2101010.html * igt@kms_hdr@static-swap@pipe-a-hdmi-a-1-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#16011]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_hdr@static-swap@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#16011]) +3 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#16011]) +5 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010.html * igt@kms_hdr@static-toggle@pipe-a-hdmi-a-4-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#16011]) +7 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-17/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-4-xrgb2101010.html * igt@kms_joiner@basic-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#15460]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#15460]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-2/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#15458]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#15458]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#14544] / [i915#15458]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-tglu: NOTRUN -> [SKIP][286] ([i915#15638] / [i915#15722]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#15815]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][288] ([i915#15815]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#6301]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-3/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][290] +8 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-5/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: [PASS][291] -> [INCOMPLETE][292] ([i915#12756] / [i915#13476]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2: - shard-rkl: [PASS][293] -> [INCOMPLETE][294] ([i915#13476]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#14712]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_pipe_stress@stress-xrgb8888-xtiled: - shard-glk11: NOTRUN -> [DMESG-WARN][296] ([i915#118]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk11/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-tglu: NOTRUN -> [SKIP][297] ([i915#14712]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-glk: [PASS][298] -> [DMESG-FAIL][299] ([i915#118]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-glk8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#13705]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#15709]) +4 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#15709]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#15608]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#15709]) +2 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#15709]) +2 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html - shard-rkl: NOTRUN -> [SKIP][306] ([i915#15709]) +5 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html - shard-dg1: NOTRUN -> [SKIP][307] ([i915#15709]) +3 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#15608]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#15608]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane_lowres@tiling-4: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#3555]) +5 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#11614] / [i915#3582]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html * igt@kms_plane_multiple@2x-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#13958]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#13958]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-7/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-4: - shard-tglu: NOTRUN -> [SKIP][315] ([i915#14259]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-2/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#15329]) +8 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-dg1: NOTRUN -> [SKIP][317] ([i915#15329] / [i915#3555]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c: - shard-rkl: NOTRUN -> [SKIP][318] ([i915#15329]) +7 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#15329]) +9 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#12343] / [i915#5354]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_pm_backlight@bad-brightness.html - shard-rkl: NOTRUN -> [SKIP][321] ([i915#12343] / [i915#5354]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_pm_backlight@bad-brightness.html - shard-dg1: NOTRUN -> [SKIP][322] ([i915#12343] / [i915#5354]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@kms_pm_backlight@bad-brightness.html - shard-tglu: NOTRUN -> [SKIP][323] ([i915#12343] / [i915#9812]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#12343]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_pm_backlight@brightness-with-dpms.html - shard-rkl: NOTRUN -> [SKIP][325] ([i915#12343]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_pm_backlight@brightness-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][326] ([i915#12343]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_pm_backlight@brightness-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][327] ([i915#12343]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-dg1: NOTRUN -> [SKIP][328] ([i915#15948]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-17/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#3828]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_pm_dc@dc5-retention-flops.html - shard-rkl: NOTRUN -> [SKIP][330] ([i915#3828]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][331] ([i915#3828]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@kms_pm_dc@dc5-retention-flops.html - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#3828]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-7/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-psr: - shard-tglu: NOTRUN -> [SKIP][333] ([i915#15948]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-3/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#15073]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#15073]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][336] -> [SKIP][337] ([i915#15073]) +2 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-dg1: [PASS][338] -> [SKIP][339] ([i915#15073]) +3 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][340] -> [SKIP][341] ([i915#15073]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#15073]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#15073]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][344] ([i915#11520]) +10 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk9/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#11520]) +5 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html - shard-snb: NOTRUN -> [SKIP][346] ([i915#11520]) +3 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-snb7/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][347] ([i915#11520]) +5 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#12316]) +6 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#9808]) +2 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-glk11: NOTRUN -> [SKIP][350] ([i915#11520]) +5 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#11520]) +4 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#11520]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#11520] / [i915#14544]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu: NOTRUN -> [SKIP][354] ([i915#11520]) +10 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#9683]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#9683]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@kms_psr2_su@page_flip-p010.html - shard-rkl: NOTRUN -> [SKIP][357] ([i915#9683]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-2/igt@kms_psr2_su@page_flip-p010.html - shard-dg1: NOTRUN -> [SKIP][358] ([i915#9683]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@kms_psr2_su@page_flip-p010.html - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#4348]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-5/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][360] ([i915#9683]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-basic: - shard-mtlp: NOTRUN -> [SKIP][361] ([i915#9688]) +10 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-3/igt@kms_psr@fbc-pr-basic.html * igt@kms_psr@fbc-pr-sprite-blt: - shard-rkl: NOTRUN -> [SKIP][362] ([i915#1072] / [i915#14544] / [i915#9732]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-blt.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][363] ([i915#9732]) +24 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@kms_psr@pr-dpms.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#1072] / [i915#9732]) +23 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@kms_psr@psr-sprite-plane-onoff.html - shard-dg1: NOTRUN -> [SKIP][365] ([i915#1072] / [i915#9732]) +13 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-15/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#1072] / [i915#9732]) +15 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@kms_psr@psr-suspend.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][367] ([i915#9732]) +9 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu: NOTRUN -> [SKIP][368] ([i915#15949]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk: NOTRUN -> [INCOMPLETE][369] ([i915#15492] / [i915#16184]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk5/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][370] ([i915#5289]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][371] ([i915#5289]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#12755] / [i915#15867]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90.html - shard-mtlp: NOTRUN -> [SKIP][373] ([i915#12755] / [i915#15867]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-4/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-rkl: NOTRUN -> [SKIP][374] ([i915#3555]) +3 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [PASS][375] -> [FAIL][376] ([i915#15106]) +1 other test fail [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-mtlp-2/igt@kms_setmode@basic@pipe-b-edp-1.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-3/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][377] ([i915#3555] / [i915#8809] / [i915#8823]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][378] ([i915#10959]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][379] ([i915#12276]) +3 other tests incomplete [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: NOTRUN -> [SKIP][380] ([i915#9906]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][381] ([i915#3555]) +6 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-8/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - shard-rkl: NOTRUN -> [SKIP][382] ([i915#15243] / [i915#3555]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_vrr@flipline.html * igt@kms_vrr@max-min: - shard-tglu-1: NOTRUN -> [SKIP][383] ([i915#9906]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][384] ([i915#9906]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-8/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf_pmu@render-node-busy-idle: - shard-mtlp: [PASS][385] -> [FAIL][386] ([i915#4349]) +1 other test fail [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6: - shard-tglu: NOTRUN -> [SKIP][387] ([i915#16066]) +9 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-10/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html #### Possible fixes #### * igt@gem_eio@kms: - shard-mtlp: [ABORT][388] ([i915#15511]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-mtlp-5/igt@gem_eio@kms.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-4/igt@gem_eio@kms.html * igt@gem_exec_suspend@basic-s3: - shard-glk: [INCOMPLETE][390] ([i915#13196] / [i915#13356]) -> [PASS][391] +1 other test pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-glk8/igt@gem_exec_suspend@basic-s3.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk5/igt@gem_exec_suspend@basic-s3.html * igt@i915_pm_rps@engine-order: - shard-glk: [FAIL][392] ([i915#14896]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-glk5/igt@i915_pm_rps@engine-order.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk9/igt@i915_pm_rps@engine-order.html * igt@i915_suspend@forcewake: - shard-rkl: [INCOMPLETE][394] ([i915#4817]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@i915_suspend@forcewake.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@i915_suspend@forcewake.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: [INCOMPLETE][396] ([i915#12761]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-2/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@test-cursor: - shard-dg1: [DMESG-WARN][398] ([i915#4423]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-17/igt@kms_async_flips@test-cursor.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_async_flips@test-cursor.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - shard-mtlp: [FAIL][400] ([i915#15733] / [i915#5138]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-1/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-dg2: [ABORT][402] ([i915#15132]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][404] ([i915#13566]) -> [PASS][405] +3 other tests pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: [FAIL][406] ([i915#13566]) -> [PASS][407] +1 other test pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg1: [FAIL][408] ([i915#4767]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-18/igt@kms_fbcon_fbt@fbc-suspend.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-16/igt@kms_fbcon_fbt@fbc-suspend.html - shard-dg2: [FAIL][410] ([i915#4767]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-6/igt@kms_fbcon_fbt@fbc-suspend.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-1/igt@kms_fbcon_fbt@fbc-suspend.html - shard-rkl: [ABORT][412] ([i915#15132]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-1/igt@kms_fbcon_fbt@fbc-suspend.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-dg2: [SKIP][414] ([i915#15989]) -> [PASS][415] +4 other tests pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-1/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-pwrite.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt: - shard-glk: [SKIP][416] -> [PASS][417] +6 other tests pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-glk1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-blt: - shard-rkl: [SKIP][418] ([i915#15989]) -> [PASS][419] +6 other tests pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-blt.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-blt.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [SKIP][420] ([i915#15073]) -> [PASS][421] +1 other test pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: [SKIP][422] ([i915#15073]) -> [PASS][423] +1 other test pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-19/igt@kms_pm_rpm@dpms-lpsp.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][424] ([i915#14544] / [i915#15073]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][426] ([i915#15073]) -> [PASS][427] [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_setmode@basic: - shard-tglu: [FAIL][428] ([i915#15106]) -> [PASS][429] +2 other tests pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-tglu-4/igt@kms_setmode@basic.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-2/igt@kms_setmode@basic.html #### Warnings #### * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: [SKIP][430] ([i915#13008] / [i915#14544]) -> [SKIP][431] ([i915#13008]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_exec_reloc@basic-softpin: - shard-rkl: [SKIP][432] ([i915#14544] / [i915#3281]) -> [SKIP][433] ([i915#3281]) +1 other test skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@gem_exec_reloc@basic-softpin.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-2/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_reloc@basic-write-read-active: - shard-rkl: [SKIP][434] ([i915#3281]) -> [SKIP][435] ([i915#14544] / [i915#3281]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-active.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: [SKIP][436] ([i915#7276]) -> [SKIP][437] ([i915#14544] / [i915#7276]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-1/igt@gem_exec_schedule@semaphore-power.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: [SKIP][438] ([i915#14544] / [i915#4613] / [i915#7582]) -> [SKIP][439] ([i915#4613] / [i915#7582]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@verify-ccs: - shard-rkl: [SKIP][440] ([i915#14544] / [i915#4613]) -> [SKIP][441] ([i915#4613]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-rkl: [SKIP][442] ([i915#4613]) -> [SKIP][443] ([i915#14544] / [i915#4613]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-7/igt@gem_lmem_swapping@verify-random-ccs.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-rkl: [SKIP][444] ([i915#14544] / [i915#3282]) -> [SKIP][445] ([i915#3282]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@gem_partial_pwrite_pread@write-snoop.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_readwrite@read-write: - shard-rkl: [SKIP][446] ([i915#3282]) -> [SKIP][447] ([i915#14544] / [i915#3282]) +2 other tests skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-7/igt@gem_readwrite@read-write.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@gem_readwrite@read-write.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: [SKIP][448] ([i915#8411]) -> [SKIP][449] ([i915#14544] / [i915#8411]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: [SKIP][450] ([i915#14544] / [i915#3297]) -> [SKIP][451] ([i915#3297]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: [SKIP][452] ([i915#14544] / [i915#2527]) -> [SKIP][453] ([i915#2527]) +1 other test skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-secure: - shard-rkl: [SKIP][454] ([i915#2527]) -> [SKIP][455] ([i915#14544] / [i915#2527]) +1 other test skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-5/igt@gen9_exec_parse@bb-secure.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: [SKIP][456] ([i915#15479]) -> [SKIP][457] ([i915#14544] / [i915#15479]) +4 other tests skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-7/igt@i915_module_load@fault-injection@__uc_init.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: [SKIP][458] ([i915#14544] / [i915#8399]) -> [SKIP][459] ([i915#8399]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@i915_pm_freq_api@freq-suspend.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-rkl: [SKIP][460] ([i915#5286]) -> [SKIP][461] ([i915#14544] / [i915#5286]) +1 other test skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-rkl: [SKIP][462] ([i915#14544] / [i915#5286]) -> [SKIP][463] ([i915#5286]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: [SKIP][464] ([i915#3828]) -> [SKIP][465] ([i915#14544] / [i915#3828]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: [SKIP][466] ([i915#3828]) -> [SKIP][467] ([i915#3828] / [i915#4423]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-16/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-13/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][468] ([i915#14544] / [i915#3638]) -> [SKIP][469] ([i915#3638]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-1/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][470] -> [SKIP][471] ([i915#14544]) +18 other tests skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][472] ([i915#14544] / [i915#6095]) -> [SKIP][473] ([i915#6095]) +1 other test skip [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-rkl: [SKIP][474] ([i915#14098] / [i915#6095]) -> [SKIP][475] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][476] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][477] ([i915#14098] / [i915#6095]) +3 other tests skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: [SKIP][478] ([i915#12313] / [i915#14544]) -> [SKIP][479] ([i915#12313]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-rkl: [SKIP][480] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][481] ([i915#11151] / [i915#7828]) +1 other test skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-rkl: [SKIP][482] ([i915#11151] / [i915#7828]) -> [SKIP][483] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-4/igt@kms_chamelium_frames@dp-crc-fast.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_content_protection@atomic-hdcp14: - shard-dg2: [FAIL][484] ([i915#7173]) -> [SKIP][485] ([i915#15865]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-10/igt@kms_content_protection@atomic-hdcp14.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-rkl: [SKIP][486] ([i915#14544] / [i915#15330]) -> [SKIP][487] ([i915#15330]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: [SKIP][488] ([i915#15330] / [i915#3116]) -> [SKIP][489] ([i915#14544] / [i915#15330] / [i915#3116]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-rkl: [SKIP][490] ([i915#15865]) -> [SKIP][491] ([i915#14544] / [i915#15865]) +1 other test skip [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-5/igt@kms_content_protection@legacy.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: [SKIP][492] ([i915#13049]) -> [SKIP][493] ([i915#13049] / [i915#3359]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-rkl: [SKIP][494] ([i915#14544] / [i915#3555]) -> [SKIP][495] ([i915#3555]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: [SKIP][496] ([i915#14544]) -> [SKIP][497] +27 other tests skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: [SKIP][498] ([i915#13748]) -> [SKIP][499] ([i915#13748] / [i915#14544]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@kms_dp_link_training@uhbr-sst.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_feature_discovery@display-3x: - shard-rkl: [SKIP][500] ([i915#16081]) -> [SKIP][501] ([i915#14544] / [i915#16081]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@kms_feature_discovery@display-3x.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-rkl: [SKIP][502] ([i915#9934]) -> [SKIP][503] ([i915#14544] / [i915#9934]) +1 other test skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-7/igt@kms_flip@2x-dpms-vs-vblank-race.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-rkl: [SKIP][504] ([i915#14544] / [i915#9934]) -> [SKIP][505] ([i915#9934]) +3 other tests skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-rkl: [SKIP][506] ([i915#14544] / [i915#15643]) -> [SKIP][507] ([i915#15643]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-rkl: [SKIP][508] ([i915#15643]) -> [SKIP][509] ([i915#14544] / [i915#15643]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][510] ([i915#14544] / [i915#1825]) -> [SKIP][511] ([i915#1825]) +2 other tests skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-dg1: [SKIP][512] -> [SKIP][513] ([i915#4423]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][514] ([i915#15102] / [i915#3023]) -> [SKIP][515] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: [SKIP][516] ([i915#14544] / [i915#5439]) -> [SKIP][517] ([i915#5439]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-msflip-blt: - shard-dg1: [SKIP][518] ([i915#15102]) -> [SKIP][519] ([i915#15102] / [i915#4423]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-msflip-blt.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][520] ([i915#15102]) -> [SKIP][521] ([i915#10433] / [i915#15102]) +3 other tests skip [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt: - shard-rkl: [SKIP][522] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][523] ([i915#15102] / [i915#3023]) +5 other tests skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu: - shard-dg2: [SKIP][524] ([i915#10433] / [i915#15102]) -> [SKIP][525] ([i915#15102]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][526] ([i915#15102]) -> [SKIP][527] ([i915#14544] / [i915#15102]) +5 other tests skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-wc.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-suspend: - shard-rkl: [SKIP][528] ([i915#14544] / [i915#15102]) -> [SKIP][529] ([i915#15102]) +8 other tests skip [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-suspend.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-suspend.html * igt@kms_hdr@invalid-hdr: - shard-dg2: [SKIP][530] ([i915#16012] / [i915#3555] / [i915#8228]) -> [SKIP][531] ([i915#3555] / [i915#8228]) [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-5/igt@kms_hdr@invalid-hdr.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-10/igt@kms_hdr@invalid-hdr.html * igt@kms_panel_fitting@legacy: - shard-rkl: [SKIP][532] ([i915#6301]) -> [SKIP][533] ([i915#14544] / [i915#6301]) [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@kms_panel_fitting@legacy.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_panel_fitting@legacy.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-rkl: [SKIP][534] ([i915#14544] / [i915#15709]) -> [SKIP][535] ([i915#15709]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-dg1: [SKIP][536] ([i915#15709] / [i915#4423]) -> [SKIP][537] ([i915#15709]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-16/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-16/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html - shard-rkl: [SKIP][538] ([i915#15709]) -> [SKIP][539] ([i915#14544] / [i915#15709]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: [SKIP][540] ([i915#3555]) -> [SKIP][541] ([i915#14544] / [i915#3555]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-8/igt@kms_plane_lowres@tiling-yf.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-x: - shard-rkl: [SKIP][542] ([i915#13958] / [i915#14544]) -> [SKIP][543] ([i915#13958]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: [SKIP][544] ([i915#14544] / [i915#15329]) -> [SKIP][545] ([i915#15329]) +3 other tests skip [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: [SKIP][546] ([i915#14544] / [i915#6524]) -> [SKIP][547] ([i915#6524]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][548] ([i915#11520] / [i915#14544]) -> [SKIP][549] ([i915#11520]) +3 other tests skip [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: [SKIP][550] ([i915#9683]) -> [SKIP][551] ([i915#14544] / [i915#9683]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-8/igt@kms_psr2_su@page_flip-nv12.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@psr2-cursor-plane-move: - shard-rkl: [SKIP][552] ([i915#1072] / [i915#9732]) -> [SKIP][553] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@kms_psr@psr2-cursor-plane-move.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_psr@psr2-cursor-plane-move.html * igt@kms_psr@psr2-dpms: - shard-rkl: [SKIP][554] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][555] ([i915#1072] / [i915#9732]) +2 other tests skip [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_psr@psr2-dpms.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@kms_psr@psr2-dpms.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2: [SKIP][556] ([i915#12755] / [i915#15867]) -> [SKIP][557] ([i915#15867]) [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-4/igt@kms_rotation_crc@bad-tiling.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-10/igt@kms_rotation_crc@bad-tiling.html * igt@kms_vrr@flip-suspend: - shard-rkl: [SKIP][558] ([i915#15243] / [i915#3555]) -> [SKIP][559] ([i915#14544] / [i915#15243] / [i915#3555]) [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-4/igt@kms_vrr@flip-suspend.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: [SKIP][560] ([i915#9906]) -> [SKIP][561] ([i915#14544] / [i915#9906]) [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf_pmu@module-unload: - shard-dg2: [ABORT][562] ([i915#13029] / [i915#15778]) -> [ABORT][563] ([i915#15778]) [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-3/igt@perf_pmu@module-unload.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@perf_pmu@module-unload.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14896]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14896 [i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15391 [i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15511]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15511 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011 [i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012 [i915#16013]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16013 [i915#16018]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16018 [i915#16025]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16025 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184 [i915#16205]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16205 [i915#16308]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16308 [i915#16314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16314 [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8947 -> IGTPW_15292 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18613: ab2d36ce7e67d2825cea19ea956947a21e932f70 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15292: 15292 IGT_8947: e322bfd77da04314dd310da9a6cf0562b5751f1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/index.html [-- Attachment #2: Type: text/html, Size: 193516 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.Full: success for tests/intel/kms_pipe_stress: fix plane setup and cursor handling (rev2) 2026-06-02 16:24 [PATCH i-g-t v2 0/3] tests/intel/kms_pipe_stress: fix plane setup and cursor handling Sowmiya S ` (6 preceding siblings ...) 2026-06-04 2:29 ` ✗ i915.CI.Full: " Patchwork @ 2026-06-09 15:51 ` Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2026-06-09 15:51 UTC (permalink / raw) To: S, Sowmiya; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 143532 bytes --] == Series Details == Series: tests/intel/kms_pipe_stress: fix plane setup and cursor handling (rev2) URL : https://patchwork.freedesktop.org/series/167348/ State : success == Summary == CI Bug Log - changes from CI_DRM_18613_full -> IGTPW_15292_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): pig-kbl-iris New tests --------- New tests have been introduced between CI_DRM_18613_full and IGTPW_15292_full: ### New IGT tests (19) ### * igt@gem_spin_batch@bad-rotation-90-4-tiled-dg2-rc-ccs: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@basic-queues-all: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@basics: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@cursora-vs-flipb-toggle: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@fbc-1p-primscrn-cur-indfb-draw-render: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@fbc-1p-primscrn-indfb-msflip-blt: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@fbcpsrhdr-1p-primscrn-spr-indfb-fullscreen: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@hdr-1p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@hdr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@import-basic: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@invalid-bad-pad: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@linear-max-hw-stride-64bpp-rotate-180-hflip: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@media-rc6-accuracy: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@misplaced-blitter: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@plane-use-after-nonblocking-unbind-fencing: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@pr-primary-mmap-gtt: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@preservation-s3: - Statuses : - Exec time: [None] s * igt@gem_spin_batch@yf-tiled-16bpp-rotate-0: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_15292_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][1] ([i915#6230]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@api_intel_bb@crc32.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][2] ([i915#11078]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@device_reset@cold-reset-bound.html - shard-tglu: NOTRUN -> [SKIP][3] ([i915#11078]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@device_reset@cold-reset-bound.html - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#11078]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-7/igt@device_reset@cold-reset-bound.html - shard-dg2: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@device_reset@cold-reset-bound.html * igt@gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#9323]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-5/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][9] -> [INCOMPLETE][10] ([i915#13356] / [i915#16348]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-4/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-5/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#14544] / [i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][13] ([i915#6335]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@gem_create@create-ext-cpu-access-big.html - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#6335]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html - shard-dg2: NOTRUN -> [FAIL][15] ([i915#15454]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html - shard-rkl: NOTRUN -> [SKIP][16] ([i915#6335]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: [PASS][17] -> [INCOMPLETE][18] ([i915#13356]) +2 other tests incomplete [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-7/igt@gem_ctx_isolation@preservation-s3.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][19] ([i915#13356]) +1 other test incomplete [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk4/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][21] ([i915#1099]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-snb7/igt@gem_ctx_persistence@processes.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-1/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-mtlp: [PASS][24] -> [FAIL][25] ([i915#16362]) +2 other tests fail [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-mtlp-4/igt@gem_eio@hibernate.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@gem_eio@hibernate.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][26] ([i915#13390]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk2/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#4812]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-15/igt@gem_exec_balancer@bonded-false-hang.html - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4812]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-8/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@hog: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@parallel-bb-first: - shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#4525]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu: NOTRUN -> [SKIP][32] ([i915#4525]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-3/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#6344]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-1/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-15/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) +6 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-read.html - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#3281]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) +5 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#3281]) +10 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-chain.html - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4537] / [i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s4-devices: - shard-tglu: [PASS][42] -> [FAIL][43] ([i915#16362]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-tglu-5/igt@gem_exec_suspend@basic-s4-devices.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-copy: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4860]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4860]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_linear_blits@normal: - shard-dg1: [PASS][46] -> [FAIL][47] ([i915#15391]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-17/igt@gem_linear_blits@normal.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@gem_linear_blits@normal.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][48] ([i915#4613]) +5 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-multi: - shard-tglu: NOTRUN -> [SKIP][49] ([i915#4613]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@gem_lmem_swapping@parallel-multi.html - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4613]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-1/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-tglu-1: NOTRUN -> [SKIP][52] ([i915#4613]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@gem_lmem_swapping@random-engines.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#284]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@gem_media_vme.html * igt@gem_mmap_gtt@cpuset-big-copy-xy: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4077]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@gem_mmap_gtt@cpuset-big-copy-xy.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4077]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@ptrace: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@gem_mmap_gtt@ptrace.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4083]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-2/igt@gem_mmap_wc@set-cache-level.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4083]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-18/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4083]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html - shard-dg1: NOTRUN -> [SKIP][61] ([i915#3282]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][62] ([i915#2658]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk8/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [WARN][63] ([i915#2658]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@gem_pxp@reject-modify-context-protection-off-3.html - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-glk11: NOTRUN -> [SKIP][66] +186 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk11/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-2/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-5/igt@gem_render_copy@y-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][69] +520 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk9/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html - shard-dg2: NOTRUN -> [SKIP][70] ([i915#5190] / [i915#8428]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3282]) +6 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@gem_set_tiling_vs_pwrite.html * igt@gem_spin_batch@spin-all: - shard-mtlp: [PASS][72] -> [DMESG-WARN][73] ([i915#13562]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-mtlp-3/igt@gem_spin_batch@spin-all.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-7/igt@gem_spin_batch@spin-all.html * igt@gem_userptr_blits@coherency-sync: - shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@gem_userptr_blits@create-destroy-unsync.html - shard-tglu: NOTRUN -> [SKIP][76] ([i915#3297]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3297]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-dg1: NOTRUN -> [SKIP][78] ([i915#3297]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3281] / [i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@gem_userptr_blits@relocations.html - shard-dg1: NOTRUN -> [SKIP][81] ([i915#3281] / [i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-17/igt@gem_userptr_blits@relocations.html - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3281] / [i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@gem_userptr_blits@relocations.html * igt@gem_workarounds@suspend-resume-fd: - shard-glk: NOTRUN -> [INCOMPLETE][83] ([i915#13356] / [i915#14586]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk1/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@bb-large: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-oversize: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#2527]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-17/igt@gen9_exec_parse@bb-oversize.html - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#2856]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#2856]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@gen9_exec_parse@shadow-peek.html * igt@i915_drm_fdinfo@most-busy-idle-check-all: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#14073]) +6 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-2/igt@i915_drm_fdinfo@most-busy-idle-check-all.html * igt@i915_drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#14073]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-18/igt@i915_drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#14073]) +7 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@i915_drm_fdinfo@virtual-busy: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#14118]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy.html - shard-dg1: NOTRUN -> [SKIP][93] ([i915#14118]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-17/igt@i915_drm_fdinfo@virtual-busy.html - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#14118]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@i915_drm_fdinfo@virtual-busy.html * igt@i915_fb_tiling@basic-x-tiling: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#13786]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@i915_fb_tiling@basic-x-tiling.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#8399]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#6590]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#11681] / [i915#6621]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-18/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_query@query-topology-unsupported: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#16079]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-5/igt@i915_query@query-topology-unsupported.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#5723]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@i915_query@test-query-geometry-subslices.html - shard-dg1: NOTRUN -> [SKIP][101] ([i915#5723]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@i915_query@test-query-geometry-subslices.html - shard-tglu: NOTRUN -> [SKIP][102] ([i915#5723]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-3/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: [PASS][103] -> [INCOMPLETE][104] ([i915#4817]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@i915_suspend@fence-restore-untiled.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html * igt@intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#7707]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#4212]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-15/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#12454] / [i915#12712]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#12454] / [i915#12712]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][109] ([i915#12761] / [i915#16314]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk3/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][110] ([i915#12761] / [i915#14995] / [i915#16314]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk3/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#9531]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#5286]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#5286]) +7 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#5286]) +5 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5286]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-0: - shard-dg2: NOTRUN -> [FAIL][116] ([i915#16308]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-1/igt@kms_big_fb@linear-16bpp-rotate-0.html * igt@kms_big_fb@linear-32bpp-rotate-0: - shard-glk: NOTRUN -> [FAIL][117] ([i915#16308]) +1 other test fail [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk5/igt@kms_big_fb@linear-32bpp-rotate-0.html - shard-tglu: NOTRUN -> [FAIL][118] ([i915#16308]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-5/igt@kms_big_fb@linear-32bpp-rotate-0.html * igt@kms_big_fb@linear-32bpp-rotate-180: - shard-tglu-1: NOTRUN -> [FAIL][119] ([i915#16308]) +1 other test fail [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_big_fb@linear-32bpp-rotate-180.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#3638]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][121] ([i915#3638]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-16/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-dg1: NOTRUN -> [FAIL][122] ([i915#16308]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-13/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#3828]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][124] +94 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5190]) +4 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-16/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6187]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#5190]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#12313]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#14098] / [i915#6095]) +48 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#6095]) +19 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-7/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#14544] / [i915#6095]) +5 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#10307] / [i915#6095]) +78 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#6095]) +84 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#12313]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-17/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#6095]) +206 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-glk10: NOTRUN -> [SKIP][138] +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk10/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#6095]) +12 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][140] ([i915#15582] / [i915#16205]) +1 other test incomplete [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#6095]) +29 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#12313]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][144] ([i915#12313]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][145] ([i915#12313]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#12313]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#6095]) +71 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#13781]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][149] +5 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +7 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@kms_chamelium_frames@hdmi-crc-fast.html - shard-rkl: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +9 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +5 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +5 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-4/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +11 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#9979]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#15330] / [i915#3299]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][158] ([i915#15330] / [i915#3299]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#15330] / [i915#3116] / [i915#3299]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][160] ([i915#15330] / [i915#3299]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#15330]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html - shard-dg2: NOTRUN -> [SKIP][162] ([i915#15330]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#15330] / [i915#3116]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#15330] / [i915#3116] / [i915#3299]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#15865]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#15865]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#15865]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@kms_content_protection@type1.html - shard-rkl: NOTRUN -> [SKIP][168] ([i915#15865]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_content_protection@type1.html - shard-dg1: NOTRUN -> [SKIP][169] ([i915#15865]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-17/igt@kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#15865]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-1/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#13049]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][172] ([i915#13049] / [i915#14544]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#8814]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-tglu: NOTRUN -> [FAIL][174] ([i915#13566]) +3 other tests fail [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#8814]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][176] ([i915#13566]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#13049]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#3555]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#13046] / [i915#5354]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#9809]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#9833]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][182] ([i915#9723]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-15/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][183] ([i915#9723]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555]) +3 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#13749]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-7/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#13748]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-2/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][189] ([i915#9878]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk11/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#16081]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-1/igt@kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][191] ([i915#16081]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][192] ([i915#16081]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@kms_feature_discovery@display-4x.html - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#16081]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-1/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#9934]) +5 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@kms_flip@2x-absolute-wf_vblank.html - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3637] / [i915#9934]) +5 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-7/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#3637] / [i915#9934]) +9 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#9934]) +9 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#9934]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#14544] / [i915#9934]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#8381]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][201] ([i915#8381]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8381]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#9934]) +9 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#3637] / [i915#9934]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-mtlp: [PASS][205] -> [FAIL][206] ([i915#13027]) +1 other test fail [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-mtlp-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#15643]) +4 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#15643]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#15643]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#15643] / [i915#5190]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#15643]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8813]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#8810] / [i915#8813]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/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-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#15643]) +2 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html - shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#15643]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#15990] / [i915#8708]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#15991] / [i915#1825]) +14 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][218] ([i915#10056]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk10/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [PASS][219] -> [SKIP][220] ([i915#15989]) +3 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt: - shard-tglu-1: NOTRUN -> [SKIP][221] +41 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-fullscreen: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#15991]) +23 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#14544]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#15989] / [i915#4423]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-13/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#5439]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-linear: - shard-rkl: [PASS][226] -> [SKIP][227] ([i915#15989]) +12 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#10055]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-snb: NOTRUN -> [SKIP][229] +180 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html - shard-dg2: NOTRUN -> [SKIP][230] ([i915#15104] / [i915#15990]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][231] ([i915#15104] / [i915#15990]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#1825]) +4 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#15990] / [i915#8708]) +8 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#15990]) +16 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#14544] / [i915#15102]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#15989]) +13 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#15102]) +18 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#15102]) +34 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#15989]) +27 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-10/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-blt: - shard-glk: [PASS][241] -> [SKIP][242] +4 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-blt.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#15989]) +5 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html - shard-rkl: NOTRUN -> [SKIP][244] ([i915#15989]) +17 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html - shard-dg1: NOTRUN -> [SKIP][245] ([i915#15989]) +7 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#15989]) +9 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@hdr-2p-rte: - shard-dg1: NOTRUN -> [SKIP][247] +48 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@kms_frontbuffer_tracking@hdr-2p-rte.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#9766]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#15102] / [i915#3023]) +18 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#15102]) +54 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#15102]) +15 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#15990] / [i915#8708]) +7 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#15991] / [i915#5354]) +22 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#15990]) +4 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#15991]) +27 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#15990]) +9 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-13/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][257] +130 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-5/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#15102]) +22 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-pwrite.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#16012] / [i915#3555] / [i915#8228]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#16012]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#16012] / [i915#3555] / [i915#8228]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-7/igt@kms_hdr@bpc-switch-suspend.html - shard-dg2: NOTRUN -> [SKIP][262] ([i915#16012] / [i915#3555] / [i915#8228]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@kms_hdr@bpc-switch-suspend.html - shard-dg1: NOTRUN -> [SKIP][263] ([i915#16012] / [i915#3555] / [i915#8228]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-16/igt@kms_hdr@bpc-switch-suspend.html - shard-snb: NOTRUN -> [FAIL][264] ([i915#16018]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-snb5/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010: - shard-snb: NOTRUN -> [FAIL][265] ([i915#16013]) +1 other test fail [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-snb5/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#16012]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#16012]) +7 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-16/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010.html * igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#16012]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@invalid-hdr@pipe-a-dp-3-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#16025]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-10/igt@kms_hdr@invalid-hdr@pipe-a-dp-3-xrgb2101010.html * igt@kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#16011] / [i915#3555] / [i915#8228]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@kms_hdr@static-swap.html - shard-rkl: NOTRUN -> [SKIP][271] ([i915#16011] / [i915#3555] / [i915#8228]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_hdr@static-swap.html - shard-tglu-1: NOTRUN -> [SKIP][272] ([i915#16011] / [i915#3555] / [i915#8228]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_hdr@static-swap.html - shard-dg1: NOTRUN -> [SKIP][273] ([i915#16011] / [i915#3555] / [i915#8228]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-18/igt@kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#16011] / [i915#3555] / [i915#8228]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-2/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-swap@pipe-a-edp-1-xrgb2101010: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#16011]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-2/igt@kms_hdr@static-swap@pipe-a-edp-1-xrgb2101010.html * igt@kms_hdr@static-swap@pipe-a-hdmi-a-1-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#16011]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_hdr@static-swap@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#16011]) +3 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#16011]) +5 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010.html * igt@kms_hdr@static-toggle@pipe-a-hdmi-a-4-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#16011]) +7 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-17/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-4-xrgb2101010.html * igt@kms_joiner@basic-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#15460]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#15460]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-2/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#15458]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#15458]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#14544] / [i915#15458]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#15638] / [i915#15722]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#15815]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][287] ([i915#15815]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][288] ([i915#6301]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-3/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][289] +8 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-5/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: [PASS][290] -> [INCOMPLETE][291] ([i915#12756] / [i915#13476]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2: - shard-rkl: [PASS][292] -> [INCOMPLETE][293] ([i915#13476]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#14712]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_pipe_stress@stress-xrgb8888-xtiled: - shard-glk11: NOTRUN -> [DMESG-WARN][295] ([i915#118]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk11/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#14712]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-glk: [PASS][297] -> [DMESG-FAIL][298] ([i915#118]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-glk8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#13705]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#15709]) +4 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#15709]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#15608]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#15709]) +2 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-b-plane-2: - shard-glk11: NOTRUN -> [FAIL][304] ([i915#16382]) +3 other tests fail [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk11/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-b-plane-2.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#15709]) +2 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html - shard-rkl: NOTRUN -> [SKIP][306] ([i915#15709]) +5 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html - shard-dg1: NOTRUN -> [SKIP][307] ([i915#15709]) +3 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#15608]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#15608]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane_lowres@tiling-4: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#3555]) +5 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#11614] / [i915#3582]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html * igt@kms_plane_multiple@2x-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#13958]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#13958]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-7/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-4: - shard-tglu: NOTRUN -> [SKIP][315] ([i915#14259]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-2/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#15329]) +8 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-dg1: NOTRUN -> [SKIP][317] ([i915#15329] / [i915#3555]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c: - shard-rkl: NOTRUN -> [SKIP][318] ([i915#15329]) +7 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#15329]) +9 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#12343] / [i915#5354]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_pm_backlight@bad-brightness.html - shard-rkl: NOTRUN -> [SKIP][321] ([i915#12343] / [i915#5354]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_pm_backlight@bad-brightness.html - shard-dg1: NOTRUN -> [SKIP][322] ([i915#12343] / [i915#5354]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@kms_pm_backlight@bad-brightness.html - shard-tglu: NOTRUN -> [SKIP][323] ([i915#12343] / [i915#9812]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#12343]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_pm_backlight@brightness-with-dpms.html - shard-rkl: NOTRUN -> [SKIP][325] ([i915#12343]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_pm_backlight@brightness-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][326] ([i915#12343]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_pm_backlight@brightness-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][327] ([i915#12343]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-9/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-dg1: NOTRUN -> [SKIP][328] ([i915#15948]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-17/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#3828]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_pm_dc@dc5-retention-flops.html - shard-rkl: NOTRUN -> [SKIP][330] ([i915#3828]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][331] ([i915#3828]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@kms_pm_dc@dc5-retention-flops.html - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#3828]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-7/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-psr: - shard-tglu: NOTRUN -> [SKIP][333] ([i915#15948]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-3/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#15073]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#15073]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][336] -> [SKIP][337] ([i915#15073]) +2 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-dg1: [PASS][338] -> [SKIP][339] ([i915#15073]) +3 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][340] -> [SKIP][341] ([i915#15073]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#15073]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#15073]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][344] ([i915#11520]) +10 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk9/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#11520]) +5 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html - shard-snb: NOTRUN -> [SKIP][346] ([i915#11520]) +3 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-snb7/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][347] ([i915#11520]) +5 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#12316]) +6 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#9808]) +2 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-glk11: NOTRUN -> [SKIP][350] ([i915#11520]) +5 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#11520]) +4 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#11520]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#11520] / [i915#14544]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu: NOTRUN -> [SKIP][354] ([i915#11520]) +10 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#9683]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#9683]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@kms_psr2_su@page_flip-p010.html - shard-rkl: NOTRUN -> [SKIP][357] ([i915#9683]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-2/igt@kms_psr2_su@page_flip-p010.html - shard-dg1: NOTRUN -> [SKIP][358] ([i915#9683]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-19/igt@kms_psr2_su@page_flip-p010.html - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#4348]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-5/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][360] ([i915#9683]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-basic: - shard-mtlp: NOTRUN -> [SKIP][361] ([i915#9688]) +10 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-3/igt@kms_psr@fbc-pr-basic.html * igt@kms_psr@fbc-pr-sprite-blt: - shard-rkl: NOTRUN -> [SKIP][362] ([i915#1072] / [i915#14544] / [i915#9732]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-blt.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][363] ([i915#9732]) +24 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@kms_psr@pr-dpms.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#1072] / [i915#9732]) +23 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@kms_psr@psr-sprite-plane-onoff.html - shard-dg1: NOTRUN -> [SKIP][365] ([i915#1072] / [i915#9732]) +13 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-15/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#1072] / [i915#9732]) +15 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-7/igt@kms_psr@psr-suspend.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][367] ([i915#9732]) +9 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu: NOTRUN -> [SKIP][368] ([i915#15949]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk: NOTRUN -> [INCOMPLETE][369] ([i915#15492] / [i915#16184]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk5/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][370] ([i915#5289]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][371] ([i915#5289]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#12755] / [i915#15867]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90.html - shard-mtlp: NOTRUN -> [SKIP][373] ([i915#12755] / [i915#15867]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-4/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-rkl: NOTRUN -> [SKIP][374] ([i915#3555]) +3 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [PASS][375] -> [FAIL][376] ([i915#15106]) +1 other test fail [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-mtlp-2/igt@kms_setmode@basic@pipe-b-edp-1.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-3/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][377] ([i915#3555] / [i915#8809] / [i915#8823]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][378] ([i915#10959]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][379] ([i915#12276]) +3 other tests incomplete [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: NOTRUN -> [SKIP][380] ([i915#9906]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][381] ([i915#3555]) +6 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-8/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - shard-rkl: NOTRUN -> [SKIP][382] ([i915#15243] / [i915#3555]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_vrr@flipline.html * igt@kms_vrr@max-min: - shard-tglu-1: NOTRUN -> [SKIP][383] ([i915#9906]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-1/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][384] ([i915#9906]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-8/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf_pmu@render-node-busy-idle: - shard-mtlp: [PASS][385] -> [FAIL][386] ([i915#4349]) +1 other test fail [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6: - shard-tglu: NOTRUN -> [SKIP][387] ([i915#16066]) +9 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-10/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html #### Possible fixes #### * igt@gem_eio@kms: - shard-mtlp: [ABORT][388] ([i915#15511]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-mtlp-5/igt@gem_eio@kms.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-4/igt@gem_eio@kms.html * igt@gem_exec_suspend@basic-s3: - shard-glk: [INCOMPLETE][390] ([i915#13196] / [i915#13356]) -> [PASS][391] +1 other test pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-glk8/igt@gem_exec_suspend@basic-s3.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk5/igt@gem_exec_suspend@basic-s3.html * igt@i915_pm_rps@engine-order: - shard-glk: [FAIL][392] ([i915#14896]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-glk5/igt@i915_pm_rps@engine-order.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk9/igt@i915_pm_rps@engine-order.html * igt@i915_suspend@forcewake: - shard-rkl: [INCOMPLETE][394] ([i915#4817]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@i915_suspend@forcewake.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@i915_suspend@forcewake.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: [INCOMPLETE][396] ([i915#12761]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-2/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@test-cursor: - shard-dg1: [DMESG-WARN][398] ([i915#4423]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-17/igt@kms_async_flips@test-cursor.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_async_flips@test-cursor.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - shard-mtlp: [FAIL][400] ([i915#15733] / [i915#5138]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-mtlp-1/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-dg2: [ABORT][402] ([i915#15132]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][404] ([i915#13566]) -> [PASS][405] +3 other tests pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: [FAIL][406] ([i915#13566]) -> [PASS][407] +1 other test pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg1: [FAIL][408] ([i915#4767]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-18/igt@kms_fbcon_fbt@fbc-suspend.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-16/igt@kms_fbcon_fbt@fbc-suspend.html - shard-dg2: [FAIL][410] ([i915#4767]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-6/igt@kms_fbcon_fbt@fbc-suspend.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-1/igt@kms_fbcon_fbt@fbc-suspend.html - shard-rkl: [ABORT][412] ([i915#15132]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-1/igt@kms_fbcon_fbt@fbc-suspend.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-dg2: [SKIP][414] ([i915#15989]) -> [PASS][415] +4 other tests pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-1/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-pwrite.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt: - shard-glk: [SKIP][416] -> [PASS][417] +6 other tests pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-glk1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-blt: - shard-rkl: [SKIP][418] ([i915#15989]) -> [PASS][419] +6 other tests pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-blt.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-blt.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [SKIP][420] ([i915#15073]) -> [PASS][421] +1 other test pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: [SKIP][422] ([i915#15073]) -> [PASS][423] +1 other test pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-19/igt@kms_pm_rpm@dpms-lpsp.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][424] ([i915#14544] / [i915#15073]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][426] ([i915#15073]) -> [PASS][427] [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_setmode@basic: - shard-tglu: [FAIL][428] ([i915#15106]) -> [PASS][429] +2 other tests pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-tglu-4/igt@kms_setmode@basic.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-tglu-2/igt@kms_setmode@basic.html #### Warnings #### * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: [SKIP][430] ([i915#13008] / [i915#14544]) -> [SKIP][431] ([i915#13008]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_exec_reloc@basic-softpin: - shard-rkl: [SKIP][432] ([i915#14544] / [i915#3281]) -> [SKIP][433] ([i915#3281]) +1 other test skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@gem_exec_reloc@basic-softpin.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-2/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_reloc@basic-write-read-active: - shard-rkl: [SKIP][434] ([i915#3281]) -> [SKIP][435] ([i915#14544] / [i915#3281]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-active.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: [SKIP][436] ([i915#7276]) -> [SKIP][437] ([i915#14544] / [i915#7276]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-1/igt@gem_exec_schedule@semaphore-power.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: [SKIP][438] ([i915#14544] / [i915#4613] / [i915#7582]) -> [SKIP][439] ([i915#4613] / [i915#7582]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@verify-ccs: - shard-rkl: [SKIP][440] ([i915#14544] / [i915#4613]) -> [SKIP][441] ([i915#4613]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-rkl: [SKIP][442] ([i915#4613]) -> [SKIP][443] ([i915#14544] / [i915#4613]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-7/igt@gem_lmem_swapping@verify-random-ccs.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-rkl: [SKIP][444] ([i915#14544] / [i915#3282]) -> [SKIP][445] ([i915#3282]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@gem_partial_pwrite_pread@write-snoop.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_readwrite@read-write: - shard-rkl: [SKIP][446] ([i915#3282]) -> [SKIP][447] ([i915#14544] / [i915#3282]) +2 other tests skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-7/igt@gem_readwrite@read-write.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@gem_readwrite@read-write.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: [SKIP][448] ([i915#8411]) -> [SKIP][449] ([i915#14544] / [i915#8411]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: [SKIP][450] ([i915#14544] / [i915#3297]) -> [SKIP][451] ([i915#3297]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: [SKIP][452] ([i915#14544] / [i915#2527]) -> [SKIP][453] ([i915#2527]) +1 other test skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-secure: - shard-rkl: [SKIP][454] ([i915#2527]) -> [SKIP][455] ([i915#14544] / [i915#2527]) +1 other test skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-5/igt@gen9_exec_parse@bb-secure.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: [SKIP][456] ([i915#15479]) -> [SKIP][457] ([i915#14544] / [i915#15479]) +4 other tests skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-7/igt@i915_module_load@fault-injection@__uc_init.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: [SKIP][458] ([i915#14544] / [i915#8399]) -> [SKIP][459] ([i915#8399]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@i915_pm_freq_api@freq-suspend.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-rkl: [SKIP][460] ([i915#5286]) -> [SKIP][461] ([i915#14544] / [i915#5286]) +1 other test skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-rkl: [SKIP][462] ([i915#14544] / [i915#5286]) -> [SKIP][463] ([i915#5286]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: [SKIP][464] ([i915#3828]) -> [SKIP][465] ([i915#14544] / [i915#3828]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: [SKIP][466] ([i915#3828]) -> [SKIP][467] ([i915#3828] / [i915#4423]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-16/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-13/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][468] ([i915#14544] / [i915#3638]) -> [SKIP][469] ([i915#3638]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-1/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][470] -> [SKIP][471] ([i915#14544]) +18 other tests skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][472] ([i915#14544] / [i915#6095]) -> [SKIP][473] ([i915#6095]) +1 other test skip [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-rkl: [SKIP][474] ([i915#14098] / [i915#6095]) -> [SKIP][475] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][476] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][477] ([i915#14098] / [i915#6095]) +3 other tests skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: [SKIP][478] ([i915#12313] / [i915#14544]) -> [SKIP][479] ([i915#12313]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-rkl: [SKIP][480] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][481] ([i915#11151] / [i915#7828]) +1 other test skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-rkl: [SKIP][482] ([i915#11151] / [i915#7828]) -> [SKIP][483] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-4/igt@kms_chamelium_frames@dp-crc-fast.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_content_protection@atomic-hdcp14: - shard-dg2: [FAIL][484] ([i915#7173]) -> [SKIP][485] ([i915#15865]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-10/igt@kms_content_protection@atomic-hdcp14.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-rkl: [SKIP][486] ([i915#14544] / [i915#15330]) -> [SKIP][487] ([i915#15330]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: [SKIP][488] ([i915#15330] / [i915#3116]) -> [SKIP][489] ([i915#14544] / [i915#15330] / [i915#3116]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-rkl: [SKIP][490] ([i915#15865]) -> [SKIP][491] ([i915#14544] / [i915#15865]) +1 other test skip [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-5/igt@kms_content_protection@legacy.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: [SKIP][492] ([i915#13049]) -> [SKIP][493] ([i915#13049] / [i915#3359]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-rkl: [SKIP][494] ([i915#14544] / [i915#3555]) -> [SKIP][495] ([i915#3555]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: [SKIP][496] ([i915#14544]) -> [SKIP][497] +27 other tests skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: [SKIP][498] ([i915#13748]) -> [SKIP][499] ([i915#13748] / [i915#14544]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@kms_dp_link_training@uhbr-sst.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_feature_discovery@display-3x: - shard-rkl: [SKIP][500] ([i915#16081]) -> [SKIP][501] ([i915#14544] / [i915#16081]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@kms_feature_discovery@display-3x.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-rkl: [SKIP][502] ([i915#9934]) -> [SKIP][503] ([i915#14544] / [i915#9934]) +1 other test skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-7/igt@kms_flip@2x-dpms-vs-vblank-race.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-rkl: [SKIP][504] ([i915#14544] / [i915#9934]) -> [SKIP][505] ([i915#9934]) +3 other tests skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-rkl: [SKIP][506] ([i915#14544] / [i915#15643]) -> [SKIP][507] ([i915#15643]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-rkl: [SKIP][508] ([i915#15643]) -> [SKIP][509] ([i915#14544] / [i915#15643]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][510] ([i915#14544] / [i915#1825]) -> [SKIP][511] ([i915#1825]) +2 other tests skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-dg1: [SKIP][512] -> [SKIP][513] ([i915#4423]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][514] ([i915#15102] / [i915#3023]) -> [SKIP][515] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: [SKIP][516] ([i915#14544] / [i915#5439]) -> [SKIP][517] ([i915#5439]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-msflip-blt: - shard-dg1: [SKIP][518] ([i915#15102]) -> [SKIP][519] ([i915#15102] / [i915#4423]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-msflip-blt.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][520] ([i915#15102]) -> [SKIP][521] ([i915#10433] / [i915#15102]) +3 other tests skip [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt: - shard-rkl: [SKIP][522] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][523] ([i915#15102] / [i915#3023]) +5 other tests skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu: - shard-dg2: [SKIP][524] ([i915#10433] / [i915#15102]) -> [SKIP][525] ([i915#15102]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][526] ([i915#15102]) -> [SKIP][527] ([i915#14544] / [i915#15102]) +5 other tests skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-wc.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-suspend: - shard-rkl: [SKIP][528] ([i915#14544] / [i915#15102]) -> [SKIP][529] ([i915#15102]) +8 other tests skip [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-suspend.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-suspend.html * igt@kms_hdr@invalid-hdr: - shard-dg2: [SKIP][530] ([i915#16012] / [i915#3555] / [i915#8228]) -> [SKIP][531] ([i915#3555] / [i915#8228]) [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-5/igt@kms_hdr@invalid-hdr.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-10/igt@kms_hdr@invalid-hdr.html * igt@kms_panel_fitting@legacy: - shard-rkl: [SKIP][532] ([i915#6301]) -> [SKIP][533] ([i915#14544] / [i915#6301]) [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@kms_panel_fitting@legacy.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_panel_fitting@legacy.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-rkl: [SKIP][534] ([i915#14544] / [i915#15709]) -> [SKIP][535] ([i915#15709]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-dg1: [SKIP][536] ([i915#15709] / [i915#4423]) -> [SKIP][537] ([i915#15709]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg1-16/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg1-16/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html - shard-rkl: [SKIP][538] ([i915#15709]) -> [SKIP][539] ([i915#14544] / [i915#15709]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: [SKIP][540] ([i915#3555]) -> [SKIP][541] ([i915#14544] / [i915#3555]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-8/igt@kms_plane_lowres@tiling-yf.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-x: - shard-rkl: [SKIP][542] ([i915#13958] / [i915#14544]) -> [SKIP][543] ([i915#13958]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: [SKIP][544] ([i915#14544] / [i915#15329]) -> [SKIP][545] ([i915#15329]) +3 other tests skip [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: [SKIP][546] ([i915#14544] / [i915#6524]) -> [SKIP][547] ([i915#6524]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][548] ([i915#11520] / [i915#14544]) -> [SKIP][549] ([i915#11520]) +3 other tests skip [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-5/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: [SKIP][550] ([i915#9683]) -> [SKIP][551] ([i915#14544] / [i915#9683]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-8/igt@kms_psr2_su@page_flip-nv12.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@psr2-cursor-plane-move: - shard-rkl: [SKIP][552] ([i915#1072] / [i915#9732]) -> [SKIP][553] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@kms_psr@psr2-cursor-plane-move.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_psr@psr2-cursor-plane-move.html * igt@kms_psr@psr2-dpms: - shard-rkl: [SKIP][554] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][555] ([i915#1072] / [i915#9732]) +2 other tests skip [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-6/igt@kms_psr@psr2-dpms.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-8/igt@kms_psr@psr2-dpms.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2: [SKIP][556] ([i915#12755] / [i915#15867]) -> [SKIP][557] ([i915#15867]) [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-4/igt@kms_rotation_crc@bad-tiling.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-10/igt@kms_rotation_crc@bad-tiling.html * igt@kms_vrr@flip-suspend: - shard-rkl: [SKIP][558] ([i915#15243] / [i915#3555]) -> [SKIP][559] ([i915#14544] / [i915#15243] / [i915#3555]) [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-4/igt@kms_vrr@flip-suspend.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: [SKIP][560] ([i915#9906]) -> [SKIP][561] ([i915#14544] / [i915#9906]) [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf_pmu@module-unload: - shard-dg2: [ABORT][562] ([i915#13029] / [i915#15778]) -> [ABORT][563] ([i915#15778]) [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18613/shard-dg2-3/igt@perf_pmu@module-unload.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/shard-dg2-3/igt@perf_pmu@module-unload.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14896]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14896 [i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15391 [i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15511]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15511 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011 [i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012 [i915#16013]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16013 [i915#16018]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16018 [i915#16025]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16025 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184 [i915#16205]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16205 [i915#16308]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16308 [i915#16314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16314 [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348 [i915#16362]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16362 [i915#16382]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16382 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8947 -> IGTPW_15292 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18613: ab2d36ce7e67d2825cea19ea956947a21e932f70 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15292: 15292 IGT_8947: e322bfd77da04314dd310da9a6cf0562b5751f1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15292/index.html [-- Attachment #2: Type: text/html, Size: 192821 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2026-06-29 19:29 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-06-02 16:24 [PATCH i-g-t v2 0/3] tests/intel/kms_pipe_stress: fix plane setup and cursor handling Sowmiya S 2026-06-02 16:24 ` [PATCH i-g-t v2 1/3] tests/intel/kms_pipe_stress: fix inverted condition skipping plane setup Sowmiya S 2026-06-02 16:24 ` [PATCH i-g-t v2 2/3] tests/intel/kms_pipe_stress: fix plane source crop and separate cursor loop Sowmiya S 2026-06-29 19:28 ` Juha-Pekka Heikkilä 2026-06-02 16:24 ` [PATCH i-g-t v2 3/3] tests/intel/kms_pipe_stress: use ARGB8888/LINEAR for cursor framebuffer Sowmiya S 2026-06-04 7:22 ` Borah, Chaitanya Kumar 2026-06-03 6:10 ` ✓ Xe.CI.BAT: success for tests/intel/kms_pipe_stress: fix plane setup and cursor handling (rev2) Patchwork 2026-06-03 6:23 ` ✓ i915.CI.BAT: " Patchwork 2026-06-03 17:46 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-06-04 2:29 ` ✗ i915.CI.Full: " Patchwork 2026-06-09 15:51 ` ✓ i915.CI.Full: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox