* [PATCH i-g-t] tests/kms_color: Enable ctm-limited-range subtest
@ 2025-02-14 13:00 Swati Sharma
0 siblings, 0 replies; 13+ messages in thread
From: Swati Sharma @ 2025-02-14 13:00 UTC (permalink / raw)
To: igt-dev; +Cc: ville.syrjala, Mohammed Thasleem, Swati Sharma
From: Mohammed Thasleem <mohammed.thasleem@intet.com>
This tests is currently disabled since CRC computed on Intel
hardware seems to include data on the lower bits, this is
preventing us to CRC checks.
Let's try to enable it back and check behavior on newer Intel
platforms.
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/kms_color.c | 166 ++++++++++++++++++++++++++--------------------
1 file changed, 93 insertions(+), 73 deletions(-)
diff --git a/tests/kms_color.c b/tests/kms_color.c
index 4b71d3dd3..c3b285b4e 100644
--- a/tests/kms_color.c
+++ b/tests/kms_color.c
@@ -58,6 +58,7 @@
* @0-75: for 0.75 transparency
* @blue-to-red: from blue to red
* @green-to-red: from green to red
+ * @limited-range: with identity matrix
* @max: for maximum transparency
* @negative: for negative transparency
* @red-to-blue: from red to blue
@@ -623,107 +624,97 @@ static bool test_pipe_ctm(data_t *data,
* This test is currently disabled as the CRC computed on Intel hardware seems
* to include data on the lower bits, this is preventing us to CRC checks.
*/
-#if 0
-static void test_pipe_limited_range_ctm(data_t *data,
+static bool test_pipe_limited_range_ctm(data_t *data,
igt_plane_t *primary)
{
double limited_result = 235.0 / 255.0;
- static const color_t red_green_blue_limited[] = {
+ color_t red_green_blue_limited[] = {
{ limited_result, 0.0, 0.0 },
{ 0.0, limited_result, 0.0 },
- { 0.0, 0.0, limited_result },
+ { 0.0, 0.0, limited_result }
};
- static const color_t red_green_blue_full[] = {
+ color_t red_green_blue_full[] = {
{ 0.5, 0.0, 0.0 },
{ 0.0, 0.5, 0.0 },
- { 0.0, 0.0, 0.5 },
- };
- static const double ctm[] = {
- 1.0, 0.0, 0.0,
- 0.0, 1.0, 0.0,
- 0.0, 0.0, 1.0,
+ { 0.0, 0.0, 0.5 }
};
+ double ctm[] = { 1.0, 0.0, 0.0,
+ 0.0, 1.0, 0.0,
+ 0.0, 0.0, 1.0 };
gamma_lut_t *degamma_linear, *gamma_linear;
- igt_output_t *output;
- bool has_broadcast_rgb_output = false;
+ igt_output_t *output = data->output;
+ drmModeModeInfo *mode = data->mode;
+ struct igt_fb fb_modeset, fb;
+ int fb_id, fb_modeset_id;
+ igt_crc_t crc_full, crc_limited;
igt_display_t *display = &data->display;
+ bool ret = false;
+
+ igt_require(igt_pipe_obj_has_prop(primary->pipe, IGT_CRTC_CTM));
degamma_linear = generate_table(data->degamma_lut_size, 1.0);
gamma_linear = generate_table(data->gamma_lut_size, 1.0);
- for_each_valid_output_on_pipe(&data->display, primary->pipe->pipe, output) {
- drmModeModeInfo *mode;
- struct igt_fb fb_modeset, fb;
- igt_crc_t crc_full, crc_limited;
- int fb_id, fb_modeset_id;
-
- if (!igt_output_has_prop(output, IGT_CONNECTOR_BROADCAST_RGB))
- continue;
-
- has_broadcast_rgb_output = true;
+ igt_output_set_pipe(output, primary->pipe->pipe);
- igt_output_set_pipe(output, primary->pipe->pipe);
- mode = igt_output_get_mode(output);
+ /* Create a framebuffer at the size of the output. */
+ fb_id = igt_create_fb(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR,
+ &fb);
+ igt_assert(fb_id);
- /* Create a framebuffer at the size of the output. */
- fb_id = igt_create_fb(data->drm_fd,
+ fb_modeset_id = igt_create_fb(data->drm_fd,
mode->hdisplay,
mode->vdisplay,
DRM_FORMAT_XRGB8888,
DRM_FORMAT_MOD_LINEAR,
- &fb);
- igt_assert(fb_id);
-
- fb_modeset_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR,
- &fb_modeset);
- igt_assert(fb_modeset_id);
- igt_plane_set_fb(primary, &fb_modeset);
+ &fb_modeset);
+ igt_assert(fb_modeset_id);
+ igt_plane_set_fb(primary, &fb_modeset);
- set_degamma(data, primary->pipe, degamma_linear);
- set_gamma(data, primary->pipe, gamma_linear);
- set_ctm(primary->pipe, ctm);
-
- igt_output_set_prop_value(output, IGT_CONNECTOR_BROADCAST_RGB, BROADCAST_RGB_FULL);
- paint_rectangles(data, mode, red_green_blue_limited, &fb);
- igt_plane_set_fb(primary, &fb);
- igt_display_commit(&data->display);
- igt_wait_for_vblank(data->drm_fd,
- display->pipes[primary->pipe->pipe].crtc_offset);
- igt_pipe_crc_collect_crc(data->pipe_crc, &crc_full);
-
- /* Set the output into limited range. */
- igt_output_set_prop_value(output, IGT_CONNECTOR_BROADCAST_RGB, BROADCAST_RGB_16_235);
- paint_rectangles(data, mode, red_green_blue_full, &fb);
- igt_plane_set_fb(primary, &fb);
- igt_display_commit(&data->display);
- igt_wait_for_vblank(data->drm_fd,
- display->pipes[primary->pipe->pipe].crtc_offset);
- igt_pipe_crc_collect_crc(data->pipe_crc, &crc_limited);
-
- /* And reset.. */
- igt_output_set_prop_value(output, IGT_CONNECTOR_BROADCAST_RGB, BROADCAST_RGB_FULL);
- igt_plane_set_fb(primary, NULL);
- igt_output_set_pipe(output, PIPE_NONE);
-
- /* Verify that the CRC of the software computed output is
- * equal to the CRC of the CTM matrix transformation output.
- */
- igt_assert_crc_equal(&crc_full, &crc_limited);
+ set_degamma(data, primary->pipe, degamma_linear);
+ set_gamma(data, primary->pipe, gamma_linear);
+ set_ctm(primary->pipe, ctm);
- igt_remove_fb(data->drm_fd, &fb);
- igt_remove_fb(data->drm_fd, &fb_modeset);
- }
+ igt_output_set_prop_value(output,
+ IGT_CONNECTOR_BROADCAST_RGB,
+ BROADCAST_RGB_FULL);
+ paint_rectangles(data, mode, red_green_blue_limited, &fb);
+ igt_plane_set_fb(primary, &fb);
+ igt_display_commit(&data->display);
+ igt_wait_for_vblank(data->drm_fd,
+ display->pipes[primary->pipe->pipe].crtc_offset);
+ igt_pipe_crc_collect_crc(data->pipe_crc, &crc_full);
+
+ /* Set the output into limited range. */
+ igt_output_set_prop_value(output,
+ IGT_CONNECTOR_BROADCAST_RGB,
+ BROADCAST_RGB_16_235);
+ paint_rectangles(data, mode, red_green_blue_full, &fb);
+ igt_plane_set_fb(primary, &fb);
+ igt_display_commit(&data->display);
+ igt_wait_for_vblank(data->drm_fd,
+ display->pipes[primary->pipe->pipe].crtc_offset);
+ igt_pipe_crc_collect_crc(data->pipe_crc, &crc_limited);
+
+ /* And reset.. */
+ igt_output_set_prop_value(output,
+ IGT_CONNECTOR_BROADCAST_RGB,
+ BROADCAST_RGB_FULL);
+ igt_plane_set_fb(primary, NULL);
+ igt_output_set_pipe(output, PIPE_NONE);
+ igt_display_commit(&data->display);
+
+ ret = igt_skip_crc_compare || igt_check_crc_equal(&crc_full, &crc_limited);
free_lut(gamma_linear);
free_lut(degamma_linear);
- igt_require(has_broadcast_rgb_output);
+ return ret;
}
-#endif
static void
prep_pipe(data_t *data, enum pipe p)
@@ -1000,6 +991,25 @@ run_invalid_tests_for_pipe(data_t *data)
}
}
+static void
+run_limited_range_ctm_test_for_pipe(data_t *data, enum pipe p,
+ bool (*test_t)(data_t*, igt_plane_t*))
+{
+ test_setup(data, p);
+
+ igt_require(igt_output_has_prop(data->output, IGT_CONNECTOR_BROADCAST_RGB));
+
+ data->color_depth = 8;
+ data->drm_format = DRM_FORMAT_XRGB8888;
+ data->mode = igt_output_get_mode(data->output);
+
+ igt_require(pipe_output_combo_valid(data, p));
+
+ igt_assert(test_t(data, data->primary));
+
+ test_cleanup(data);
+}
+
static void
run_tests_for_pipe(data_t *data)
{
@@ -1156,6 +1166,16 @@ run_tests_for_pipe(data_t *data)
}
}
+ igt_describe("Compare after applying ctm matrix & identity matrix");
+ igt_subtest_with_dynamic("ctm-limited-range") {
+ for_each_pipe_with_valid_output(&data->display, pipe, data->output) {
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe),
+ igt_output_name(data->output))
+ run_limited_range_ctm_test_for_pipe(data, pipe,
+ test_pipe_limited_range_ctm);
+ }
+ }
+
igt_fixture
igt_require(data->display.is_atomic);
--
2.25.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t] tests/kms_color: Enable ctm-limited-range subtest
@ 2025-02-14 16:10 Swati Sharma
2025-02-14 17:30 ` Ville Syrjälä
` (4 more replies)
0 siblings, 5 replies; 13+ messages in thread
From: Swati Sharma @ 2025-02-14 16:10 UTC (permalink / raw)
To: igt-dev; +Cc: ville.syrjala, Swati Sharma
This tests is currently disabled since CRC computed on Intel
hardware seems to include data on the lower bits, this is
preventing us to CRC checks.
Let's try to enable it back and check behavior on newer Intel
platforms.
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/kms_color.c | 166 ++++++++++++++++++++++++++--------------------
1 file changed, 93 insertions(+), 73 deletions(-)
diff --git a/tests/kms_color.c b/tests/kms_color.c
index 4b71d3dd3..c3b285b4e 100644
--- a/tests/kms_color.c
+++ b/tests/kms_color.c
@@ -58,6 +58,7 @@
* @0-75: for 0.75 transparency
* @blue-to-red: from blue to red
* @green-to-red: from green to red
+ * @limited-range: with identity matrix
* @max: for maximum transparency
* @negative: for negative transparency
* @red-to-blue: from red to blue
@@ -623,107 +624,97 @@ static bool test_pipe_ctm(data_t *data,
* This test is currently disabled as the CRC computed on Intel hardware seems
* to include data on the lower bits, this is preventing us to CRC checks.
*/
-#if 0
-static void test_pipe_limited_range_ctm(data_t *data,
+static bool test_pipe_limited_range_ctm(data_t *data,
igt_plane_t *primary)
{
double limited_result = 235.0 / 255.0;
- static const color_t red_green_blue_limited[] = {
+ color_t red_green_blue_limited[] = {
{ limited_result, 0.0, 0.0 },
{ 0.0, limited_result, 0.0 },
- { 0.0, 0.0, limited_result },
+ { 0.0, 0.0, limited_result }
};
- static const color_t red_green_blue_full[] = {
+ color_t red_green_blue_full[] = {
{ 0.5, 0.0, 0.0 },
{ 0.0, 0.5, 0.0 },
- { 0.0, 0.0, 0.5 },
- };
- static const double ctm[] = {
- 1.0, 0.0, 0.0,
- 0.0, 1.0, 0.0,
- 0.0, 0.0, 1.0,
+ { 0.0, 0.0, 0.5 }
};
+ double ctm[] = { 1.0, 0.0, 0.0,
+ 0.0, 1.0, 0.0,
+ 0.0, 0.0, 1.0 };
gamma_lut_t *degamma_linear, *gamma_linear;
- igt_output_t *output;
- bool has_broadcast_rgb_output = false;
+ igt_output_t *output = data->output;
+ drmModeModeInfo *mode = data->mode;
+ struct igt_fb fb_modeset, fb;
+ int fb_id, fb_modeset_id;
+ igt_crc_t crc_full, crc_limited;
igt_display_t *display = &data->display;
+ bool ret = false;
+
+ igt_require(igt_pipe_obj_has_prop(primary->pipe, IGT_CRTC_CTM));
degamma_linear = generate_table(data->degamma_lut_size, 1.0);
gamma_linear = generate_table(data->gamma_lut_size, 1.0);
- for_each_valid_output_on_pipe(&data->display, primary->pipe->pipe, output) {
- drmModeModeInfo *mode;
- struct igt_fb fb_modeset, fb;
- igt_crc_t crc_full, crc_limited;
- int fb_id, fb_modeset_id;
-
- if (!igt_output_has_prop(output, IGT_CONNECTOR_BROADCAST_RGB))
- continue;
-
- has_broadcast_rgb_output = true;
+ igt_output_set_pipe(output, primary->pipe->pipe);
- igt_output_set_pipe(output, primary->pipe->pipe);
- mode = igt_output_get_mode(output);
+ /* Create a framebuffer at the size of the output. */
+ fb_id = igt_create_fb(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR,
+ &fb);
+ igt_assert(fb_id);
- /* Create a framebuffer at the size of the output. */
- fb_id = igt_create_fb(data->drm_fd,
+ fb_modeset_id = igt_create_fb(data->drm_fd,
mode->hdisplay,
mode->vdisplay,
DRM_FORMAT_XRGB8888,
DRM_FORMAT_MOD_LINEAR,
- &fb);
- igt_assert(fb_id);
-
- fb_modeset_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR,
- &fb_modeset);
- igt_assert(fb_modeset_id);
- igt_plane_set_fb(primary, &fb_modeset);
+ &fb_modeset);
+ igt_assert(fb_modeset_id);
+ igt_plane_set_fb(primary, &fb_modeset);
- set_degamma(data, primary->pipe, degamma_linear);
- set_gamma(data, primary->pipe, gamma_linear);
- set_ctm(primary->pipe, ctm);
-
- igt_output_set_prop_value(output, IGT_CONNECTOR_BROADCAST_RGB, BROADCAST_RGB_FULL);
- paint_rectangles(data, mode, red_green_blue_limited, &fb);
- igt_plane_set_fb(primary, &fb);
- igt_display_commit(&data->display);
- igt_wait_for_vblank(data->drm_fd,
- display->pipes[primary->pipe->pipe].crtc_offset);
- igt_pipe_crc_collect_crc(data->pipe_crc, &crc_full);
-
- /* Set the output into limited range. */
- igt_output_set_prop_value(output, IGT_CONNECTOR_BROADCAST_RGB, BROADCAST_RGB_16_235);
- paint_rectangles(data, mode, red_green_blue_full, &fb);
- igt_plane_set_fb(primary, &fb);
- igt_display_commit(&data->display);
- igt_wait_for_vblank(data->drm_fd,
- display->pipes[primary->pipe->pipe].crtc_offset);
- igt_pipe_crc_collect_crc(data->pipe_crc, &crc_limited);
-
- /* And reset.. */
- igt_output_set_prop_value(output, IGT_CONNECTOR_BROADCAST_RGB, BROADCAST_RGB_FULL);
- igt_plane_set_fb(primary, NULL);
- igt_output_set_pipe(output, PIPE_NONE);
-
- /* Verify that the CRC of the software computed output is
- * equal to the CRC of the CTM matrix transformation output.
- */
- igt_assert_crc_equal(&crc_full, &crc_limited);
+ set_degamma(data, primary->pipe, degamma_linear);
+ set_gamma(data, primary->pipe, gamma_linear);
+ set_ctm(primary->pipe, ctm);
- igt_remove_fb(data->drm_fd, &fb);
- igt_remove_fb(data->drm_fd, &fb_modeset);
- }
+ igt_output_set_prop_value(output,
+ IGT_CONNECTOR_BROADCAST_RGB,
+ BROADCAST_RGB_FULL);
+ paint_rectangles(data, mode, red_green_blue_limited, &fb);
+ igt_plane_set_fb(primary, &fb);
+ igt_display_commit(&data->display);
+ igt_wait_for_vblank(data->drm_fd,
+ display->pipes[primary->pipe->pipe].crtc_offset);
+ igt_pipe_crc_collect_crc(data->pipe_crc, &crc_full);
+
+ /* Set the output into limited range. */
+ igt_output_set_prop_value(output,
+ IGT_CONNECTOR_BROADCAST_RGB,
+ BROADCAST_RGB_16_235);
+ paint_rectangles(data, mode, red_green_blue_full, &fb);
+ igt_plane_set_fb(primary, &fb);
+ igt_display_commit(&data->display);
+ igt_wait_for_vblank(data->drm_fd,
+ display->pipes[primary->pipe->pipe].crtc_offset);
+ igt_pipe_crc_collect_crc(data->pipe_crc, &crc_limited);
+
+ /* And reset.. */
+ igt_output_set_prop_value(output,
+ IGT_CONNECTOR_BROADCAST_RGB,
+ BROADCAST_RGB_FULL);
+ igt_plane_set_fb(primary, NULL);
+ igt_output_set_pipe(output, PIPE_NONE);
+ igt_display_commit(&data->display);
+
+ ret = igt_skip_crc_compare || igt_check_crc_equal(&crc_full, &crc_limited);
free_lut(gamma_linear);
free_lut(degamma_linear);
- igt_require(has_broadcast_rgb_output);
+ return ret;
}
-#endif
static void
prep_pipe(data_t *data, enum pipe p)
@@ -1000,6 +991,25 @@ run_invalid_tests_for_pipe(data_t *data)
}
}
+static void
+run_limited_range_ctm_test_for_pipe(data_t *data, enum pipe p,
+ bool (*test_t)(data_t*, igt_plane_t*))
+{
+ test_setup(data, p);
+
+ igt_require(igt_output_has_prop(data->output, IGT_CONNECTOR_BROADCAST_RGB));
+
+ data->color_depth = 8;
+ data->drm_format = DRM_FORMAT_XRGB8888;
+ data->mode = igt_output_get_mode(data->output);
+
+ igt_require(pipe_output_combo_valid(data, p));
+
+ igt_assert(test_t(data, data->primary));
+
+ test_cleanup(data);
+}
+
static void
run_tests_for_pipe(data_t *data)
{
@@ -1156,6 +1166,16 @@ run_tests_for_pipe(data_t *data)
}
}
+ igt_describe("Compare after applying ctm matrix & identity matrix");
+ igt_subtest_with_dynamic("ctm-limited-range") {
+ for_each_pipe_with_valid_output(&data->display, pipe, data->output) {
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe),
+ igt_output_name(data->output))
+ run_limited_range_ctm_test_for_pipe(data, pipe,
+ test_pipe_limited_range_ctm);
+ }
+ }
+
igt_fixture
igt_require(data->display.is_atomic);
--
2.25.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t] tests/kms_color: Enable ctm-limited-range subtest
2025-02-14 16:10 [PATCH i-g-t] tests/kms_color: Enable ctm-limited-range subtest Swati Sharma
@ 2025-02-14 17:30 ` Ville Syrjälä
2025-02-14 18:26 ` Sharma, Swati2
2025-02-14 22:18 ` ✓ i915.CI.BAT: success for tests/kms_color: Enable ctm-limited-range subtest (rev2) Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 13+ messages in thread
From: Ville Syrjälä @ 2025-02-14 17:30 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
On Fri, Feb 14, 2025 at 09:40:11PM +0530, Swati Sharma wrote:
> This tests is currently disabled since CRC computed on Intel
> hardware seems to include data on the lower bits, this is
> preventing us to CRC checks.
>
> Let's try to enable it back and check behavior on newer Intel
> platforms.
>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> ---
> tests/kms_color.c | 166 ++++++++++++++++++++++++++--------------------
> 1 file changed, 93 insertions(+), 73 deletions(-)
>
> diff --git a/tests/kms_color.c b/tests/kms_color.c
> index 4b71d3dd3..c3b285b4e 100644
> --- a/tests/kms_color.c
> +++ b/tests/kms_color.c
> @@ -58,6 +58,7 @@
> * @0-75: for 0.75 transparency
> * @blue-to-red: from blue to red
> * @green-to-red: from green to red
> + * @limited-range: with identity matrix
> * @max: for maximum transparency
> * @negative: for negative transparency
> * @red-to-blue: from red to blue
> @@ -623,107 +624,97 @@ static bool test_pipe_ctm(data_t *data,
> * This test is currently disabled as the CRC computed on Intel hardware seems
> * to include data on the lower bits, this is preventing us to CRC checks.
> */
> -#if 0
> -static void test_pipe_limited_range_ctm(data_t *data,
> +static bool test_pipe_limited_range_ctm(data_t *data,
> igt_plane_t *primary)
> {
> double limited_result = 235.0 / 255.0;
> - static const color_t red_green_blue_limited[] = {
> + color_t red_green_blue_limited[] = {
> { limited_result, 0.0, 0.0 },
> { 0.0, limited_result, 0.0 },
> - { 0.0, 0.0, limited_result },
> + { 0.0, 0.0, limited_result }
> };
This whole thing is fundementally broken. We can't generate
limited range output without using the CSC post offsets,
which are not exposed via the current CTM uapi.
> - static const color_t red_green_blue_full[] = {
> + color_t red_green_blue_full[] = {
> { 0.5, 0.0, 0.0 },
> { 0.0, 0.5, 0.0 },
> - { 0.0, 0.0, 0.5 },
> - };
> - static const double ctm[] = {
> - 1.0, 0.0, 0.0,
> - 0.0, 1.0, 0.0,
> - 0.0, 0.0, 1.0,
> + { 0.0, 0.0, 0.5 }
> };
> + double ctm[] = { 1.0, 0.0, 0.0,
> + 0.0, 1.0, 0.0,
> + 0.0, 0.0, 1.0 };
> gamma_lut_t *degamma_linear, *gamma_linear;
> - igt_output_t *output;
> - bool has_broadcast_rgb_output = false;
> + igt_output_t *output = data->output;
> + drmModeModeInfo *mode = data->mode;
> + struct igt_fb fb_modeset, fb;
> + int fb_id, fb_modeset_id;
> + igt_crc_t crc_full, crc_limited;
> igt_display_t *display = &data->display;
> + bool ret = false;
> +
> + igt_require(igt_pipe_obj_has_prop(primary->pipe, IGT_CRTC_CTM));
>
> degamma_linear = generate_table(data->degamma_lut_size, 1.0);
> gamma_linear = generate_table(data->gamma_lut_size, 1.0);
>
> - for_each_valid_output_on_pipe(&data->display, primary->pipe->pipe, output) {
> - drmModeModeInfo *mode;
> - struct igt_fb fb_modeset, fb;
> - igt_crc_t crc_full, crc_limited;
> - int fb_id, fb_modeset_id;
> -
> - if (!igt_output_has_prop(output, IGT_CONNECTOR_BROADCAST_RGB))
> - continue;
> -
> - has_broadcast_rgb_output = true;
> + igt_output_set_pipe(output, primary->pipe->pipe);
>
> - igt_output_set_pipe(output, primary->pipe->pipe);
> - mode = igt_output_get_mode(output);
> + /* Create a framebuffer at the size of the output. */
> + fb_id = igt_create_fb(data->drm_fd,
> + mode->hdisplay,
> + mode->vdisplay,
> + DRM_FORMAT_XRGB8888,
> + DRM_FORMAT_MOD_LINEAR,
> + &fb);
> + igt_assert(fb_id);
>
> - /* Create a framebuffer at the size of the output. */
> - fb_id = igt_create_fb(data->drm_fd,
> + fb_modeset_id = igt_create_fb(data->drm_fd,
> mode->hdisplay,
> mode->vdisplay,
> DRM_FORMAT_XRGB8888,
> DRM_FORMAT_MOD_LINEAR,
> - &fb);
> - igt_assert(fb_id);
> -
> - fb_modeset_id = igt_create_fb(data->drm_fd,
> - mode->hdisplay,
> - mode->vdisplay,
> - DRM_FORMAT_XRGB8888,
> - DRM_FORMAT_MOD_LINEAR,
> - &fb_modeset);
> - igt_assert(fb_modeset_id);
> - igt_plane_set_fb(primary, &fb_modeset);
> + &fb_modeset);
> + igt_assert(fb_modeset_id);
> + igt_plane_set_fb(primary, &fb_modeset);
>
> - set_degamma(data, primary->pipe, degamma_linear);
> - set_gamma(data, primary->pipe, gamma_linear);
> - set_ctm(primary->pipe, ctm);
> -
> - igt_output_set_prop_value(output, IGT_CONNECTOR_BROADCAST_RGB, BROADCAST_RGB_FULL);
> - paint_rectangles(data, mode, red_green_blue_limited, &fb);
> - igt_plane_set_fb(primary, &fb);
> - igt_display_commit(&data->display);
> - igt_wait_for_vblank(data->drm_fd,
> - display->pipes[primary->pipe->pipe].crtc_offset);
> - igt_pipe_crc_collect_crc(data->pipe_crc, &crc_full);
> -
> - /* Set the output into limited range. */
> - igt_output_set_prop_value(output, IGT_CONNECTOR_BROADCAST_RGB, BROADCAST_RGB_16_235);
> - paint_rectangles(data, mode, red_green_blue_full, &fb);
> - igt_plane_set_fb(primary, &fb);
> - igt_display_commit(&data->display);
> - igt_wait_for_vblank(data->drm_fd,
> - display->pipes[primary->pipe->pipe].crtc_offset);
> - igt_pipe_crc_collect_crc(data->pipe_crc, &crc_limited);
> -
> - /* And reset.. */
> - igt_output_set_prop_value(output, IGT_CONNECTOR_BROADCAST_RGB, BROADCAST_RGB_FULL);
> - igt_plane_set_fb(primary, NULL);
> - igt_output_set_pipe(output, PIPE_NONE);
> -
> - /* Verify that the CRC of the software computed output is
> - * equal to the CRC of the CTM matrix transformation output.
> - */
> - igt_assert_crc_equal(&crc_full, &crc_limited);
> + set_degamma(data, primary->pipe, degamma_linear);
> + set_gamma(data, primary->pipe, gamma_linear);
> + set_ctm(primary->pipe, ctm);
>
> - igt_remove_fb(data->drm_fd, &fb);
> - igt_remove_fb(data->drm_fd, &fb_modeset);
> - }
> + igt_output_set_prop_value(output,
> + IGT_CONNECTOR_BROADCAST_RGB,
> + BROADCAST_RGB_FULL);
> + paint_rectangles(data, mode, red_green_blue_limited, &fb);
> + igt_plane_set_fb(primary, &fb);
> + igt_display_commit(&data->display);
> + igt_wait_for_vblank(data->drm_fd,
> + display->pipes[primary->pipe->pipe].crtc_offset);
> + igt_pipe_crc_collect_crc(data->pipe_crc, &crc_full);
> +
> + /* Set the output into limited range. */
> + igt_output_set_prop_value(output,
> + IGT_CONNECTOR_BROADCAST_RGB,
> + BROADCAST_RGB_16_235);
> + paint_rectangles(data, mode, red_green_blue_full, &fb);
> + igt_plane_set_fb(primary, &fb);
> + igt_display_commit(&data->display);
> + igt_wait_for_vblank(data->drm_fd,
> + display->pipes[primary->pipe->pipe].crtc_offset);
> + igt_pipe_crc_collect_crc(data->pipe_crc, &crc_limited);
> +
> + /* And reset.. */
> + igt_output_set_prop_value(output,
> + IGT_CONNECTOR_BROADCAST_RGB,
> + BROADCAST_RGB_FULL);
> + igt_plane_set_fb(primary, NULL);
> + igt_output_set_pipe(output, PIPE_NONE);
> + igt_display_commit(&data->display);
> +
> + ret = igt_skip_crc_compare || igt_check_crc_equal(&crc_full, &crc_limited);
>
> free_lut(gamma_linear);
> free_lut(degamma_linear);
>
> - igt_require(has_broadcast_rgb_output);
> + return ret;
> }
> -#endif
>
> static void
> prep_pipe(data_t *data, enum pipe p)
> @@ -1000,6 +991,25 @@ run_invalid_tests_for_pipe(data_t *data)
> }
> }
>
> +static void
> +run_limited_range_ctm_test_for_pipe(data_t *data, enum pipe p,
> + bool (*test_t)(data_t*, igt_plane_t*))
> +{
> + test_setup(data, p);
> +
> + igt_require(igt_output_has_prop(data->output, IGT_CONNECTOR_BROADCAST_RGB));
> +
> + data->color_depth = 8;
> + data->drm_format = DRM_FORMAT_XRGB8888;
> + data->mode = igt_output_get_mode(data->output);
> +
> + igt_require(pipe_output_combo_valid(data, p));
> +
> + igt_assert(test_t(data, data->primary));
> +
> + test_cleanup(data);
> +}
> +
> static void
> run_tests_for_pipe(data_t *data)
> {
> @@ -1156,6 +1166,16 @@ run_tests_for_pipe(data_t *data)
> }
> }
>
> + igt_describe("Compare after applying ctm matrix & identity matrix");
> + igt_subtest_with_dynamic("ctm-limited-range") {
> + for_each_pipe_with_valid_output(&data->display, pipe, data->output) {
> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe),
> + igt_output_name(data->output))
> + run_limited_range_ctm_test_for_pipe(data, pipe,
> + test_pipe_limited_range_ctm);
> + }
> + }
> +
> igt_fixture
> igt_require(data->display.is_atomic);
>
> --
> 2.25.1
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t] tests/kms_color: Enable ctm-limited-range subtest
2025-02-14 17:30 ` Ville Syrjälä
@ 2025-02-14 18:26 ` Sharma, Swati2
2025-02-14 21:04 ` Ville Syrjälä
0 siblings, 1 reply; 13+ messages in thread
From: Sharma, Swati2 @ 2025-02-14 18:26 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: igt-dev
Hi Ville,
On 14-02-2025 11:00 pm, Ville Syrjälä wrote:
> On Fri, Feb 14, 2025 at 09:40:11PM +0530, Swati Sharma wrote:
>> This tests is currently disabled since CRC computed on Intel
>> hardware seems to include data on the lower bits, this is
>> preventing us to CRC checks.
>>
>> Let's try to enable it back and check behavior on newer Intel
>> platforms.
>>
>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>> ---
>> tests/kms_color.c | 166 ++++++++++++++++++++++++++--------------------
>> 1 file changed, 93 insertions(+), 73 deletions(-)
>>
>> diff --git a/tests/kms_color.c b/tests/kms_color.c
>> index 4b71d3dd3..c3b285b4e 100644
>> --- a/tests/kms_color.c
>> +++ b/tests/kms_color.c
>> @@ -58,6 +58,7 @@
>> * @0-75: for 0.75 transparency
>> * @blue-to-red: from blue to red
>> * @green-to-red: from green to red
>> + * @limited-range: with identity matrix
>> * @max: for maximum transparency
>> * @negative: for negative transparency
>> * @red-to-blue: from red to blue
>> @@ -623,107 +624,97 @@ static bool test_pipe_ctm(data_t *data,
>> * This test is currently disabled as the CRC computed on Intel hardware seems
>> * to include data on the lower bits, this is preventing us to CRC checks.
>> */
>> -#if 0
>> -static void test_pipe_limited_range_ctm(data_t *data,
>> +static bool test_pipe_limited_range_ctm(data_t *data,
>> igt_plane_t *primary)
>> {
>> double limited_result = 235.0 / 255.0;
>> - static const color_t red_green_blue_limited[] = {
>> + color_t red_green_blue_limited[] = {
>> { limited_result, 0.0, 0.0 },
>> { 0.0, limited_result, 0.0 },
>> - { 0.0, 0.0, limited_result },
>> + { 0.0, 0.0, limited_result }
>> };
> This whole thing is fundementally broken. We can't generate
> limited range output without using the CSC post offsets,
> which are not exposed via the current CTM uapi.
We do have its equivalent test in kms_color_chamelium
and it seems its passing
https://gfx-ci.igk.intel.com/cibuglog-ng/results/all?query_key=af49bc8e4e7d1c69ce04f9a1196c167456e8344a
Is it wrong?
>
>> - static const color_t red_green_blue_full[] = {
>> + color_t red_green_blue_full[] = {
>> { 0.5, 0.0, 0.0 },
>> { 0.0, 0.5, 0.0 },
>> - { 0.0, 0.0, 0.5 },
>> - };
>> - static const double ctm[] = {
>> - 1.0, 0.0, 0.0,
>> - 0.0, 1.0, 0.0,
>> - 0.0, 0.0, 1.0,
>> + { 0.0, 0.0, 0.5 }
>> };
>> + double ctm[] = { 1.0, 0.0, 0.0,
>> + 0.0, 1.0, 0.0,
>> + 0.0, 0.0, 1.0 };
>> gamma_lut_t *degamma_linear, *gamma_linear;
>> - igt_output_t *output;
>> - bool has_broadcast_rgb_output = false;
>> + igt_output_t *output = data->output;
>> + drmModeModeInfo *mode = data->mode;
>> + struct igt_fb fb_modeset, fb;
>> + int fb_id, fb_modeset_id;
>> + igt_crc_t crc_full, crc_limited;
>> igt_display_t *display = &data->display;
>> + bool ret = false;
>> +
>> + igt_require(igt_pipe_obj_has_prop(primary->pipe, IGT_CRTC_CTM));
>>
>> degamma_linear = generate_table(data->degamma_lut_size, 1.0);
>> gamma_linear = generate_table(data->gamma_lut_size, 1.0);
>>
>> - for_each_valid_output_on_pipe(&data->display, primary->pipe->pipe, output) {
>> - drmModeModeInfo *mode;
>> - struct igt_fb fb_modeset, fb;
>> - igt_crc_t crc_full, crc_limited;
>> - int fb_id, fb_modeset_id;
>> -
>> - if (!igt_output_has_prop(output, IGT_CONNECTOR_BROADCAST_RGB))
>> - continue;
>> -
>> - has_broadcast_rgb_output = true;
>> + igt_output_set_pipe(output, primary->pipe->pipe);
>>
>> - igt_output_set_pipe(output, primary->pipe->pipe);
>> - mode = igt_output_get_mode(output);
>> + /* Create a framebuffer at the size of the output. */
>> + fb_id = igt_create_fb(data->drm_fd,
>> + mode->hdisplay,
>> + mode->vdisplay,
>> + DRM_FORMAT_XRGB8888,
>> + DRM_FORMAT_MOD_LINEAR,
>> + &fb);
>> + igt_assert(fb_id);
>>
>> - /* Create a framebuffer at the size of the output. */
>> - fb_id = igt_create_fb(data->drm_fd,
>> + fb_modeset_id = igt_create_fb(data->drm_fd,
>> mode->hdisplay,
>> mode->vdisplay,
>> DRM_FORMAT_XRGB8888,
>> DRM_FORMAT_MOD_LINEAR,
>> - &fb);
>> - igt_assert(fb_id);
>> -
>> - fb_modeset_id = igt_create_fb(data->drm_fd,
>> - mode->hdisplay,
>> - mode->vdisplay,
>> - DRM_FORMAT_XRGB8888,
>> - DRM_FORMAT_MOD_LINEAR,
>> - &fb_modeset);
>> - igt_assert(fb_modeset_id);
>> - igt_plane_set_fb(primary, &fb_modeset);
>> + &fb_modeset);
>> + igt_assert(fb_modeset_id);
>> + igt_plane_set_fb(primary, &fb_modeset);
>>
>> - set_degamma(data, primary->pipe, degamma_linear);
>> - set_gamma(data, primary->pipe, gamma_linear);
>> - set_ctm(primary->pipe, ctm);
>> -
>> - igt_output_set_prop_value(output, IGT_CONNECTOR_BROADCAST_RGB, BROADCAST_RGB_FULL);
>> - paint_rectangles(data, mode, red_green_blue_limited, &fb);
>> - igt_plane_set_fb(primary, &fb);
>> - igt_display_commit(&data->display);
>> - igt_wait_for_vblank(data->drm_fd,
>> - display->pipes[primary->pipe->pipe].crtc_offset);
>> - igt_pipe_crc_collect_crc(data->pipe_crc, &crc_full);
>> -
>> - /* Set the output into limited range. */
>> - igt_output_set_prop_value(output, IGT_CONNECTOR_BROADCAST_RGB, BROADCAST_RGB_16_235);
>> - paint_rectangles(data, mode, red_green_blue_full, &fb);
>> - igt_plane_set_fb(primary, &fb);
>> - igt_display_commit(&data->display);
>> - igt_wait_for_vblank(data->drm_fd,
>> - display->pipes[primary->pipe->pipe].crtc_offset);
>> - igt_pipe_crc_collect_crc(data->pipe_crc, &crc_limited);
>> -
>> - /* And reset.. */
>> - igt_output_set_prop_value(output, IGT_CONNECTOR_BROADCAST_RGB, BROADCAST_RGB_FULL);
>> - igt_plane_set_fb(primary, NULL);
>> - igt_output_set_pipe(output, PIPE_NONE);
>> -
>> - /* Verify that the CRC of the software computed output is
>> - * equal to the CRC of the CTM matrix transformation output.
>> - */
>> - igt_assert_crc_equal(&crc_full, &crc_limited);
>> + set_degamma(data, primary->pipe, degamma_linear);
>> + set_gamma(data, primary->pipe, gamma_linear);
>> + set_ctm(primary->pipe, ctm);
>>
>> - igt_remove_fb(data->drm_fd, &fb);
>> - igt_remove_fb(data->drm_fd, &fb_modeset);
>> - }
>> + igt_output_set_prop_value(output,
>> + IGT_CONNECTOR_BROADCAST_RGB,
>> + BROADCAST_RGB_FULL);
>> + paint_rectangles(data, mode, red_green_blue_limited, &fb);
>> + igt_plane_set_fb(primary, &fb);
>> + igt_display_commit(&data->display);
>> + igt_wait_for_vblank(data->drm_fd,
>> + display->pipes[primary->pipe->pipe].crtc_offset);
>> + igt_pipe_crc_collect_crc(data->pipe_crc, &crc_full);
>> +
>> + /* Set the output into limited range. */
>> + igt_output_set_prop_value(output,
>> + IGT_CONNECTOR_BROADCAST_RGB,
>> + BROADCAST_RGB_16_235);
>> + paint_rectangles(data, mode, red_green_blue_full, &fb);
>> + igt_plane_set_fb(primary, &fb);
>> + igt_display_commit(&data->display);
>> + igt_wait_for_vblank(data->drm_fd,
>> + display->pipes[primary->pipe->pipe].crtc_offset);
>> + igt_pipe_crc_collect_crc(data->pipe_crc, &crc_limited);
>> +
>> + /* And reset.. */
>> + igt_output_set_prop_value(output,
>> + IGT_CONNECTOR_BROADCAST_RGB,
>> + BROADCAST_RGB_FULL);
>> + igt_plane_set_fb(primary, NULL);
>> + igt_output_set_pipe(output, PIPE_NONE);
>> + igt_display_commit(&data->display);
>> +
>> + ret = igt_skip_crc_compare || igt_check_crc_equal(&crc_full, &crc_limited);
>>
>> free_lut(gamma_linear);
>> free_lut(degamma_linear);
>>
>> - igt_require(has_broadcast_rgb_output);
>> + return ret;
>> }
>> -#endif
>>
>> static void
>> prep_pipe(data_t *data, enum pipe p)
>> @@ -1000,6 +991,25 @@ run_invalid_tests_for_pipe(data_t *data)
>> }
>> }
>>
>> +static void
>> +run_limited_range_ctm_test_for_pipe(data_t *data, enum pipe p,
>> + bool (*test_t)(data_t*, igt_plane_t*))
>> +{
>> + test_setup(data, p);
>> +
>> + igt_require(igt_output_has_prop(data->output, IGT_CONNECTOR_BROADCAST_RGB));
>> +
>> + data->color_depth = 8;
>> + data->drm_format = DRM_FORMAT_XRGB8888;
>> + data->mode = igt_output_get_mode(data->output);
>> +
>> + igt_require(pipe_output_combo_valid(data, p));
>> +
>> + igt_assert(test_t(data, data->primary));
>> +
>> + test_cleanup(data);
>> +}
>> +
>> static void
>> run_tests_for_pipe(data_t *data)
>> {
>> @@ -1156,6 +1166,16 @@ run_tests_for_pipe(data_t *data)
>> }
>> }
>>
>> + igt_describe("Compare after applying ctm matrix & identity matrix");
>> + igt_subtest_with_dynamic("ctm-limited-range") {
>> + for_each_pipe_with_valid_output(&data->display, pipe, data->output) {
>> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe),
>> + igt_output_name(data->output))
>> + run_limited_range_ctm_test_for_pipe(data, pipe,
>> + test_pipe_limited_range_ctm);
>> + }
>> + }
>> +
>> igt_fixture
>> igt_require(data->display.is_atomic);
>>
>> --
>> 2.25.1
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t] tests/kms_color: Enable ctm-limited-range subtest
2025-02-14 18:26 ` Sharma, Swati2
@ 2025-02-14 21:04 ` Ville Syrjälä
2025-02-18 7:23 ` Sharma, Swati2
2025-03-14 12:34 ` Sharma, Swati2
0 siblings, 2 replies; 13+ messages in thread
From: Ville Syrjälä @ 2025-02-14 21:04 UTC (permalink / raw)
To: Sharma, Swati2; +Cc: igt-dev
On Fri, Feb 14, 2025 at 11:56:27PM +0530, Sharma, Swati2 wrote:
> Hi Ville,
>
> On 14-02-2025 11:00 pm, Ville Syrjälä wrote:
> > On Fri, Feb 14, 2025 at 09:40:11PM +0530, Swati Sharma wrote:
> >> This tests is currently disabled since CRC computed on Intel
> >> hardware seems to include data on the lower bits, this is
> >> preventing us to CRC checks.
> >>
> >> Let's try to enable it back and check behavior on newer Intel
> >> platforms.
> >>
> >> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> >> ---
> >> tests/kms_color.c | 166 ++++++++++++++++++++++++++--------------------
> >> 1 file changed, 93 insertions(+), 73 deletions(-)
> >>
> >> diff --git a/tests/kms_color.c b/tests/kms_color.c
> >> index 4b71d3dd3..c3b285b4e 100644
> >> --- a/tests/kms_color.c
> >> +++ b/tests/kms_color.c
> >> @@ -58,6 +58,7 @@
> >> * @0-75: for 0.75 transparency
> >> * @blue-to-red: from blue to red
> >> * @green-to-red: from green to red
> >> + * @limited-range: with identity matrix
> >> * @max: for maximum transparency
> >> * @negative: for negative transparency
> >> * @red-to-blue: from red to blue
> >> @@ -623,107 +624,97 @@ static bool test_pipe_ctm(data_t *data,
> >> * This test is currently disabled as the CRC computed on Intel hardware seems
> >> * to include data on the lower bits, this is preventing us to CRC checks.
> >> */
> >> -#if 0
> >> -static void test_pipe_limited_range_ctm(data_t *data,
> >> +static bool test_pipe_limited_range_ctm(data_t *data,
> >> igt_plane_t *primary)
> >> {
> >> double limited_result = 235.0 / 255.0;
> >> - static const color_t red_green_blue_limited[] = {
> >> + color_t red_green_blue_limited[] = {
> >> { limited_result, 0.0, 0.0 },
> >> { 0.0, limited_result, 0.0 },
> >> - { 0.0, 0.0, limited_result },
> >> + { 0.0, 0.0, limited_result }
> >> };
> > This whole thing is fundementally broken. We can't generate
> > limited range output without using the CSC post offsets,
> > which are not exposed via the current CTM uapi.
> We do have its equivalent test in kms_color_chamelium
> and it seems its passing
> https://gfx-ci.igk.intel.com/cibuglog-ng/results/all?query_key=af49bc8e4e7d1c69ce04f9a1196c167456e8344a
> Is it wrong?
Hmm. Looks like the test has nothing really to do with the
CTM (despite the name), and instead if just uses identity CTM
and puts the limited range equivalent data directly into the
fb. So I guess technically it could sort of work.
For the chamelium version the port will chop off the extra
low bits so I guess that explains why it works.
The crc version is more tricky:
- g4x presuambly won't work because the port color range
bit won't affect the pipe crc
- ilk-ivb/vlv/chv won't work because TRANSCONF_COLOR_RANGE_SELECT
doesn't seem to affect the pipe crc either
- icl+ uses the output csc for the limited range conversion
so the gamma LUT lsb chopping doesn't do anything, so we may
get some differences in the low bits
- hsw-glk maybe could work if we do enable CTM+gamma since then
we'll end up doing the limited range adjustment on the gamma LUT
and thus it can chop off the low bits. If we didn't enable
both CTM and gamma then the limited range conversion would be
done on the pipe CSC and thus it would behave exactly like icl+.
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_color: Enable ctm-limited-range subtest (rev2)
2025-02-14 16:10 [PATCH i-g-t] tests/kms_color: Enable ctm-limited-range subtest Swati Sharma
2025-02-14 17:30 ` Ville Syrjälä
@ 2025-02-14 22:18 ` Patchwork
2025-02-14 22:50 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-02-14 22:18 UTC (permalink / raw)
To: Sharma, Swati2; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6675 bytes --]
== Series Details ==
Series: tests/kms_color: Enable ctm-limited-range subtest (rev2)
URL : https://patchwork.freedesktop.org/series/144865/
State : success
== Summary ==
CI Bug Log - changes from IGT_8230 -> IGTPW_12601
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/index.html
Participating hosts (42 -> 42)
------------------------------
Additional (2): bat-twl-1 fi-pnv-d510
Missing (2): fi-snb-2520m bat-twl-2
Known issues
------------
Here are the changes found in IGTPW_12601 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-twl-1: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/bat-twl-1/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-twl-1: NOTRUN -> [SKIP][2] ([i915#10213] / [i915#11671]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/bat-twl-1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic:
- bat-twl-1: NOTRUN -> [SKIP][3] ([i915#11031])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/bat-twl-1/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-twl-1: NOTRUN -> [SKIP][4] ([i915#10209] / [i915#11681])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/bat-twl-1/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@workarounds:
- bat-rplp-1: [PASS][5] -> [INCOMPLETE][6] ([i915#9413]) +1 other test incomplete
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8230/bat-rplp-1/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/bat-rplp-1/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8230/bat-arls-6/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/bat-arls-6/igt@i915_selftest@live@workarounds.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-twl-1: NOTRUN -> [SKIP][9] ([i915#11030] / [i915#11731]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/bat-twl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-twl-1: NOTRUN -> [SKIP][10] ([i915#9886])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/bat-twl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-twl-1: NOTRUN -> [SKIP][11] ([i915#11032])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/bat-twl-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_psr@psr-primary-mmap-gtt:
- fi-pnv-d510: NOTRUN -> [SKIP][12] +33 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/fi-pnv-d510/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-twl-1: NOTRUN -> [SKIP][13] ([i915#8809])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/bat-twl-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-twl-1: NOTRUN -> [SKIP][14] ([i915#10212] / [i915#3708])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/bat-twl-1/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-twl-1: NOTRUN -> [SKIP][15] ([i915#10214] / [i915#3708])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/bat-twl-1/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-twl-1: NOTRUN -> [SKIP][16] ([i915#10216] / [i915#3708])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/bat-twl-1/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-arlh-2: [DMESG-FAIL][17] ([i915#12061]) -> [PASS][18] +1 other test pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8230/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/bat-arlh-2/igt@i915_selftest@live@workarounds.html
- bat-mtlp-6: [DMESG-FAIL][19] ([i915#12061]) -> [PASS][20] +1 other test pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8230/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#11030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11030
[i915#11031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11031
[i915#11032]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11032
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11731]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11731
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8230 -> IGTPW_12601
* Linux: CI_DRM_16134 -> CI_DRM_16138
CI-20190529: 20190529
CI_DRM_16134: 57457d93f156d8b4bdff8d138127d81b8f97d8c9 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16138: cbd747025a1ef985e1ebfa040aa0da4a5d77aacd @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12601: 06a774e9b262c15a09f7faf9feffd779477df60e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8230: 8230
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/index.html
[-- Attachment #2: Type: text/html, Size: 7920 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_color: Enable ctm-limited-range subtest (rev2)
2025-02-14 16:10 [PATCH i-g-t] tests/kms_color: Enable ctm-limited-range subtest Swati Sharma
2025-02-14 17:30 ` Ville Syrjälä
2025-02-14 22:18 ` ✓ i915.CI.BAT: success for tests/kms_color: Enable ctm-limited-range subtest (rev2) Patchwork
@ 2025-02-14 22:50 ` Patchwork
2025-02-15 0:49 ` ✓ i915.CI.Full: " Patchwork
2025-02-16 0:02 ` ✗ Xe.CI.Full: failure " Patchwork
4 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-02-14 22:50 UTC (permalink / raw)
To: Sharma, Swati2; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2519 bytes --]
== Series Details ==
Series: tests/kms_color: Enable ctm-limited-range subtest (rev2)
URL : https://patchwork.freedesktop.org/series/144865/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8230_BAT -> XEIGTPW_12601_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12601_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_intel_bb@intel-bb-blit-x:
- bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3970])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/bat-adlp-vf/igt@xe_intel_bb@intel-bb-blit-x.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/bat-adlp-vf/igt@xe_intel_bb@intel-bb-blit-x.html
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-vf: [PASS][3] -> [SKIP][4] ([Intel XE#1192]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-adlp-vf: [SKIP][5] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][6] ([Intel XE#1192])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_8230 -> IGTPW_12601
* Linux: xe-2665-57457d93f156d8b4bdff8d138127d81b8f97d8c9 -> xe-2668-200d035cec6632bcb33ad946aa7bfec6309d2ab6
IGTPW_12601: 06a774e9b262c15a09f7faf9feffd779477df60e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8230: 8230
xe-2665-57457d93f156d8b4bdff8d138127d81b8f97d8c9: 57457d93f156d8b4bdff8d138127d81b8f97d8c9
xe-2668-200d035cec6632bcb33ad946aa7bfec6309d2ab6: 200d035cec6632bcb33ad946aa7bfec6309d2ab6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/index.html
[-- Attachment #2: Type: text/html, Size: 3214 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ i915.CI.Full: success for tests/kms_color: Enable ctm-limited-range subtest (rev2)
2025-02-14 16:10 [PATCH i-g-t] tests/kms_color: Enable ctm-limited-range subtest Swati Sharma
` (2 preceding siblings ...)
2025-02-14 22:50 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-02-15 0:49 ` Patchwork
2025-02-16 0:02 ` ✗ Xe.CI.Full: failure " Patchwork
4 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-02-15 0:49 UTC (permalink / raw)
To: Sharma, Swati2; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 138103 bytes --]
== Series Details ==
Series: tests/kms_color: Enable ctm-limited-range subtest (rev2)
URL : https://patchwork.freedesktop.org/series/144865/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_16138_full -> IGTPW_12601_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/index.html
Participating hosts (10 -> 11)
------------------------------
Additional (1): shard-dg2-set2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12601_full:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_color@ctm-limited-range} (NEW):
- shard-tglu: NOTRUN -> [FAIL][1] +4 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-7/igt@kms_color@ctm-limited-range.html
- shard-mtlp: NOTRUN -> [FAIL][2] +4 other tests fail
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-8/igt@kms_color@ctm-limited-range.html
- shard-rkl: NOTRUN -> [FAIL][3] +2 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-2/igt@kms_color@ctm-limited-range.html
* {igt@kms_color@ctm-limited-range@pipe-a-hdmi-a-1} (NEW):
- shard-snb: NOTRUN -> [FAIL][4] +2 other tests fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-snb4/igt@kms_color@ctm-limited-range@pipe-a-hdmi-a-1.html
* {igt@kms_color@ctm-limited-range@pipe-a-hdmi-a-4} (NEW):
- shard-dg1: NOTRUN -> [FAIL][5] +4 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-15/igt@kms_color@ctm-limited-range@pipe-a-hdmi-a-4.html
* {igt@kms_color@ctm-limited-range@pipe-d-hdmi-a-3} (NEW):
- shard-dg2: NOTRUN -> [FAIL][6] +4 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@kms_color@ctm-limited-range@pipe-d-hdmi-a-3.html
New tests
---------
New tests have been introduced between CI_DRM_16138_full and IGTPW_12601_full:
### New IGT tests (18) ###
* igt@kms_color@ctm-limited-range:
- Statuses : 6 fail(s)
- Exec time: [0.06, 4.43] s
* igt@kms_color@ctm-limited-range@pipe-a-edp-1:
- Statuses : 1 fail(s)
- Exec time: [0.68] s
* igt@kms_color@ctm-limited-range@pipe-a-hdmi-a-1:
- Statuses : 3 fail(s)
- Exec time: [0.04, 0.58] s
* igt@kms_color@ctm-limited-range@pipe-a-hdmi-a-3:
- Statuses : 1 fail(s)
- Exec time: [0.61] s
* igt@kms_color@ctm-limited-range@pipe-a-hdmi-a-4:
- Statuses : 1 fail(s)
- Exec time: [0.77] s
* igt@kms_color@ctm-limited-range@pipe-b-edp-1:
- Statuses : 1 fail(s)
- Exec time: [1.29] s
* igt@kms_color@ctm-limited-range@pipe-b-hdmi-a-1:
- Statuses : 3 fail(s)
- Exec time: [0.01, 0.44] s
* igt@kms_color@ctm-limited-range@pipe-b-hdmi-a-3:
- Statuses : 1 fail(s)
- Exec time: [0.42] s
* igt@kms_color@ctm-limited-range@pipe-b-hdmi-a-4:
- Statuses : 1 fail(s)
- Exec time: [0.53] s
* igt@kms_color@ctm-limited-range@pipe-c-edp-1:
- Statuses : 1 fail(s)
- Exec time: [1.24] s
* igt@kms_color@ctm-limited-range@pipe-c-hdmi-a-1:
- Statuses : 1 fail(s)
- Exec time: [0.33] s
* igt@kms_color@ctm-limited-range@pipe-c-hdmi-a-3:
- Statuses : 1 fail(s)
- Exec time: [0.43] s
* igt@kms_color@ctm-limited-range@pipe-c-hdmi-a-4:
- Statuses : 1 fail(s)
- Exec time: [0.51] s
* igt@kms_color@ctm-limited-range@pipe-d-edp-1:
- Statuses : 1 fail(s)
- Exec time: [1.22] s
* igt@kms_color@ctm-limited-range@pipe-d-hdmi-a-1:
- Statuses : 1 fail(s)
- Exec time: [0.34] s
* igt@kms_color@ctm-limited-range@pipe-d-hdmi-a-3:
- Statuses : 1 fail(s)
- Exec time: [0.43] s
* igt@kms_color@ctm-limited-range@pipe-d-hdmi-a-4:
- Statuses : 1 fail(s)
- Exec time: [0.51] s
* igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [3.43] s
Known issues
------------
Here are the changes found in IGTPW_12601_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-1/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#6230])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-8/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#6230])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-14/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#6230])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-7/igt@api_intel_bb@crc32.html
* igt@device_reset@cold-reset-bound:
- shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#11078])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@device_reset@cold-reset-bound.html
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#11078])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-7/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [ABORT][13] ([i915#11814] / [i915#11815] / [i915#9413])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414]) +7 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-8/igt@drm_fdinfo@busy-check-all@ccs0.html
* igt@drm_fdinfo@busy-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) +8 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-8/igt@drm_fdinfo@busy-check-all@vecs1.html
* igt@drm_fdinfo@busy-idle-check-all@vcs0:
- shard-dg2-9: NOTRUN -> [SKIP][16] ([i915#11527] / [i915#8414]) +6 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@drm_fdinfo@busy-idle-check-all@vcs0.html
* igt@drm_fdinfo@most-busy-check-all@vecs0:
- shard-dg2-9: NOTRUN -> [SKIP][17] ([i915#8414]) +10 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@drm_fdinfo@most-busy-check-all@vecs0.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#7697]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-5/igt@gem_basic@multigpu-create-close.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#4873]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-4/igt@gem_caching@writes.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#9323])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#13008])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-5/igt@gem_ccs@large-ctrl-surf-copy.html
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#13008])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-18/igt@gem_ccs@large-ctrl-surf-copy.html
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#13008])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-1/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][24] -> [INCOMPLETE][25] ([i915#13356])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-11/igt@gem_ccs@suspend-resume.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-4/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][26] -> [INCOMPLETE][27] ([i915#12392] / [i915#13356])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-11/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg2-9: NOTRUN -> [SKIP][28] ([i915#7697])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-tglu: NOTRUN -> [SKIP][29] ([i915#7697])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-10/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][30] ([i915#6335])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#6335])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#6335]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][33] ([i915#1099])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-snb2/igt@gem_ctx_persistence@engines-mixed-process.html
* igt@gem_ctx_persistence@hang:
- shard-dg2-9: NOTRUN -> [SKIP][34] ([i915#8555]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_sseu@invalid-args:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#280])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-5/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#280])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-7/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#280])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-tglu: NOTRUN -> [ABORT][38] ([i915#7975])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-3/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-internal-1us:
- shard-mtlp: [PASS][39] -> [ABORT][40] ([i915#13193]) +4 other tests abort
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-mtlp-3/igt@gem_eio@in-flight-internal-1us.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-4/igt@gem_eio@in-flight-internal-1us.html
* igt@gem_eio@kms:
- shard-tglu: [PASS][41] -> [DMESG-WARN][42] ([i915#13363])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-tglu-7/igt@gem_eio@kms.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-10/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][43] -> [FAIL][44] ([i915#12714] / [i915#5784])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg1-18/igt@gem_eio@unwedge-stress.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-12/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2-9: NOTRUN -> [SKIP][45] ([i915#4771])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4771])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-1/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4525])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu: NOTRUN -> [SKIP][48] ([i915#4525]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-5/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_fence@concurrent:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4812])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_fence@syncobj-unused-fence:
- shard-rkl: [PASS][50] -> [DMESG-WARN][51] ([i915#12964]) +36 other tests dmesg-warn
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-rkl-2/igt@gem_exec_fence@syncobj-unused-fence.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-1/igt@gem_exec_fence@syncobj-unused-fence.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2-9: NOTRUN -> [SKIP][52] ([i915#3539])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-set-default:
- shard-dg2-9: NOTRUN -> [SKIP][53] ([i915#3539] / [i915#4852])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@gem_exec_flush@basic-wb-set-default.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3281]) +8 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][55] ([i915#3281]) +10 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#3281]) +9 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3281]) +6 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#3281]) +5 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-18/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2-9: NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-19/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg2-9: NOTRUN -> [SKIP][61] ([i915#4860])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4860]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4860]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-4/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613] / [i915#7582])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html
- shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#4613] / [i915#7582])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4613]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-3/igt@gem_lmem_swapping@basic.html
- shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#4613]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#4613]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-2/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][69] ([i915#4613]) +10 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk6/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#4613]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-4/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#284])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-8/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-copy:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4077]) +5 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-2/igt@gem_mmap_gtt@basic-copy.html
* igt@gem_mmap_gtt@basic-wc:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#4077]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-15/igt@gem_mmap_gtt@basic-wc.html
* igt@gem_mmap_gtt@big-copy-odd:
- shard-dg2-9: NOTRUN -> [SKIP][74] ([i915#4077]) +5 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@gem_mmap_gtt@big-copy-odd.html
* igt@gem_mmap_wc@read-write:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4083]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@gem_mmap_wc@read-write.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-dg2-9: NOTRUN -> [SKIP][76] ([i915#4083])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_mmap_wc@write-read:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4083]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-6/igt@gem_mmap_wc@write-read.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3282]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-3/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#3282]) +5 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-5/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg2-9: NOTRUN -> [SKIP][80] ([i915#3282])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][81] ([i915#2658])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk7/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@display-protected-crc:
- shard-rkl: NOTRUN -> [TIMEOUT][82] ([i915#12917] / [i915#12964]) +1 other test timeout
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-4/igt@gem_pxp@display-protected-crc.html
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4270])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-18/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-rkl: [PASS][84] -> [TIMEOUT][85] ([i915#12964])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-rkl-8/igt@gem_pxp@fail-invalid-protected-context.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-1/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#13398])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-2/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4270])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: NOTRUN -> [TIMEOUT][88] ([i915#12964]) +1 other test timeout
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-7/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2-9: NOTRUN -> [SKIP][89] ([i915#4270]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3282]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][91] ([i915#5190] / [i915#8428]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#8428]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#5190] / [i915#8428]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][94] ([i915#4079])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#4079])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-18/igt@gem_tiled_pread_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#4079])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-8/igt@gem_tiled_pread_pwrite.html
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#4079])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-2/igt@gem_tiled_pread_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#4879])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-8/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2-9: NOTRUN -> [SKIP][99] ([i915#3297]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@gem_userptr_blits@coherency-unsync.html
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#3297])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-12/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#3297]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-7/igt@gem_userptr_blits@readonly-pwrite-unsync.html
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#3297]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2-9: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#4958])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#3297])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-8/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#3297]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-8/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: NOTRUN -> [INCOMPLETE][106] ([i915#13356])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk7/igt@gem_workarounds@suspend-resume-context.html
* igt@gen3_render_tiledy_blits:
- shard-mtlp: NOTRUN -> [SKIP][107] +11 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-4/igt@gen3_render_tiledy_blits.html
* igt@gen9_exec_parse@basic-rejected:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#2856]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-5/igt@gen9_exec_parse@basic-rejected.html
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#2527])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-19/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#2856]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-5/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#2527]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-5/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-out:
- shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#2527] / [i915#2856]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#2527] / [i915#2856]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-2/igt@gen9_exec_parse@unaligned-jump.html
- shard-dg2-9: NOTRUN -> [SKIP][114] ([i915#2856]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_module_load@load:
- shard-dg2: ([PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136]) -> ([PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [DMESG-WARN][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158]) ([i915#13368])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-2/igt@i915_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-5/igt@i915_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-11/igt@i915_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-8/igt@i915_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-8/igt@i915_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-5/igt@i915_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-4/igt@i915_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-6/igt@i915_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-11/igt@i915_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-2/igt@i915_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-7/igt@i915_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-4/igt@i915_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-6/igt@i915_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-3/igt@i915_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-10/igt@i915_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-1/igt@i915_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-11/igt@i915_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-6/igt@i915_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-7/igt@i915_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-3/igt@i915_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-10/igt@i915_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-1/igt@i915_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-11/igt@i915_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-1/igt@i915_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-11/igt@i915_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-1/igt@i915_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-2/igt@i915_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@i915_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-2/igt@i915_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-2/igt@i915_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@i915_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@i915_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@i915_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@i915_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@i915_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-4/igt@i915_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-4/igt@i915_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-5/igt@i915_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-5/igt@i915_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-6/igt@i915_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-6/igt@i915_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-7/igt@i915_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-8/igt@i915_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-8/igt@i915_module_load@load.html
* igt@i915_module_load@reload-no-display:
- shard-tglu-1: NOTRUN -> [DMESG-WARN][159] ([i915#13029])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [PASS][160] -> [ABORT][161] ([i915#9820])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#8399])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-5/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#8399])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-5/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: NOTRUN -> [WARN][164] ([i915#2681]) +6 other tests warn
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: NOTRUN -> [FAIL][165] ([i915#3591]) +1 other test fail
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#11681] / [i915#6621]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-1/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#11681]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-1/igt@i915_pm_rps@thresholds-park.html
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#11681])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-17/igt@i915_pm_rps@thresholds-park.html
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#11681])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-7/igt@i915_pm_rps@thresholds-park.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#4387])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#6245])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-5/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@mock:
- shard-glk: NOTRUN -> [DMESG-WARN][172] ([i915#9311]) +1 other test dmesg-warn
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk7/igt@i915_selftest@mock.html
- shard-mtlp: NOTRUN -> [DMESG-WARN][173] ([i915#9311]) +1 other test dmesg-warn
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-5/igt@i915_selftest@mock.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][174] ([i915#4817]) +1 other test incomplete
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk2/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2-9: NOTRUN -> [SKIP][175] ([i915#4212])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#5190])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#4212]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-1/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#8709]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs-cc:
- shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#8709]) +3 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#8709]) +7 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#8709]) +7 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#12967])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-8/igt@kms_async_flips@invalid-async-flip-atomic.html
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#12967])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-2/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#5286]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-9: NOTRUN -> [SKIP][185] +8 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#5286]) +3 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-5/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#5286]) +3 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#4538] / [i915#5286])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#4538] / [i915#5190]) +12 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#3638]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#3638])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-13/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#5190])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#6187])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2-9: NOTRUN -> [SKIP][194] ([i915#4538] / [i915#5190]) +5 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][195] +15 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#4538]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#6095]) +44 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#12313]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#12313]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#12313])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-12/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#6095]) +164 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#12313]) +4 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#10307] / [i915#6095]) +138 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#6095]) +39 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#6095]) +82 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][206] ([i915#10307] / [i915#6095]) +44 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#12805])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][208] ([i915#6095]) +4 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][209] ([i915#12796]) +1 other test incomplete
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#6095]) +17 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#6095]) +94 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][212] ([i915#12313])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#12313]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#7213] / [i915#9010]) +4 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-8/igt@kms_cdclk@mode-transition.html
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#11616] / [i915#7213])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-2/igt@kms_cdclk@mode-transition.html
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#3742])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-18/igt@kms_cdclk@mode-transition.html
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#3742])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-5/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#7213]) +3 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#3742])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#11151] / [i915#7828]) +4 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][222] +9 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-1/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#11151] / [i915#7828]) +5 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-8/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-dg2-9: NOTRUN -> [SKIP][224] ([i915#11151] / [i915#7828]) +5 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#11151] / [i915#7828]) +7 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#11151] / [i915#7828]) +8 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-5/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#11151] / [i915#7828]) +3 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-15/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#11151] / [i915#7828]) +8 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-4/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-9/igt@kms_content_protection@atomic-dpms.html
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#7118] / [i915#9424])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-9: NOTRUN -> [SKIP][231] ([i915#3299])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#3116] / [i915#3299])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][233] ([i915#7173])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-3.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#9424])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-8/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#7118] / [i915#9424])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-2/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#3555]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8814])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-rkl: [PASS][239] -> [FAIL][240] ([i915#13566]) +2 other tests fail
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-rkl-2/igt@kms_cursor_crc@cursor-random-256x85.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-3/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][241] ([i915#13566])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-3/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#13049]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#13049]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#13049])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#13049])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#13049])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#3555]) +5 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2-9: NOTRUN -> [SKIP][248] ([i915#13049]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-tglu: NOTRUN -> [FAIL][249] ([i915#13566]) +1 other test fail
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-128x42.html
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#8814]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu: [PASS][251] -> [FAIL][252] ([i915#13566]) +5 other tests fail
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-256x85.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2-9: NOTRUN -> [SKIP][253] ([i915#3555]) +2 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#3555]) +2 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#13049]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2-9: NOTRUN -> [SKIP][256] ([i915#13046] / [i915#5354]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#13046] / [i915#5354]) +6 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#4103] / [i915#4213]) +2 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg2-9: NOTRUN -> [SKIP][259] ([i915#4103] / [i915#4213])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#9809]) +3 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#4103]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#4103])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2-9: NOTRUN -> [SKIP][263] ([i915#9833])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#1257])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][265] ([i915#8812])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#3840])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-2/igt@kms_dsc@dsc-basic.html
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#3840])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#3840])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#3840])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#3840]) +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#3840])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-5/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#3840])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-7/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#3840])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-12/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#3840] / [i915#9053])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][275] ([i915#9878])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk6/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#3469])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#9337])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-9: NOTRUN -> [SKIP][278] ([i915#658])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#658])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][280] ([i915#9934]) +3 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#3637]) +3 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][282] ([i915#8381])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#3637]) +5 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-8/igt@kms_flip@2x-flip-vs-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][284] ([i915#12745] / [i915#4839])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk2/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][285] ([i915#4839])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk2/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#3637]) +6 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-3/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#9934]) +6 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#9934]) +8 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-8/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#9934]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-12/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#8381]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-1/igt@kms_flip@flip-vs-fences-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#8381])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-19/igt@kms_flip@flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#8381])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-2/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-rkl: [PASS][293] -> [DMESG-FAIL][294] ([i915#12964])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-rkl-1/igt@kms_flip@flip-vs-suspend-interruptible.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-rkl: NOTRUN -> [DMESG-FAIL][295] ([i915#12964])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-snb: [PASS][296] -> [FAIL][297] ([i915#11989]) +2 other tests fail
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-snb2/igt@kms_flip@plain-flip-ts-check-interruptible.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-snb4/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1:
- shard-mtlp: [PASS][298] -> [FAIL][299] ([i915#11989]) +2 other tests fail
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-mtlp-6/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-6/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1:
- shard-tglu: [PASS][300] -> [FAIL][301] ([i915#11989]) +2 other tests fail
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-tglu-2/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-3/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#2672] / [i915#3555]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-dg2-9: NOTRUN -> [SKIP][303] ([i915#2672] / [i915#3555]) +1 other test skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][304] ([i915#2672]) +3 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][305] ([i915#2587] / [i915#2672] / [i915#3555])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#2587] / [i915#2672]) +5 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#2672] / [i915#3555]) +4 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#2672] / [i915#3555] / [i915#8813])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#2672] / [i915#3555])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#2672] / [i915#8813])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#2672]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#2672] / [i915#3555]) +2 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#2587] / [i915#2672]) +2 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#2672]) +2 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2-9: NOTRUN -> [SKIP][316] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
- shard-dg2-9: NOTRUN -> [FAIL][317] ([i915#6880])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#8708]) +4 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#5354]) +28 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#8708]) +15 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#8708]) +5 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu:
- shard-dg2: [PASS][322] -> [FAIL][323] ([i915#6880]) +2 other tests fail
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#10055])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#3458]) +17 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][326] ([i915#8708]) +11 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-snb: NOTRUN -> [SKIP][327] +83 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-snb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][328] ([i915#1825]) +32 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][329] ([i915#1825]) +25 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][330] ([i915#3458]) +8 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][331] ([i915#5439])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][332] ([i915#3458]) +9 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][333] ([i915#5354]) +18 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#3023]) +19 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-tglu-1: NOTRUN -> [SKIP][335] +53 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][336] +87 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][337] ([i915#6118])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: NOTRUN -> [SKIP][338] ([i915#12713])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu: NOTRUN -> [SKIP][339] ([i915#3555] / [i915#8228]) +1 other test skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: NOTRUN -> [SKIP][340] ([i915#3555] / [i915#8228]) +1 other test skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-6/igt@kms_hdr@static-toggle-dpms.html
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#3555] / [i915#8228]) +1 other test skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-4/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][342] ([i915#12394])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-6/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2-9: NOTRUN -> [SKIP][343] ([i915#12388])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#12388])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][345] ([i915#12394])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][346] ([i915#12339])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-mtlp: NOTRUN -> [SKIP][347] ([i915#13522])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu-1: NOTRUN -> [SKIP][348] ([i915#1839])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][349] ([i915#6301]) +1 other test skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-10/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-dg1: NOTRUN -> [SKIP][350] +22 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-15/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-glk: NOTRUN -> [INCOMPLETE][351] ([i915#12756] / [i915#13409] / [i915#13476])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][352] ([i915#12756])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][353] ([i915#13026]) +1 other test incomplete
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk9/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][354] ([i915#10647] / [i915#12169])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk4/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][355] ([i915#10647]) +1 other test fail
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk4/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-9: NOTRUN -> [SKIP][356] ([i915#8806])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][357] ([i915#13046] / [i915#5354] / [i915#9423])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-mtlp: NOTRUN -> [SKIP][358] ([i915#6953])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-2/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][359] ([i915#6953])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-15/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2-9: NOTRUN -> [SKIP][360] ([i915#12247] / [i915#9423]) +1 other test skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][361] ([i915#12247]) +4 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- shard-dg2-9: NOTRUN -> [SKIP][362] ([i915#12247]) +7 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][363] ([i915#12247] / [i915#9423])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][364] ([i915#12247]) +3 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- shard-rkl: NOTRUN -> [SKIP][365] ([i915#12247]) +2 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][366] ([i915#12247] / [i915#6953])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#12247] / [i915#6953]) +1 other test skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][368] ([i915#12247]) +12 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-9: NOTRUN -> [SKIP][369] ([i915#12343])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][370] ([i915#5354])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][371] ([i915#9812])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu: NOTRUN -> [SKIP][372] ([i915#9685]) +1 other test skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [FAIL][373] ([i915#12912])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-3/igt@kms_pm_dc@dc6-psr.html
- shard-dg2: NOTRUN -> [SKIP][374] ([i915#9685])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-5/igt@kms_pm_dc@dc6-psr.html
- shard-rkl: NOTRUN -> [SKIP][375] ([i915#9685])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html
- shard-tglu-1: NOTRUN -> [SKIP][376] ([i915#9685])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_pm_dc@dc6-psr.html
- shard-dg1: NOTRUN -> [SKIP][377] ([i915#9685])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-13/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][378] -> [SKIP][379] ([i915#9340])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@kms_pm_lpsp@kms-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#9340])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@cursor:
- shard-mtlp: NOTRUN -> [SKIP][381] ([i915#4077]) +5 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-7/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: [PASS][382] -> [SKIP][383] ([i915#9519])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-rkl-3/igt@kms_pm_rpm@dpms-non-lpsp.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-7/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][384] ([i915#9519])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-10/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][385] ([i915#9519])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][386] -> [SKIP][387] ([i915#12916])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][388] ([i915#6524] / [i915#6805])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@kms_prime@basic-crc-vgem.html
- shard-dg1: NOTRUN -> [SKIP][389] ([i915#6524])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-13/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@d3hot:
- shard-tglu-1: NOTRUN -> [SKIP][390] ([i915#6524])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_prime@d3hot.html
- shard-mtlp: NOTRUN -> [SKIP][391] ([i915#6524])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-3/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2-9: NOTRUN -> [SKIP][392] ([i915#11520]) +4 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][393] ([i915#12316]) +3 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-1/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][394] ([i915#11520]) +3 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][395] ([i915#11520]) +1 other test skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-snb2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][396] ([i915#11520]) +8 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-10/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg1: NOTRUN -> [SKIP][397] ([i915#11520]) +1 other test skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-14/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][398] ([i915#11520]) +15 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk9/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2: NOTRUN -> [SKIP][399] ([i915#11520]) +8 other tests skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-4/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][400] ([i915#11520]) +7 other tests skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][401] ([i915#4348])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg2-9: NOTRUN -> [SKIP][402] ([i915#9683])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][403] ([i915#9683])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-tglu-1: NOTRUN -> [SKIP][404] ([i915#9683]) +1 other test skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][405] ([i915#9683])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-17/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-tglu: NOTRUN -> [SKIP][406] ([i915#9683])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-5/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-mtlp: NOTRUN -> [SKIP][407] ([i915#9688]) +20 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-8/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: NOTRUN -> [SKIP][408] ([i915#1072] / [i915#9732]) +19 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@kms_psr@fbc-psr-cursor-plane-move.html
- shard-dg1: NOTRUN -> [SKIP][409] ([i915#1072] / [i915#9732]) +6 other tests skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-13/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][410] +536 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk6/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][411] ([i915#1072] / [i915#9732]) +13 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-7/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@fbc-psr2-suspend:
- shard-dg2-9: NOTRUN -> [SKIP][412] ([i915#1072] / [i915#9732]) +12 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_psr@fbc-psr2-suspend.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][413] ([i915#9732]) +11 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][414] ([i915#9732]) +22 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-3/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: NOTRUN -> [SKIP][415] ([i915#12755])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-5/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-mtlp: NOTRUN -> [SKIP][416] ([i915#4235])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-2/igt@kms_rotation_crc@exhaust-fences.html
- shard-dg2: NOTRUN -> [SKIP][417] ([i915#4235])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][418] ([i915#5289])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-9: NOTRUN -> [SKIP][419] ([i915#5190])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][420] ([i915#12755] / [i915#5190])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-rkl: NOTRUN -> [SKIP][421] ([i915#5289])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-dg1: NOTRUN -> [SKIP][422] ([i915#5289])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-tglu: NOTRUN -> [SKIP][423] ([i915#5289])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-mtlp: NOTRUN -> [SKIP][424] ([i915#12755])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][425] ([i915#3555]) +7 other tests skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_selftest@drm_framebuffer:
- shard-glk: NOTRUN -> [ABORT][426] ([i915#13179]) +1 other test abort
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk6/igt@kms_selftest@drm_framebuffer.html
- shard-mtlp: NOTRUN -> [ABORT][427] ([i915#13179]) +1 other test abort
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-6/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][428] ([i915#3555]) +6 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-5/igt@kms_setmode@basic-clone-single-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][429] ([i915#3555] / [i915#8809])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-4/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-9: NOTRUN -> [SKIP][430] ([i915#8623])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@wait-idle@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [DMESG-WARN][431] ([i915#12964]) +7 other tests dmesg-warn
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-4/igt@kms_vblank@wait-idle@pipe-b-hdmi-a-1.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][432] ([i915#11920])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][433] ([i915#9906])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu: NOTRUN -> [SKIP][434] ([i915#9906])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-9/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-fb-id:
- shard-tglu: NOTRUN -> [SKIP][435] ([i915#2437])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-7/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-9: NOTRUN -> [SKIP][436] ([i915#2437] / [i915#9412])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-rkl: NOTRUN -> [SKIP][437] ([i915#2437])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][438] ([i915#2437]) +2 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk3/igt@kms_writeback@writeback-pixel-formats.html
- shard-tglu-1: NOTRUN -> [SKIP][439] ([i915#2437] / [i915#9412])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-1/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2-9: NOTRUN -> [SKIP][440] ([i915#2436])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][441] ([i915#12549] / [i915#6806]) +1 other test fail
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@perf_pmu@frequency@gt0.html
- shard-dg1: NOTRUN -> [FAIL][442] ([i915#12549] / [i915#6806]) +1 other test fail
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-12/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@invalid-init:
- shard-rkl: NOTRUN -> [FAIL][443] ([i915#13663])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-4/igt@perf_pmu@invalid-init.html
- shard-dg1: NOTRUN -> [FAIL][444] ([i915#13663])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-12/igt@perf_pmu@invalid-init.html
- shard-tglu: NOTRUN -> [FAIL][445] ([i915#13663])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-5/igt@perf_pmu@invalid-init.html
- shard-glk: NOTRUN -> [FAIL][446] ([i915#13663])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk3/igt@perf_pmu@invalid-init.html
- shard-dg2-9: NOTRUN -> [FAIL][447] ([i915#13663])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@perf_pmu@invalid-init.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][448] ([i915#8516])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-2/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@perf_pmu@semaphore-busy@bcs0:
- shard-mtlp: [PASS][449] -> [FAIL][450] ([i915#4349]) +5 other tests fail
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-mtlp-1/igt@perf_pmu@semaphore-busy@bcs0.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-7/igt@perf_pmu@semaphore-busy@bcs0.html
* igt@prime_busy@hang:
- shard-rkl: [PASS][451] -> [DMESG-WARN][452] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-rkl-5/igt@prime_busy@hang.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-5/igt@prime_busy@hang.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][453] ([i915#3291] / [i915#3708])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-11/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][454] ([i915#3708])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-1/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2-9: NOTRUN -> [SKIP][455] ([i915#3708]) +1 other test skip
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2: NOTRUN -> [SKIP][456] ([i915#9917]) +1 other test skip
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
- shard-dg1: NOTRUN -> [SKIP][457] ([i915#9917])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-17/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
- shard-tglu: NOTRUN -> [FAIL][458] ([i915#12910]) +9 other tests fail
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-9/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2:
- shard-mtlp: NOTRUN -> [FAIL][459] ([i915#12910]) +9 other tests fail
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-7/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg2-9: NOTRUN -> [SKIP][460] ([i915#9917])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-9/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-rkl: NOTRUN -> [SKIP][461] ([i915#9917])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-4/igt@sriov_basic@enable-vfs-bind-unbind-each.html
#### Possible fixes ####
* igt@gem_eio@kms:
- shard-mtlp: [ABORT][462] ([i915#13193]) -> [PASS][463]
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-mtlp-7/igt@gem_eio@kms.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-2/igt@gem_eio@kms.html
- shard-dg2: [FAIL][464] ([i915#5784]) -> [PASS][465]
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-6/igt@gem_eio@kms.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-11/igt@gem_eio@kms.html
- shard-dg1: [FAIL][466] ([i915#5784]) -> [PASS][467]
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg1-15/igt@gem_eio@kms.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-15/igt@gem_eio@kms.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-rkl: [SKIP][468] ([i915#4270]) -> [PASS][469]
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-rkl-3/igt@gem_pxp@protected-raw-src-copy-not-readible.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-8/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: [TIMEOUT][470] ([i915#12917] / [i915#12964]) -> [PASS][471]
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-on.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [DMESG-FAIL][472] ([i915#12964]) -> [PASS][473]
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-rkl-2/igt@gem_softpin@noreloc-s3.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-3/igt@gem_softpin@noreloc-s3.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [ABORT][474] ([i915#9820]) -> [PASS][475]
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][476] ([i915#10131] / [i915#10887] / [i915#9820]) -> [PASS][477]
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_selftest@live:
- shard-rkl: [DMESG-FAIL][478] ([i915#13550]) -> [PASS][479] +1 other test pass
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-rkl-4/igt@i915_selftest@live.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-2/igt@i915_selftest@live.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg1: [FAIL][480] ([i915#5956]) -> [PASS][481]
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg2: [FAIL][482] ([i915#5956]) -> [PASS][483]
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-11/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][484] ([i915#11808]) -> [PASS][485] +1 other test pass
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-tglu-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-tglu: [FAIL][486] ([i915#13566]) -> [PASS][487] +1 other test pass
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-tglu-9/igt@kms_cursor_crc@cursor-random-128x42.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-5/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-rkl: [FAIL][488] ([i915#13566]) -> [PASS][489] +3 other tests pass
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: [SKIP][490] ([i915#3555]) -> [PASS][491]
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_draw_crc@draw-method-pwrite:
- shard-rkl: [DMESG-WARN][492] ([i915#12964]) -> [PASS][493] +18 other tests pass
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-rkl-5/igt@kms_draw_crc@draw-method-pwrite.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-3/igt@kms_draw_crc@draw-method-pwrite.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-mtlp: [FAIL][494] ([i915#11989]) -> [PASS][495] +4 other tests pass
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-dg2: [FAIL][496] ([i915#11989]) -> [PASS][497] +4 other tests pass
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1:
- shard-snb: [FAIL][498] ([i915#11989]) -> [PASS][499] +7 other tests pass
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-snb6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-snb6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1:
- shard-tglu: [FAIL][500] ([i915#11989]) -> [PASS][501] +3 other tests pass
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-2/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-glk: [DMESG-WARN][502] ([i915#118]) -> [PASS][503] +1 other test pass
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-glk8/igt@kms_flip@wf_vblank-ts-check.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk8/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt:
- shard-dg2: [FAIL][504] ([i915#6880]) -> [PASS][505]
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_hdr@static-toggle:
- shard-dg2: [SKIP][506] ([i915#3555] / [i915#8228]) -> [PASS][507] +1 other test pass
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-3/igt@kms_hdr@static-toggle.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@kms_hdr@static-toggle.html
* igt@kms_pm_rpm@cursor:
- shard-rkl: [SKIP][508] -> [PASS][509]
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-rkl-1/igt@kms_pm_rpm@cursor.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-4/igt@kms_pm_rpm@cursor.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [FAIL][510] ([i915#5465]) -> [PASS][511] +2 other tests pass
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-mtlp-2/igt@kms_setmode@basic@pipe-b-edp-1.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-2/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-dg1: [DMESG-WARN][512] ([i915#4423]) -> [PASS][513] +3 other tests pass
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg1-13/igt@kms_universal_plane@cursor-fb-leak.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-19/igt@kms_universal_plane@cursor-fb-leak.html
* igt@perf_pmu@module-unload:
- shard-snb: [INCOMPLETE][514] -> [PASS][515]
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-snb6/igt@perf_pmu@module-unload.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-snb6/igt@perf_pmu@module-unload.html
- shard-tglu: [ABORT][516] -> [PASS][517]
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-tglu-4/igt@perf_pmu@module-unload.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-3/igt@perf_pmu@module-unload.html
* igt@perf_pmu@most-busy-idle-check-all:
- shard-dg2: [FAIL][518] ([i915#11943]) -> [PASS][519] +1 other test pass
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-6/igt@perf_pmu@most-busy-idle-check-all.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-10/igt@perf_pmu@most-busy-idle-check-all.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-dg1: [FAIL][520] ([i915#11943]) -> [PASS][521] +1 other test pass
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg1-17/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
- shard-mtlp: [FAIL][522] ([i915#11943]) -> [PASS][523] +1 other test pass
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-mtlp-8/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@perf_pmu@semaphore-busy@vecs0:
- shard-dg2: [FAIL][524] ([i915#4349]) -> [PASS][525] +5 other tests pass
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-10/igt@perf_pmu@semaphore-busy@vecs0.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-1/igt@perf_pmu@semaphore-busy@vecs0.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [ABORT][526] ([i915#10887] / [i915#12817] / [i915#9820]) -> [ABORT][527] ([i915#12817] / [i915#9820])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_content_protection@legacy:
- shard-dg2: [SKIP][528] ([i915#7118] / [i915#9424]) -> [FAIL][529] ([i915#7173])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-8/igt@kms_content_protection@legacy.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-11/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: [FAIL][530] ([i915#7173]) -> [SKIP][531] ([i915#9424])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-11/igt@kms_content_protection@lic-type-0.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-7/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][532] ([i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][533] ([i915#7118] / [i915#9424])
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-11/igt@kms_content_protection@type1.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@kms_content_protection@type1.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-dg1: [SKIP][534] ([i915#4423] / [i915#9934]) -> [SKIP][535] ([i915#9934])
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg1-18/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-15/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: [INCOMPLETE][536] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][537] ([i915#12745] / [i915#1982] / [i915#4839])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-glk2/igt@kms_flip@flip-vs-suspend.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk7/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: [INCOMPLETE][538] ([i915#12745] / [i915#1982] / [i915#4839]) -> [INCOMPLETE][539] ([i915#12745] / [i915#4839])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: [INCOMPLETE][540] ([i915#12745] / [i915#1982]) -> [INCOMPLETE][541] ([i915#12745])
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: [INCOMPLETE][542] ([i915#12745]) -> [INCOMPLETE][543] ([i915#12745] / [i915#1982])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-glk2/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-glk7/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: [SKIP][544] ([i915#10433] / [i915#3458]) -> [SKIP][545] ([i915#3458])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg1: [SKIP][546] ([i915#3458] / [i915#4423]) -> [SKIP][547] ([i915#3458])
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][548] ([i915#1839] / [i915#4816]) -> [SKIP][549] ([i915#4816])
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@perf_pmu@busy-double-start:
- shard-mtlp: [INCOMPLETE][550] -> [FAIL][551] ([i915#4349]) +1 other test fail
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16138/shard-mtlp-4/igt@perf_pmu@busy-double-start.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/shard-mtlp-5/igt@perf_pmu@busy-double-start.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[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#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[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#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
[i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12714]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12714
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12912]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12912
[i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13368]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13368
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13550
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13663]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13663
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[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#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[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#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#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#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9010]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9010
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[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#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8230 -> IGTPW_12601
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_16138: cbd747025a1ef985e1ebfa040aa0da4a5d77aacd @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12601: 06a774e9b262c15a09f7faf9feffd779477df60e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8230: 8230
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12601/index.html
[-- Attachment #2: Type: text/html, Size: 177364 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.Full: failure for tests/kms_color: Enable ctm-limited-range subtest (rev2)
2025-02-14 16:10 [PATCH i-g-t] tests/kms_color: Enable ctm-limited-range subtest Swati Sharma
` (3 preceding siblings ...)
2025-02-15 0:49 ` ✓ i915.CI.Full: " Patchwork
@ 2025-02-16 0:02 ` Patchwork
4 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-02-16 0:02 UTC (permalink / raw)
To: Sharma, Swati2; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 102944 bytes --]
== Series Details ==
Series: tests/kms_color: Enable ctm-limited-range subtest (rev2)
URL : https://patchwork.freedesktop.org/series/144865/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8230_full -> XEIGTPW_12601_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12601_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12601_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12601_full:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_color@ctm-limited-range} (NEW):
- shard-lnl: NOTRUN -> [FAIL][1] +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-2/igt@kms_color@ctm-limited-range.html
* {igt@kms_color@ctm-limited-range@pipe-d-dp-2} (NEW):
- shard-bmg: NOTRUN -> [FAIL][2] +8 other tests fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@kms_color@ctm-limited-range@pipe-d-dp-2.html
* {igt@kms_color@ctm-limited-range@pipe-d-hdmi-a-6} (NEW):
- shard-dg2-set2: NOTRUN -> [FAIL][3] +6 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@kms_color@ctm-limited-range@pipe-d-hdmi-a-6.html
* igt@kms_plane_lowres@tiling-x:
- shard-dg2-set2: [PASS][4] -> [DMESG-WARN][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-466/igt@kms_plane_lowres@tiling-x.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_multiple@tiling-x:
- shard-bmg: [PASS][6] -> [DMESG-WARN][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-7/igt@kms_plane_multiple@tiling-x.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@kms_plane_multiple@tiling-x.html
#### Warnings ####
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][8] ([Intel XE#314]) -> [FAIL][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_cdclk@mode-transition-all-outputs.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_pipe_stress@stress-xrgb8888-ytiled}:
- shard-bmg: NOTRUN -> [SKIP][10]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
- shard-dg2-set2: NOTRUN -> [SKIP][11]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
New tests
---------
New tests have been introduced between XEIGT_8230_full and XEIGTPW_12601_full:
### New IGT tests (20) ###
* igt@kms_color@ctm-limited-range:
- Statuses : 1 dmesg-fail(s) 2 fail(s)
- Exec time: [3.82, 18.74] s
* igt@kms_color@ctm-limited-range@pipe-a-dp-2:
- Statuses : 1 fail(s)
- Exec time: [0.86] s
* igt@kms_color@ctm-limited-range@pipe-a-dp-4:
- Statuses : 1 fail(s)
- Exec time: [0.48] s
* igt@kms_color@ctm-limited-range@pipe-a-edp-1:
- Statuses : 1 fail(s)
- Exec time: [0.84] s
* igt@kms_color@ctm-limited-range@pipe-a-hdmi-a-3:
- Statuses : 1 fail(s)
- Exec time: [4.73] s
* igt@kms_color@ctm-limited-range@pipe-a-hdmi-a-6:
- Statuses : 1 fail(s)
- Exec time: [0.81] s
* igt@kms_color@ctm-limited-range@pipe-b-dp-2:
- Statuses : 1 fail(s)
- Exec time: [2.37] s
* igt@kms_color@ctm-limited-range@pipe-b-dp-4:
- Statuses : 1 fail(s)
- Exec time: [0.93] s
* igt@kms_color@ctm-limited-range@pipe-b-edp-1:
- Statuses : 1 fail(s)
- Exec time: [1.48] s
* igt@kms_color@ctm-limited-range@pipe-b-hdmi-a-3:
- Statuses : 1 fail(s)
- Exec time: [2.20] s
* igt@kms_color@ctm-limited-range@pipe-b-hdmi-a-6:
- Statuses : 1 fail(s)
- Exec time: [0.53] s
* igt@kms_color@ctm-limited-range@pipe-c-dp-2:
- Statuses : 1 fail(s)
- Exec time: [0.58] s
* igt@kms_color@ctm-limited-range@pipe-c-dp-4:
- Statuses : 1 fail(s)
- Exec time: [0.91] s
* igt@kms_color@ctm-limited-range@pipe-c-edp-1:
- Statuses : 1 fail(s)
- Exec time: [1.50] s
* igt@kms_color@ctm-limited-range@pipe-c-hdmi-a-3:
- Statuses : 1 fail(s)
- Exec time: [2.54] s
* igt@kms_color@ctm-limited-range@pipe-c-hdmi-a-6:
- Statuses : 1 fail(s)
- Exec time: [0.52] s
* igt@kms_color@ctm-limited-range@pipe-d-dp-2:
- Statuses : 1 fail(s)
- Exec time: [2.56] s
* igt@kms_color@ctm-limited-range@pipe-d-dp-4:
- Statuses : 1 dmesg-fail(s)
- Exec time: [0.48] s
* igt@kms_color@ctm-limited-range@pipe-d-hdmi-a-3:
- Statuses : 1 fail(s)
- Exec time: [0.54] s
* igt@kms_color@ctm-limited-range@pipe-d-hdmi-a-6:
- Statuses : 1 fail(s)
- Exec time: [0.52] s
Known issues
------------
Here are the changes found in XEIGTPW_12601_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotreplug-lateclose:
- shard-lnl: NOTRUN -> [ABORT][12] ([Intel XE#3914])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-4/igt@core_hotunplug@hotreplug-lateclose.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#3157])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4:
- shard-dg2-set2: [PASS][14] -> [DMESG-WARN][15] ([Intel XE#1033]) +73 other tests dmesg-warn
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-434/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
- shard-lnl: [PASS][16] -> [FAIL][17] ([Intel XE#3719] / [Intel XE#911]) +3 other tests fail
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][18] ([Intel XE#1033]) +38 other tests dmesg-warn
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#3279])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#316]) +5 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1407]) +6 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-180:
- shard-bmg: NOTRUN -> [DMESG-WARN][22] ([Intel XE#4172]) +29 other tests dmesg-warn
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2327]) +5 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +15 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +15 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +14 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#2314] / [Intel XE#2894])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
- shard-dg2-set2: [PASS][29] -> [SKIP][30] ([Intel XE#2191])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2314] / [Intel XE#2894])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#2191])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2191]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-4/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#367]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#367]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-5/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#367]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1512])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-6/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#2669]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#787]) +167 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#3442])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#3433]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#3432])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#3432])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#2887]) +14 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#455] / [Intel XE#787]) +45 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2887]) +16 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2252]) +13 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2325]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_chamelium_color@ctm-red-to-blue.html
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#306]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_chamelium_color@ctm-red-to-blue.html
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#306])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-8/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#373]) +15 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#373]) +13 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-4/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#307])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#307])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-3/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2390])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][56] ([Intel XE#1178]) +1 other test fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@kms_content_protection@legacy.html
- shard-dg2-set2: NOTRUN -> [FAIL][57] ([Intel XE#1178]) +1 other test fail
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-463/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][58] ([Intel XE#1033]) +4 other tests dmesg-fail
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][59] ([Intel XE#1188]) +1 other test fail
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-434/igt@kms_content_protection@uevent.html
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#3278]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-6/igt@kms_content_protection@uevent.html
- shard-bmg: NOTRUN -> [FAIL][61] ([Intel XE#1188]) +1 other test fail
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2320]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_cursor_crc@cursor-random-32x32.html
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1424]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-8/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2-set2: [PASS][64] -> [SKIP][65] ([Intel XE#309]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-433/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#2291]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2291]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#309]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#309]) +5 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#323])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#323])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2286])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-basic:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2244])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_dsc@dsc-basic.html
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#2244])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-4/igt@kms_dsc@dsc-basic.html
* igt@kms_fbcon_fbt@fbc:
- shard-dg2-set2: [PASS][76] -> [DMESG-FAIL][77] ([Intel XE#1033])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-433/igt@kms_fbcon_fbt@fbc.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-463/igt@kms_fbcon_fbt@fbc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#776])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#776])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1421]) +6 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-2/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][81] ([Intel XE#3321]) +2 other tests fail
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-dg2-set2: [PASS][82] -> [SKIP][83] ([Intel XE#310])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-433/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2316]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-bmg: [PASS][85] -> [SKIP][86] ([Intel XE#2316]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-5/igt@kms_flip@2x-plain-flip-interruptible.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#310]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2:
- shard-bmg: [PASS][88] -> [FAIL][89] ([Intel XE#2882]) +1 other test fail
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][90] ([Intel XE#301]) +7 other tests fail
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
- shard-dg2-set2: [PASS][91] -> [FAIL][92] ([Intel XE#301]) +2 other tests fail
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank@c-dp2:
- shard-bmg: [PASS][93] -> [FAIL][94] ([Intel XE#3321]) +1 other test fail
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html
* igt@kms_flip@flip-vs-rmfb:
- shard-bmg: [PASS][95] -> [DMESG-WARN][96] ([Intel XE#2955])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-5/igt@kms_flip@flip-vs-rmfb.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@kms_flip@flip-vs-rmfb.html
- shard-dg2-set2: [PASS][97] -> [DMESG-WARN][98] ([Intel XE#2955])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-463/igt@kms_flip@flip-vs-rmfb.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][99] -> [INCOMPLETE][100] ([Intel XE#2049] / [Intel XE#2597]) +2 other tests incomplete
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3:
- shard-bmg: NOTRUN -> [INCOMPLETE][101] ([Intel XE#2049] / [Intel XE#2597])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3.html
* igt@kms_flip@modeset-vs-vblank-race:
- shard-bmg: [PASS][102] -> [DMESG-WARN][103] ([Intel XE#2955] / [Intel XE#4172])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-7/igt@kms_flip@modeset-vs-vblank-race.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@kms_flip@modeset-vs-vblank-race.html
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][104] ([Intel XE#2955])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@kms_flip@modeset-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1397]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1401] / [Intel XE#1745])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1401])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2293]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2311]) +24 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#651]) +15 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#4141]) +11 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
- shard-dg2-set2: [PASS][114] -> [SKIP][115] ([Intel XE#656]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2312]) +12 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#651]) +31 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2313]) +23 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#656]) +5 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#653]) +28 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#656]) +40 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1470] / [Intel XE#2853])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-6/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#1503])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle-dpms:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1503]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-5/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2934])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2925])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#2934])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-4/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#346])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#346])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-434/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#346])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-7/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2486]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][132] ([Intel XE#616]) +3 other tests fail
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_lowres@tiling-x:
- shard-bmg: [PASS][133] -> [DMESG-WARN][134] ([Intel XE#4091])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@kms_plane_lowres@tiling-x.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2493])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@kms_plane_multiple@tiling-yf.html
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#2493])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-7/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#3307])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][138] ([Intel XE#4212]) +1 other test dmesg-warn
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#2763]) +27 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2763]) +8 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2763]) +14 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#870]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@kms_pm_backlight@fade.html
- shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#870]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2391])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#1122]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-463/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#736])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#3309])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2-set2: [PASS][149] -> [SKIP][150] ([Intel XE#836])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-433/igt@kms_pm_rpm@dpms-non-lpsp.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@universal-planes:
- shard-dg2-set2: [PASS][152] -> [DMESG-WARN][153] ([Intel XE#1033] / [Intel XE#2042])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-434/igt@kms_pm_rpm@universal-planes.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_pm_rpm@universal-planes.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#1489]) +7 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
- shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#1489]) +8 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#2893]) +4 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2387])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@kms_psr2_su@page_flip-p010.html
- shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#1128])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#2850] / [Intel XE#929]) +21 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#1406]) +5 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-7/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2234] / [Intel XE#2850]) +17 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@kms_rotation_crc@primary-rotation-90.html
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#3414]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-90.html
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-7/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#1435])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html
- shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#1435]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [PASS][167] -> [SKIP][168] ([Intel XE#1435])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-7/igt@kms_setmode@invalid-clone-single-crtc.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#2426])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#362])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern.html
- shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#362])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-5/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#330])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-463/igt@kms_tv_load_detect@load-detect.html
- shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#330])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-4/igt@kms_tv_load_detect@load-detect.html
- shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#2450])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#455]) +21 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@kms_vrr@flip-dpms.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-lnl: NOTRUN -> [SKIP][176] ([Intel XE#1447])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-2/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#2905]) +9 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@basic-read-event:
- shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#2905]) +10 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug@discovery-empty-clients:
- shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#2905]) +10 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-5/igt@xe_eudebug@discovery-empty-clients.html
* igt@xe_eudebug@discovery-race-sigint:
- shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#4259])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@xe_eudebug@discovery-race-sigint.html
* igt@xe_evict@evict-beng-large-multi-vm:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][181] ([Intel XE#1033] / [Intel XE#1473])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
- shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#688]) +4 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-8/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
* igt@xe_exec_basic@many-bindexecqueue-rebind:
- shard-bmg: [PASS][183] -> [DMESG-WARN][184] ([Intel XE#4172]) +67 other tests dmesg-warn
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-1/igt@xe_exec_basic@many-bindexecqueue-rebind.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@xe_exec_basic@many-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#2322]) +10 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#1392]) +9 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-7/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-userptr:
- shard-dg2-set2: NOTRUN -> [SKIP][187] ([Intel XE#288]) +26 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-463/igt@xe_exec_fault_mode@many-userptr.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][188] ([Intel XE#2360]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_mmap@small-bar:
- shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#512])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-2/igt@xe_mmap@small-bar.html
* igt@xe_mmap@vram:
- shard-lnl: NOTRUN -> [SKIP][190] ([Intel XE#1416])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-8/igt@xe_mmap@vram.html
* igt@xe_module_load@force-load:
- shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#2457])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@xe_module_load@force-load.html
- shard-dg2-set2: NOTRUN -> [SKIP][192] ([Intel XE#378])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@xe_module_load@force-load.html
- shard-lnl: NOTRUN -> [SKIP][193] ([Intel XE#378])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-4/igt@xe_module_load@force-load.html
* igt@xe_oa@non-privileged-map-oa-buffer:
- shard-dg2-set2: NOTRUN -> [SKIP][194] ([Intel XE#2541] / [Intel XE#3573]) +7 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@xe_oa@non-privileged-map-oa-buffer.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: NOTRUN -> [SKIP][195] ([Intel XE#1337])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pm@d3cold-mocs:
- shard-bmg: NOTRUN -> [SKIP][196] ([Intel XE#2284])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@xe_pm@d3cold-mocs.html
- shard-lnl: NOTRUN -> [SKIP][197] ([Intel XE#2284])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-3/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: NOTRUN -> [SKIP][198] ([Intel XE#2284] / [Intel XE#366])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-multiple-execs:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][199] ([Intel XE#1033] / [Intel XE#569])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-bmg: [PASS][200] -> [DMESG-WARN][201] ([Intel XE#4172] / [Intel XE#569]) +2 other tests dmesg-warn
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-1/igt@xe_pm@s3-vm-bind-prefetch.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@xe_pm@s3-vm-bind-prefetch.html
- shard-dg2-set2: [PASS][202] -> [DMESG-WARN][203] ([Intel XE#1033] / [Intel XE#569]) +1 other test dmesg-warn
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@xe_pm@s3-vm-bind-prefetch.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: NOTRUN -> [SKIP][204] ([Intel XE#944]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-guc.html
- shard-lnl: NOTRUN -> [SKIP][205] ([Intel XE#944]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-4/igt@xe_query@multigpu-query-uc-fw-version-guc.html
- shard-bmg: NOTRUN -> [SKIP][206] ([Intel XE#944]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-bmg: NOTRUN -> [SKIP][207] ([Intel XE#4130]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
- shard-dg2-set2: NOTRUN -> [SKIP][208] ([Intel XE#4130])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-434/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
- shard-lnl: NOTRUN -> [SKIP][209] ([Intel XE#4130]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-6/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: NOTRUN -> [SKIP][210] ([Intel XE#3342])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-dg2-set2: NOTRUN -> [ABORT][211] ([Intel XE#3075] / [Intel XE#3084])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@xe_wedged@wedged-mode-toggle.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [FAIL][212] ([Intel XE#3701] / [Intel XE#3718] / [Intel XE#827]) -> [PASS][213]
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2:
- shard-bmg: [FAIL][214] ([Intel XE#3746] / [Intel XE#827]) -> [PASS][215]
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][216] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][217]
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][218] ([Intel XE#1727] / [Intel XE#3124] / [Intel XE#4010]) -> [PASS][219]
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-dg2-set2: [SKIP][220] ([Intel XE#309]) -> [PASS][221] +1 other test pass
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [SKIP][222] ([Intel XE#2291]) -> [PASS][223] +1 other test pass
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: [SKIP][224] ([Intel XE#3009]) -> [PASS][225]
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@kms_dp_aux_dev.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][226] ([Intel XE#2316]) -> [PASS][227] +6 other tests pass
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-dg2-set2: [SKIP][228] ([Intel XE#310]) -> [PASS][229] +1 other test pass
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@kms_flip@2x-plain-flip-interruptible.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-463/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@basic-flip-vs-dpms:
- shard-dg2-set2: [DMESG-WARN][230] ([Intel XE#2955]) -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-433/igt@kms_flip@basic-flip-vs-dpms.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6:
- shard-dg2-set2: [FAIL][232] ([Intel XE#301]) -> [PASS][233] +1 other test pass
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2-set2: [DMESG-WARN][234] -> [PASS][235]
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-463/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][236] ([Intel XE#656]) -> [PASS][237] +2 other tests pass
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_pipe_crc_basic@disable-crc-after-crtc:
- shard-bmg: [DMESG-WARN][238] ([Intel XE#4172]) -> [PASS][239] +31 other tests pass
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-7/igt@kms_pipe_crc_basic@disable-crc-after-crtc.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@kms_pipe_crc_basic@disable-crc-after-crtc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-2:
- shard-bmg: [INCOMPLETE][240] ([Intel XE#3663]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-2.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-2.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][242] ([Intel XE#718]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-lnl: [FAIL][244] ([Intel XE#3924]) -> [PASS][245] +1 other test pass
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-6/igt@kms_psr@psr2-sprite-plane-onoff.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-5/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_vblank@query-busy-hang@pipe-d-dp-4:
- shard-dg2-set2: [DMESG-WARN][246] ([Intel XE#1033]) -> [PASS][247] +38 other tests pass
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-466/igt@kms_vblank@query-busy-hang@pipe-d-dp-4.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-463/igt@kms_vblank@query-busy-hang@pipe-d-dp-4.html
* igt@xe_evict@evict-small-cm:
- shard-dg2-set2: [DMESG-WARN][248] ([Intel XE#1033] / [Intel XE#1473]) -> [PASS][249] +1 other test pass
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-432/igt@xe_evict@evict-small-cm.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-463/igt@xe_evict@evict-small-cm.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-dg2-set2: [SKIP][250] ([Intel XE#1392]) -> [PASS][251] +5 other tests pass
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][252], [PASS][253], [SKIP][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277]) ([Intel XE#378]) -> ([PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-4/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-8/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-5/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-6/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-3/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-8/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-8/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-8/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-8/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-3/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-6/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-5/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-5/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-5/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-5/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-7/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-6/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-3/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-2/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-3/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-7/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-2/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-2/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-7/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-4/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-lnl-4/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-2/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-5/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-3/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-3/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-8/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-8/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-3/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-4/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-2/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-2/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-5/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-5/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-7/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-5/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-6/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-6/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-3/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-4/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-4/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-6/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-6/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-8/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-8/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-7/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-lnl-7/igt@xe_module_load@load.html
- shard-bmg: ([PASS][303], [PASS][304], [PASS][305], [SKIP][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328]) ([Intel XE#2457]) -> ([PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353])
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-5/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-5/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-7/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-7/igt@xe_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-7/igt@xe_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-7/igt@xe_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-7/igt@xe_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-7/igt@xe_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-1/igt@xe_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-1/igt@xe_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-1/igt@xe_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-5/igt@xe_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-1/igt@xe_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-1/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-1/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-7/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-5/igt@xe_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@xe_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@xe_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-5/igt@xe_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@xe_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@xe_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-5/igt@xe_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@xe_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@xe_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@xe_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@xe_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@xe_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@xe_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@xe_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@xe_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@xe_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@xe_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@xe_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@xe_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@xe_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@xe_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@xe_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@xe_module_load@load.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@xe_module_load@load.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@xe_module_load@load.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@xe_module_load@load.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@xe_module_load@load.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@xe_module_load@load.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@xe_module_load@load.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@xe_module_load@load.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@xe_module_load@load.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@xe_module_load@load.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][354], [PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [SKIP][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379]) ([Intel XE#378]) -> ([PASS][380], [PASS][381], [PASS][382], [PASS][383], [PASS][384], [PASS][385], [PASS][386], [PASS][387], [PASS][388], [PASS][389], [PASS][390], [PASS][391], [PASS][392], [PASS][393], [PASS][394], [PASS][395], [PASS][396], [PASS][397], [PASS][398], [PASS][399], [PASS][400], [PASS][401], [PASS][402], [PASS][403], [PASS][404])
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-466/igt@xe_module_load@load.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-432/igt@xe_module_load@load.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-432/igt@xe_module_load@load.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-432/igt@xe_module_load@load.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-434/igt@xe_module_load@load.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-434/igt@xe_module_load@load.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-463/igt@xe_module_load@load.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-433/igt@xe_module_load@load.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-432/igt@xe_module_load@load.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-432/igt@xe_module_load@load.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-434/igt@xe_module_load@load.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-434/igt@xe_module_load@load.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-433/igt@xe_module_load@load.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-433/igt@xe_module_load@load.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-466/igt@xe_module_load@load.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-463/igt@xe_module_load@load.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-466/igt@xe_module_load@load.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-434/igt@xe_module_load@load.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@xe_module_load@load.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@xe_module_load@load.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@xe_module_load@load.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@xe_module_load@load.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-433/igt@xe_module_load@load.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-466/igt@xe_module_load@load.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@xe_module_load@load.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-463/igt@xe_module_load@load.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@xe_module_load@load.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@xe_module_load@load.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@xe_module_load@load.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@xe_module_load@load.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@xe_module_load@load.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-434/igt@xe_module_load@load.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-463/igt@xe_module_load@load.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-434/igt@xe_module_load@load.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@xe_module_load@load.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@xe_module_load@load.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@xe_module_load@load.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@xe_module_load@load.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@xe_module_load@load.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@xe_module_load@load.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@xe_module_load@load.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@xe_module_load@load.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@xe_module_load@load.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@xe_module_load@load.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-434/igt@xe_module_load@load.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-434/igt@xe_module_load@load.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-434/igt@xe_module_load@load.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-463/igt@xe_module_load@load.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-463/igt@xe_module_load@load.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-463/igt@xe_module_load@load.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-463/igt@xe_module_load@load.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: [INCOMPLETE][405] -> [PASS][406]
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-432/igt@xe_module_load@many-reload.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-463/igt@xe_module_load@many-reload.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-dg2-set2: [DMESG-WARN][407] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][408] +1 other test pass
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-434/igt@xe_pm@s3-d3hot-basic-exec.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s3-mocs:
- shard-bmg: [DMESG-WARN][409] ([Intel XE#4172] / [Intel XE#569]) -> [PASS][410]
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@xe_pm@s3-mocs.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@xe_pm@s3-mocs.html
#### Warnings ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [DMESG-WARN][411] -> [DMESG-WARN][412] ([Intel XE#1033])
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][413] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][414] ([Intel XE#787]) +6 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][415] ([Intel XE#787]) -> [SKIP][416] ([Intel XE#455] / [Intel XE#787]) +6 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: [FAIL][417] ([Intel XE#1178]) -> [DMESG-FAIL][418] ([Intel XE#4172]) +1 other test dmesg-fail
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-7/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2-set2: [SKIP][419] ([Intel XE#309]) -> [INCOMPLETE][420] ([Intel XE#3226])
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [FAIL][421] ([Intel XE#3321]) -> [SKIP][422] ([Intel XE#2316])
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [SKIP][423] ([Intel XE#2316]) -> [FAIL][424] ([Intel XE#3321])
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
- shard-dg2-set2: [FAIL][425] ([Intel XE#301]) -> [SKIP][426] ([Intel XE#310])
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-dg2-set2: [DMESG-WARN][427] ([Intel XE#2955]) -> [DMESG-WARN][428] ([Intel XE#1033])
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2-set2: [SKIP][429] ([Intel XE#310]) -> [DMESG-WARN][430] ([Intel XE#1033])
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-dg2-set2: [DMESG-WARN][431] ([Intel XE#1033]) -> [SKIP][432] ([Intel XE#310])
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-466/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-bmg: [DMESG-FAIL][433] ([Intel XE#4172]) -> [FAIL][434] ([Intel XE#3321])
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank.html
- shard-dg2-set2: [DMESG-FAIL][435] ([Intel XE#1033]) -> [FAIL][436] ([Intel XE#301])
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg2-set2: [FAIL][437] ([Intel XE#301]) -> [DMESG-FAIL][438] ([Intel XE#1033])
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [DMESG-WARN][439] ([Intel XE#1033] / [Intel XE#2955]) -> [DMESG-WARN][440] ([Intel XE#1033])
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt:
- shard-dg2-set2: [SKIP][441] ([Intel XE#656]) -> [SKIP][442] ([Intel XE#651]) +5 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][443] ([Intel XE#2312]) -> [SKIP][444] ([Intel XE#2311]) +11 other tests skip
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][445] ([Intel XE#4141]) -> [SKIP][446] ([Intel XE#2312]) +1 other test skip
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][447] ([Intel XE#656]) -> [DMESG-WARN][448] ([Intel XE#1033]) +2 other tests dmesg-warn
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][449] ([Intel XE#2312]) -> [SKIP][450] ([Intel XE#4141]) +3 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][451] ([Intel XE#2311]) -> [SKIP][452] ([Intel XE#2312]) +12 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2-set2: [SKIP][453] ([Intel XE#651]) -> [SKIP][454] ([Intel XE#656]) +17 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][455] ([Intel XE#2312]) -> [SKIP][456] ([Intel XE#2313]) +8 other tests skip
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][457] ([Intel XE#653]) -> [SKIP][458] ([Intel XE#656]) +15 other tests skip
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][459] ([Intel XE#2313]) -> [SKIP][460] ([Intel XE#2312]) +15 other tests skip
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][461] ([Intel XE#656]) -> [SKIP][462] ([Intel XE#653]) +7 other tests skip
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-bmg: [INCOMPLETE][463] ([Intel XE#3663] / [Intel XE#4016]) -> [DMESG-WARN][464] ([Intel XE#4172])
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-4/igt@kms_pipe_crc_basic@suspend-read-crc.html
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_vrr@negative-basic:
- shard-dg2-set2: [DMESG-WARN][465] ([Intel XE#1033]) -> [SKIP][466] ([Intel XE#455])
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-466/igt@kms_vrr@negative-basic.html
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-464/igt@kms_vrr@negative-basic.html
* igt@xe_pm@s4-exec-after:
- shard-bmg: [ABORT][467] ([Intel XE#4268]) -> [ABORT][468] ([Intel XE#4054] / [Intel XE#4268])
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-bmg-5/igt@xe_pm@s4-exec-after.html
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-bmg-4/igt@xe_pm@s4-exec-after.html
* igt@xe_pm@s4-mocs:
- shard-dg2-set2: [ABORT][469] ([Intel XE#1033] / [Intel XE#4268]) -> [ABORT][470] ([Intel XE#4268])
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8230/shard-dg2-433/igt@xe_pm@s4-mocs.html
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/shard-dg2-434/igt@xe_pm@s4-mocs.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075
[Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#3663]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3663
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3701
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3746]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3746
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3914
[Intel XE#3924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3924
[Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010
[Intel XE#4016]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4016
[Intel XE#4054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4054
[Intel XE#4091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4091
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4259
[Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8230 -> IGTPW_12601
* Linux: xe-2665-57457d93f156d8b4bdff8d138127d81b8f97d8c9 -> xe-2668-200d035cec6632bcb33ad946aa7bfec6309d2ab6
IGTPW_12601: 06a774e9b262c15a09f7faf9feffd779477df60e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8230: 8230
xe-2665-57457d93f156d8b4bdff8d138127d81b8f97d8c9: 57457d93f156d8b4bdff8d138127d81b8f97d8c9
xe-2668-200d035cec6632bcb33ad946aa7bfec6309d2ab6: 200d035cec6632bcb33ad946aa7bfec6309d2ab6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12601/index.html
[-- Attachment #2: Type: text/html, Size: 120536 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t] tests/kms_color: Enable ctm-limited-range subtest
2025-02-14 21:04 ` Ville Syrjälä
@ 2025-02-18 7:23 ` Sharma, Swati2
2025-03-14 12:34 ` Sharma, Swati2
1 sibling, 0 replies; 13+ messages in thread
From: Sharma, Swati2 @ 2025-02-18 7:23 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: igt-dev
Hi Ville,
On 15-02-2025 02:34 am, Ville Syrjälä wrote:
> On Fri, Feb 14, 2025 at 11:56:27PM +0530, Sharma, Swati2 wrote:
>> Hi Ville,
>>
>> On 14-02-2025 11:00 pm, Ville Syrjälä wrote:
>>> On Fri, Feb 14, 2025 at 09:40:11PM +0530, Swati Sharma wrote:
>>>> This tests is currently disabled since CRC computed on Intel
>>>> hardware seems to include data on the lower bits, this is
>>>> preventing us to CRC checks.
>>>>
>>>> Let's try to enable it back and check behavior on newer Intel
>>>> platforms.
>>>>
>>>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>>>> ---
>>>> tests/kms_color.c | 166 ++++++++++++++++++++++++++--------------------
>>>> 1 file changed, 93 insertions(+), 73 deletions(-)
>>>>
>>>> diff --git a/tests/kms_color.c b/tests/kms_color.c
>>>> index 4b71d3dd3..c3b285b4e 100644
>>>> --- a/tests/kms_color.c
>>>> +++ b/tests/kms_color.c
>>>> @@ -58,6 +58,7 @@
>>>> * @0-75: for 0.75 transparency
>>>> * @blue-to-red: from blue to red
>>>> * @green-to-red: from green to red
>>>> + * @limited-range: with identity matrix
>>>> * @max: for maximum transparency
>>>> * @negative: for negative transparency
>>>> * @red-to-blue: from red to blue
>>>> @@ -623,107 +624,97 @@ static bool test_pipe_ctm(data_t *data,
>>>> * This test is currently disabled as the CRC computed on Intel hardware seems
>>>> * to include data on the lower bits, this is preventing us to CRC checks.
>>>> */
>>>> -#if 0
>>>> -static void test_pipe_limited_range_ctm(data_t *data,
>>>> +static bool test_pipe_limited_range_ctm(data_t *data,
>>>> igt_plane_t *primary)
>>>> {
>>>> double limited_result = 235.0 / 255.0;
>>>> - static const color_t red_green_blue_limited[] = {
>>>> + color_t red_green_blue_limited[] = {
>>>> { limited_result, 0.0, 0.0 },
>>>> { 0.0, limited_result, 0.0 },
>>>> - { 0.0, 0.0, limited_result },
>>>> + { 0.0, 0.0, limited_result }
>>>> };
>>> This whole thing is fundementally broken. We can't generate
>>> limited range output without using the CSC post offsets,
>>> which are not exposed via the current CTM uapi.
>> We do have its equivalent test in kms_color_chamelium
>> and it seems its passing
>> https://gfx-ci.igk.intel.com/cibuglog-ng/results/all?query_key=af49bc8e4e7d1c69ce04f9a1196c167456e8344a
>> Is it wrong?
> Hmm. Looks like the test has nothing really to do with the
> CTM (despite the name), and instead if just uses identity CTM
> and puts the limited range equivalent data directly into the
> fb. So I guess technically it could sort of work.
>
> For the chamelium version the port will chop off the extra
> low bits so I guess that explains why it works.
>
> The crc version is more tricky:
> - g4x presuambly won't work because the port color range
> bit won't affect the pipe crc
> - ilk-ivb/vlv/chv won't work because TRANSCONF_COLOR_RANGE_SELECT
> doesn't seem to affect the pipe crc either
> - icl+ uses the output csc for the limited range conversion
> so the gamma LUT lsb chopping doesn't do anything, so we may
> get some differences in the low bits
> - hsw-glk maybe could work if we do enable CTM+gamma since then
> we'll end up doing the limited range adjustment on the gamma LUT
> and thus it can chop off the low bits. If we didn't enable
> both CTM and gamma then the limited range conversion would be
> done on the pipe CSC and thus it would behave exactly like icl+.
So, is there anything we can do to fix this test to enable it back or
let it be in disabled
state only?
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t] tests/kms_color: Enable ctm-limited-range subtest
2025-02-14 21:04 ` Ville Syrjälä
2025-02-18 7:23 ` Sharma, Swati2
@ 2025-03-14 12:34 ` Sharma, Swati2
2025-03-14 13:08 ` Ville Syrjälä
1 sibling, 1 reply; 13+ messages in thread
From: Sharma, Swati2 @ 2025-03-14 12:34 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: igt-dev
Hi Ville,
On 15-02-2025 02:34 am, Ville Syrjälä wrote:
> On Fri, Feb 14, 2025 at 11:56:27PM +0530, Sharma, Swati2 wrote:
>> Hi Ville,
>>
>> On 14-02-2025 11:00 pm, Ville Syrjälä wrote:
>>> On Fri, Feb 14, 2025 at 09:40:11PM +0530, Swati Sharma wrote:
>>>> This tests is currently disabled since CRC computed on Intel
>>>> hardware seems to include data on the lower bits, this is
>>>> preventing us to CRC checks.
>>>>
>>>> Let's try to enable it back and check behavior on newer Intel
>>>> platforms.
>>>>
>>>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>>>> ---
>>>> tests/kms_color.c | 166 ++++++++++++++++++++++++++--------------------
>>>> 1 file changed, 93 insertions(+), 73 deletions(-)
>>>>
>>>> diff --git a/tests/kms_color.c b/tests/kms_color.c
>>>> index 4b71d3dd3..c3b285b4e 100644
>>>> --- a/tests/kms_color.c
>>>> +++ b/tests/kms_color.c
>>>> @@ -58,6 +58,7 @@
>>>> * @0-75: for 0.75 transparency
>>>> * @blue-to-red: from blue to red
>>>> * @green-to-red: from green to red
>>>> + * @limited-range: with identity matrix
>>>> * @max: for maximum transparency
>>>> * @negative: for negative transparency
>>>> * @red-to-blue: from red to blue
>>>> @@ -623,107 +624,97 @@ static bool test_pipe_ctm(data_t *data,
>>>> * This test is currently disabled as the CRC computed on Intel hardware seems
>>>> * to include data on the lower bits, this is preventing us to CRC checks.
>>>> */
>>>> -#if 0
>>>> -static void test_pipe_limited_range_ctm(data_t *data,
>>>> +static bool test_pipe_limited_range_ctm(data_t *data,
>>>> igt_plane_t *primary)
>>>> {
>>>> double limited_result = 235.0 / 255.0;
>>>> - static const color_t red_green_blue_limited[] = {
>>>> + color_t red_green_blue_limited[] = {
>>>> { limited_result, 0.0, 0.0 },
>>>> { 0.0, limited_result, 0.0 },
>>>> - { 0.0, 0.0, limited_result },
>>>> + { 0.0, 0.0, limited_result }
>>>> };
>>> This whole thing is fundementally broken. We can't generate
>>> limited range output without using the CSC post offsets,
>>> which are not exposed via the current CTM uapi.
>> We do have its equivalent test in kms_color_chamelium
>> and it seems its passing
>> https://gfx-ci.igk.intel.com/cibuglog-ng/results/all?query_key=af49bc8e4e7d1c69ce04f9a1196c167456e8344a
>> Is it wrong?
> Hmm. Looks like the test has nothing really to do with the
> CTM (despite the name), and instead if just uses identity CTM
> and puts the limited range equivalent data directly into the
> fb. So I guess technically it could sort of work.
>
> For the chamelium version the port will chop off the extra
> low bits so I guess that explains why it works.
I recently dumped port images of this test on chamelium. Since this test
is consistently passing on BMG; however failing on PTL.
What i observed is
/tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-A-DP-1-capture-ece4-ece4-ece4-ece4.png
/tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-A-DP-1-reference-0000-0000-0000-0000.png
/tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-B-DP-1-capture-ece4-ece4-ece4-ece4.png
/tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-B-DP-1-reference-0000-0000-0000-0000.png
/tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-C-DP-1-capture-ece4-ece4-ece4-ece4.png
/tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-C-DP-1-reference-0000-0000-0000-0000.png
/tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-D-DP-1-capture-ece4-ece4-ece4-ece4.png
/tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-D-DP-1-reference-0000-0000-0000-0000.png
CRC of reference and captured images are not same. Ref is all black. But
still test is passing :/
Is test broken even for chamelium?
>
> The crc version is more tricky:
> - g4x presuambly won't work because the port color range
> bit won't affect the pipe crc
> - ilk-ivb/vlv/chv won't work because TRANSCONF_COLOR_RANGE_SELECT
> doesn't seem to affect the pipe crc either
> - icl+ uses the output csc for the limited range conversion
> so the gamma LUT lsb chopping doesn't do anything, so we may
> get some differences in the low bits
> - hsw-glk maybe could work if we do enable CTM+gamma since then
> we'll end up doing the limited range adjustment on the gamma LUT
> and thus it can chop off the low bits. If we didn't enable
> both CTM and gamma then the limited range conversion would be
> done on the pipe CSC and thus it would behave exactly like icl+.
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t] tests/kms_color: Enable ctm-limited-range subtest
2025-03-14 12:34 ` Sharma, Swati2
@ 2025-03-14 13:08 ` Ville Syrjälä
2025-03-25 6:01 ` Sharma, Swati2
0 siblings, 1 reply; 13+ messages in thread
From: Ville Syrjälä @ 2025-03-14 13:08 UTC (permalink / raw)
To: Sharma, Swati2; +Cc: igt-dev
On Fri, Mar 14, 2025 at 06:04:07PM +0530, Sharma, Swati2 wrote:
> Hi Ville,
>
> On 15-02-2025 02:34 am, Ville Syrjälä wrote:
> > On Fri, Feb 14, 2025 at 11:56:27PM +0530, Sharma, Swati2 wrote:
> >> Hi Ville,
> >>
> >> On 14-02-2025 11:00 pm, Ville Syrjälä wrote:
> >>> On Fri, Feb 14, 2025 at 09:40:11PM +0530, Swati Sharma wrote:
> >>>> This tests is currently disabled since CRC computed on Intel
> >>>> hardware seems to include data on the lower bits, this is
> >>>> preventing us to CRC checks.
> >>>>
> >>>> Let's try to enable it back and check behavior on newer Intel
> >>>> platforms.
> >>>>
> >>>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> >>>> ---
> >>>> tests/kms_color.c | 166 ++++++++++++++++++++++++++--------------------
> >>>> 1 file changed, 93 insertions(+), 73 deletions(-)
> >>>>
> >>>> diff --git a/tests/kms_color.c b/tests/kms_color.c
> >>>> index 4b71d3dd3..c3b285b4e 100644
> >>>> --- a/tests/kms_color.c
> >>>> +++ b/tests/kms_color.c
> >>>> @@ -58,6 +58,7 @@
> >>>> * @0-75: for 0.75 transparency
> >>>> * @blue-to-red: from blue to red
> >>>> * @green-to-red: from green to red
> >>>> + * @limited-range: with identity matrix
> >>>> * @max: for maximum transparency
> >>>> * @negative: for negative transparency
> >>>> * @red-to-blue: from red to blue
> >>>> @@ -623,107 +624,97 @@ static bool test_pipe_ctm(data_t *data,
> >>>> * This test is currently disabled as the CRC computed on Intel hardware seems
> >>>> * to include data on the lower bits, this is preventing us to CRC checks.
> >>>> */
> >>>> -#if 0
> >>>> -static void test_pipe_limited_range_ctm(data_t *data,
> >>>> +static bool test_pipe_limited_range_ctm(data_t *data,
> >>>> igt_plane_t *primary)
> >>>> {
> >>>> double limited_result = 235.0 / 255.0;
> >>>> - static const color_t red_green_blue_limited[] = {
> >>>> + color_t red_green_blue_limited[] = {
> >>>> { limited_result, 0.0, 0.0 },
> >>>> { 0.0, limited_result, 0.0 },
> >>>> - { 0.0, 0.0, limited_result },
> >>>> + { 0.0, 0.0, limited_result }
> >>>> };
> >>> This whole thing is fundementally broken. We can't generate
> >>> limited range output without using the CSC post offsets,
> >>> which are not exposed via the current CTM uapi.
> >> We do have its equivalent test in kms_color_chamelium
> >> and it seems its passing
> >> https://gfx-ci.igk.intel.com/cibuglog-ng/results/all?query_key=af49bc8e4e7d1c69ce04f9a1196c167456e8344a
> >> Is it wrong?
> > Hmm. Looks like the test has nothing really to do with the
> > CTM (despite the name), and instead if just uses identity CTM
> > and puts the limited range equivalent data directly into the
> > fb. So I guess technically it could sort of work.
> >
> > For the chamelium version the port will chop off the extra
> > low bits so I guess that explains why it works.
> I recently dumped port images of this test on chamelium. Since this test
> is consistently passing on BMG; however failing on PTL.
>
> What i observed is
>
> /tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-A-DP-1-capture-ece4-ece4-ece4-ece4.png
> /tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-A-DP-1-reference-0000-0000-0000-0000.png
> /tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-B-DP-1-capture-ece4-ece4-ece4-ece4.png
> /tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-B-DP-1-reference-0000-0000-0000-0000.png
> /tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-C-DP-1-capture-ece4-ece4-ece4-ece4.png
> /tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-C-DP-1-reference-0000-0000-0000-0000.png
> /tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-D-DP-1-capture-ece4-ece4-ece4-ece4.png
> /tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-D-DP-1-reference-0000-0000-0000-0000.png
>
> CRC of reference and captured images are not same. Ref is all black. But
> still test is passing :/
> Is test broken even for chamelium?
Looks like it:
1. creates a bunch of all black fbs
2. manually draw limited range equivalent content into one fb
3. set the output to full range
4. commit
5. redraw the same fb with full range contnet
6. set the output to limited range
7 *no* commit
6. capture the frame and compare against the all black fbref
So looks completely broken to me, and I don't see how that could
be passing on anything unless the chamelium frame comparison code
itself is broken.
> >
> > The crc version is more tricky:
> > - g4x presuambly won't work because the port color range
> > bit won't affect the pipe crc
> > - ilk-ivb/vlv/chv won't work because TRANSCONF_COLOR_RANGE_SELECT
> > doesn't seem to affect the pipe crc either
> > - icl+ uses the output csc for the limited range conversion
> > so the gamma LUT lsb chopping doesn't do anything, so we may
> > get some differences in the low bits
> > - hsw-glk maybe could work if we do enable CTM+gamma since then
> > we'll end up doing the limited range adjustment on the gamma LUT
> > and thus it can chop off the low bits. If we didn't enable
> > both CTM and gamma then the limited range conversion would be
> > done on the pipe CSC and thus it would behave exactly like icl+.
> >
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t] tests/kms_color: Enable ctm-limited-range subtest
2025-03-14 13:08 ` Ville Syrjälä
@ 2025-03-25 6:01 ` Sharma, Swati2
0 siblings, 0 replies; 13+ messages in thread
From: Sharma, Swati2 @ 2025-03-25 6:01 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: igt-dev
Hi Ville,
On 14-03-2025 06:38 pm, Ville Syrjälä wrote:
> On Fri, Mar 14, 2025 at 06:04:07PM +0530, Sharma, Swati2 wrote:
>> Hi Ville,
>>
>> On 15-02-2025 02:34 am, Ville Syrjälä wrote:
>>> On Fri, Feb 14, 2025 at 11:56:27PM +0530, Sharma, Swati2 wrote:
>>>> Hi Ville,
>>>>
>>>> On 14-02-2025 11:00 pm, Ville Syrjälä wrote:
>>>>> On Fri, Feb 14, 2025 at 09:40:11PM +0530, Swati Sharma wrote:
>>>>>> This tests is currently disabled since CRC computed on Intel
>>>>>> hardware seems to include data on the lower bits, this is
>>>>>> preventing us to CRC checks.
>>>>>>
>>>>>> Let's try to enable it back and check behavior on newer Intel
>>>>>> platforms.
>>>>>>
>>>>>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>>>>>> ---
>>>>>> tests/kms_color.c | 166 ++++++++++++++++++++++++++--------------------
>>>>>> 1 file changed, 93 insertions(+), 73 deletions(-)
>>>>>>
>>>>>> diff --git a/tests/kms_color.c b/tests/kms_color.c
>>>>>> index 4b71d3dd3..c3b285b4e 100644
>>>>>> --- a/tests/kms_color.c
>>>>>> +++ b/tests/kms_color.c
>>>>>> @@ -58,6 +58,7 @@
>>>>>> * @0-75: for 0.75 transparency
>>>>>> * @blue-to-red: from blue to red
>>>>>> * @green-to-red: from green to red
>>>>>> + * @limited-range: with identity matrix
>>>>>> * @max: for maximum transparency
>>>>>> * @negative: for negative transparency
>>>>>> * @red-to-blue: from red to blue
>>>>>> @@ -623,107 +624,97 @@ static bool test_pipe_ctm(data_t *data,
>>>>>> * This test is currently disabled as the CRC computed on Intel hardware seems
>>>>>> * to include data on the lower bits, this is preventing us to CRC checks.
>>>>>> */
>>>>>> -#if 0
>>>>>> -static void test_pipe_limited_range_ctm(data_t *data,
>>>>>> +static bool test_pipe_limited_range_ctm(data_t *data,
>>>>>> igt_plane_t *primary)
>>>>>> {
>>>>>> double limited_result = 235.0 / 255.0;
>>>>>> - static const color_t red_green_blue_limited[] = {
>>>>>> + color_t red_green_blue_limited[] = {
>>>>>> { limited_result, 0.0, 0.0 },
>>>>>> { 0.0, limited_result, 0.0 },
>>>>>> - { 0.0, 0.0, limited_result },
>>>>>> + { 0.0, 0.0, limited_result }
>>>>>> };
>>>>> This whole thing is fundementally broken. We can't generate
>>>>> limited range output without using the CSC post offsets,
>>>>> which are not exposed via the current CTM uapi.
>>>> We do have its equivalent test in kms_color_chamelium
>>>> and it seems its passing
>>>> https://gfx-ci.igk.intel.com/cibuglog-ng/results/all?query_key=af49bc8e4e7d1c69ce04f9a1196c167456e8344a
>>>> Is it wrong?
>>> Hmm. Looks like the test has nothing really to do with the
>>> CTM (despite the name), and instead if just uses identity CTM
>>> and puts the limited range equivalent data directly into the
>>> fb. So I guess technically it could sort of work.
>>>
>>> For the chamelium version the port will chop off the extra
>>> low bits so I guess that explains why it works.
>> I recently dumped port images of this test on chamelium. Since this test
>> is consistently passing on BMG; however failing on PTL.
>>
>> What i observed is
>>
>> /tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-A-DP-1-capture-ece4-ece4-ece4-ece4.png
>> /tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-A-DP-1-reference-0000-0000-0000-0000.png
>> /tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-B-DP-1-capture-ece4-ece4-ece4-ece4.png
>> /tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-B-DP-1-reference-0000-0000-0000-0000.png
>> /tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-C-DP-1-capture-ece4-ece4-ece4-ece4.png
>> /tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-C-DP-1-reference-0000-0000-0000-0000.png
>> /tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-D-DP-1-capture-ece4-ece4-ece4-ece4.png
>> /tmp/frame-kms_chamelium_color-ctm-limited-range-pipe-D-DP-1-reference-0000-0000-0000-0000.png
>>
>> CRC of reference and captured images are not same. Ref is all black. But
>> still test is passing :/
>> Is test broken even for chamelium?
> Looks like it:
> 1. creates a bunch of all black fbs
> 2. manually draw limited range equivalent content into one fb
> 3. set the output to full range
> 4. commit
> 5. redraw the same fb with full range contnet
> 6. set the output to limited range
> 7 *no* commit
> 6. capture the frame and compare against the all black fbref
>
> So looks completely broken to me, and I don't see how that could
> be passing on anything unless the chamelium frame comparison code
> itself is broken.
Tried fixing the test. Can you please review
https://patchwork.freedesktop.org/series/146647/
With these frame dumps match however CRC differs as expected.
>
>>> The crc version is more tricky:
>>> - g4x presuambly won't work because the port color range
>>> bit won't affect the pipe crc
>>> - ilk-ivb/vlv/chv won't work because TRANSCONF_COLOR_RANGE_SELECT
>>> doesn't seem to affect the pipe crc either
>>> - icl+ uses the output csc for the limited range conversion
>>> so the gamma LUT lsb chopping doesn't do anything, so we may
>>> get some differences in the low bits
>>> - hsw-glk maybe could work if we do enable CTM+gamma since then
>>> we'll end up doing the limited range adjustment on the gamma LUT
>>> and thus it can chop off the low bits. If we didn't enable
>>> both CTM and gamma then the limited range conversion would be
>>> done on the pipe CSC and thus it would behave exactly like icl+.
>>>
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-03-25 6:01 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-14 16:10 [PATCH i-g-t] tests/kms_color: Enable ctm-limited-range subtest Swati Sharma
2025-02-14 17:30 ` Ville Syrjälä
2025-02-14 18:26 ` Sharma, Swati2
2025-02-14 21:04 ` Ville Syrjälä
2025-02-18 7:23 ` Sharma, Swati2
2025-03-14 12:34 ` Sharma, Swati2
2025-03-14 13:08 ` Ville Syrjälä
2025-03-25 6:01 ` Sharma, Swati2
2025-02-14 22:18 ` ✓ i915.CI.BAT: success for tests/kms_color: Enable ctm-limited-range subtest (rev2) Patchwork
2025-02-14 22:50 ` ✓ Xe.CI.BAT: " Patchwork
2025-02-15 0:49 ` ✓ i915.CI.Full: " Patchwork
2025-02-16 0:02 ` ✗ Xe.CI.Full: failure " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2025-02-14 13:00 [PATCH i-g-t] tests/kms_color: Enable ctm-limited-range subtest Swati Sharma
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox