* [PATCH i-g-t v1 1/5] tests/kms_plane_scaling: Update scaling functions to return error codes
2024-09-05 14:50 [PATCH i-g-t v1 0/5] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
@ 2024-09-05 14:50 ` Naladala Ramanaidu
2024-09-10 7:06 ` Sharma, Swati2
2024-09-05 14:50 ` [PATCH i-g-t v1 2/5] tests/kms_plane_scaling: Add informative logs for single plane scaling operations Naladala Ramanaidu
` (10 subsequent siblings)
11 siblings, 1 reply; 17+ messages in thread
From: Naladala Ramanaidu @ 2024-09-05 14:50 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, Naladala Ramanaidu
This will ensures that the system can automatically find a suitable
configuration, improving the robustness and flexibility of the
testing process. Introduce a `ret` variable to capture the return
value of scaling operations. Modify `check_scaling_pipe_plane_rot`
to return an integer error code instead of void. Update
`test_scaler_with_modifier_pipe`, `test_scaler_with_rotation_pipe`,
and `test_scaler_with_pixel_format_pipe` to handle the returned
error code.
v1: fix crash issues. (Swati)
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/kms_plane_scaling.c | 263 +++++++++++++++++++++-----------------
1 file changed, 148 insertions(+), 115 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 42eb67409..5c5837a51 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -566,15 +566,16 @@ static void cleanup_crtc(data_t *data)
cleanup_fbs(data);
}
-static void check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
- uint32_t pixel_format,
- uint64_t modifier,
- double sf_plane,
- bool is_clip_clamp,
- bool is_upscale,
- enum pipe pipe,
- igt_output_t *output,
- igt_rotation_t rot)
+static uint32_t
+check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
+ uint32_t pixel_format,
+ uint64_t modifier,
+ double sf_plane,
+ bool is_clip_clamp,
+ bool is_upscale,
+ enum pipe pipe,
+ igt_output_t *output,
+ igt_rotation_t rot)
{
igt_display_t *display = &d->display;
drmModeModeInfo *mode;
@@ -634,11 +635,7 @@ static void check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
if (commit_ret == 0)
break;
}
-
- igt_skip_on_f(commit_ret == -ERANGE || commit_ret == -EINVAL,
- "Unsupported scaling operation in driver with return value %s\n",
- (commit_ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
- igt_assert_eq(commit_ret, 0);
+ return commit_ret;
}
static const igt_rotation_t rotations[] = {
@@ -710,16 +707,18 @@ static const uint64_t modifiers[] = {
I915_FORMAT_MOD_4_TILED
};
-static void test_scaler_with_modifier_pipe(data_t *d,
- double sf_plane,
- bool is_clip_clamp,
- bool is_upscale,
- enum pipe pipe,
- igt_output_t *output)
+static uint32_t
+test_scaler_with_modifier_pipe(data_t *d,
+ double sf_plane,
+ bool is_clip_clamp,
+ bool is_upscale,
+ enum pipe pipe,
+ igt_output_t *output)
{
igt_display_t *display = &d->display;
unsigned format = DRM_FORMAT_XRGB8888;
igt_plane_t *plane;
+ uint32_t ret;
cleanup_crtc(d);
@@ -733,28 +732,33 @@ static void test_scaler_with_modifier_pipe(data_t *d,
uint64_t modifier = modifiers[i];
if (igt_plane_has_format_mod(plane, format, modifier))
- check_scaling_pipe_plane_rot(d, plane,
- format, modifier,
- sf_plane,
- is_clip_clamp,
- is_upscale,
- pipe, output,
- IGT_ROTATION_0);
+ ret = check_scaling_pipe_plane_rot(d, plane,
+ format, modifier,
+ sf_plane,
+ is_clip_clamp,
+ is_upscale,
+ pipe, output,
+ IGT_ROTATION_0);
+ if (ret != 0)
+ return ret;
}
}
+ return ret;
}
-static void test_scaler_with_rotation_pipe(data_t *d,
- double sf_plane,
- bool is_clip_clamp,
- bool is_upscale,
- enum pipe pipe,
- igt_output_t *output)
+static uint32_t
+test_scaler_with_rotation_pipe(data_t *d,
+ double sf_plane,
+ bool is_clip_clamp,
+ bool is_upscale,
+ enum pipe pipe,
+ igt_output_t *output)
{
igt_display_t *display = &d->display;
unsigned format = DRM_FORMAT_XRGB8888;
uint64_t modifier = DRM_FORMAT_MOD_LINEAR;
igt_plane_t *plane;
+ uint32_t ret;
cleanup_crtc(d);
@@ -768,26 +772,31 @@ static void test_scaler_with_rotation_pipe(data_t *d,
igt_rotation_t rot = rotations[i];
if (igt_plane_has_rotation(plane, rot))
- check_scaling_pipe_plane_rot(d, plane,
- format, modifier,
- sf_plane,
- is_clip_clamp,
- is_upscale,
- pipe, output,
- rot);
+ ret = check_scaling_pipe_plane_rot(d, plane,
+ format, modifier,
+ sf_plane,
+ is_clip_clamp,
+ is_upscale,
+ pipe, output,
+ rot);
+ if (ret != 0)
+ return ret;
}
}
+ return ret;
}
-static void test_scaler_with_pixel_format_pipe(data_t *d, double sf_plane,
- bool is_clip_clamp,
- bool is_upscale,
- enum pipe pipe,
- igt_output_t *output)
+static uint32_t
+test_scaler_with_pixel_format_pipe(data_t *d, double sf_plane,
+ bool is_clip_clamp,
+ bool is_upscale,
+ enum pipe pipe,
+ igt_output_t *output)
{
igt_display_t *display = &d->display;
uint64_t modifier = DRM_FORMAT_MOD_LINEAR;
igt_plane_t *plane;
+ uint32_t ret;
cleanup_crtc(d);
@@ -810,17 +819,21 @@ static void test_scaler_with_pixel_format_pipe(data_t *d, double sf_plane,
if (test_format(d, &tested_formats, format) &&
igt_plane_has_format_mod(plane, format, modifier) &&
can_scale(d, format))
- check_scaling_pipe_plane_rot(d, plane,
- format, modifier,
- sf_plane,
- is_clip_clamp,
- is_upscale,
- pipe, output,
- IGT_ROTATION_0);
+ ret = check_scaling_pipe_plane_rot(d, plane,
+ format, modifier,
+ sf_plane,
+ is_clip_clamp,
+ is_upscale,
+ pipe, output,
+ IGT_ROTATION_0);
+ if (ret != 0) {
+ igt_vec_fini(&tested_formats);
+ return ret;
+ }
}
-
igt_vec_fini(&tested_formats);
}
+ return ret;
}
static enum pipe
@@ -1327,6 +1340,7 @@ static data_t data;
igt_main_args("", long_opts, help_str, opt_handler, &data)
{
enum pipe pipe;
+ uint32_t ret = -EINVAL;
igt_fixture {
data.drm_fd = drm_open_driver_master(DRIVER_ANY);
@@ -1343,21 +1357,23 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_describe(scaler_with_pixel_format_tests[index].describe);
igt_subtest_with_dynamic(scaler_with_pixel_format_tests[index].name) {
for_each_pipe(&data.display, pipe) {
- for_each_valid_output_on_pipe(&data.display, pipe, output) {
- if (!pipe_output_combo_valid(&data.display, pipe, output))
- continue;
- if (get_num_scalers(&data.display, pipe) < 1)
- continue;
-
- igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
-
- test_scaler_with_pixel_format_pipe(&data,
+ igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
+ for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ if (!pipe_output_combo_valid(&data.display, pipe, output))
+ continue;
+ if (get_num_scalers(&data.display, pipe) < 1)
+ continue;
+ ret = test_scaler_with_pixel_format_pipe(&data,
scaler_with_pixel_format_tests[index].sf,
false,
scaler_with_pixel_format_tests[index].is_upscale,
pipe, output);
+ if (ret == 0)
+ break;
}
- break;
+ igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
+ "Unsupported scaling operation in driver with return value %s\n",
+ (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
}
}
}
@@ -1367,21 +1383,24 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_describe(scaler_with_rotation_tests[index].describe);
igt_subtest_with_dynamic(scaler_with_rotation_tests[index].name) {
for_each_pipe(&data.display, pipe) {
- for_each_valid_output_on_pipe(&data.display, pipe, output) {
- if (!pipe_output_combo_valid(&data.display, pipe, output))
- continue;
- if (get_num_scalers(&data.display, pipe) < 1)
- continue;
-
- igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
-
- test_scaler_with_rotation_pipe(&data,
+ igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
+ for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ if (!pipe_output_combo_valid(&data.display, pipe, output))
+ continue;
+ if (get_num_scalers(&data.display, pipe) < 1)
+ continue;
+
+ ret = test_scaler_with_rotation_pipe(&data,
scaler_with_rotation_tests[index].sf,
false,
scaler_with_rotation_tests[index].is_upscale,
pipe, output);
+ if (ret == 0)
+ break;
}
- break;
+ igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
+ "Unsupported scaling operation in driver with return value %s\n",
+ (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
}
}
}
@@ -1391,21 +1410,24 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_describe(scaler_with_modifiers_tests[index].describe);
igt_subtest_with_dynamic(scaler_with_modifiers_tests[index].name) {
for_each_pipe(&data.display, pipe) {
- for_each_valid_output_on_pipe(&data.display, pipe, output) {
- if (!pipe_output_combo_valid(&data.display, pipe, output))
- continue;
- if (get_num_scalers(&data.display, pipe) < 1)
- continue;
-
- igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
-
- test_scaler_with_modifier_pipe(&data,
+ igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
+ for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ if (!pipe_output_combo_valid(&data.display, pipe, output))
+ continue;
+ if (get_num_scalers(&data.display, pipe) < 1)
+ continue;
+
+ ret = test_scaler_with_modifier_pipe(&data,
scaler_with_modifiers_tests[index].sf,
false,
scaler_with_modifiers_tests[index].is_upscale,
pipe, output);
+ if (ret == 0)
+ break;
}
- break;
+ igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
+ "Unsupported scaling operation in driver with return value %s\n",
+ (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
}
}
}
@@ -1414,39 +1436,46 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_describe("Tests scaling with clipping and clamping, pixel formats.");
igt_subtest_with_dynamic("plane-scaler-with-clipping-clamping-pixel-formats") {
for_each_pipe(&data.display, pipe) {
- for_each_valid_output_on_pipe(&data.display, pipe, output) {
- if (!pipe_output_combo_valid(&data.display, pipe, output))
- continue;
- if (get_num_scalers(&data.display, pipe) < 1)
- continue;
-
- igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
+ igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
+ for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ if (!pipe_output_combo_valid(&data.display, pipe, output))
+ continue;
+ if (get_num_scalers(&data.display, pipe) < 1)
+ continue;
- test_scaler_with_pixel_format_pipe(&data, 0.0, true,
- false, pipe,
- output);
+ ret = test_scaler_with_pixel_format_pipe(&data, 0.0, true,
+ false, pipe,
+ output);
+ if (ret == 0)
+ break;
}
- break;
+ igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
+ "Unsupported scaling operation in driver with return value %s\n",
+ (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
}
}
}
+
igt_describe("Tests scaling with clipping and clamping, rotation.");
igt_subtest_with_dynamic("plane-scaler-with-clipping-clamping-rotation") {
for_each_pipe(&data.display, pipe) {
- for_each_valid_output_on_pipe(&data.display, pipe, output) {
- if (!pipe_output_combo_valid(&data.display, pipe, output))
- continue;
- if (get_num_scalers(&data.display, pipe) < 1)
- continue;
-
- igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
+ igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
+ for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ if (!pipe_output_combo_valid(&data.display, pipe, output))
+ continue;
+ if (get_num_scalers(&data.display, pipe) < 1)
+ continue;
- test_scaler_with_rotation_pipe(&data, 0.0, true,
- false, pipe,
- output);
+ ret = test_scaler_with_rotation_pipe(&data, 0.0, true,
+ false, pipe,
+ output);
+ if (ret == 0)
+ break;
}
- break;
+ igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
+ "Unsupported scaling operation in driver with return value %s\n",
+ (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
}
}
}
@@ -1454,18 +1483,22 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_describe("Tests scaling with clipping and clamping, modifiers.");
igt_subtest_with_dynamic("plane-scaler-with-clipping-clamping-modifiers") {
for_each_pipe(&data.display, pipe) {
- for_each_valid_output_on_pipe(&data.display, pipe, output) {
- if (!pipe_output_combo_valid(&data.display, pipe, output))
- continue;
- if (get_num_scalers(&data.display, pipe) < 1)
- continue;
+ igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
+ for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ if (!pipe_output_combo_valid(&data.display, pipe, output))
+ continue;
+ if (get_num_scalers(&data.display, pipe) < 1)
+ continue;
- igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
- test_scaler_with_modifier_pipe(&data, 0.0, true,
- false, pipe,
- output);
+ ret = test_scaler_with_modifier_pipe(&data, 0.0, true,
+ false, pipe,
+ output);
+ if (ret == 0)
+ break;
}
- break;
+ igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
+ "Unsupported scaling operation in driver with return value %s\n",
+ (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
}
}
}
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread* Re: [PATCH i-g-t v1 1/5] tests/kms_plane_scaling: Update scaling functions to return error codes
2024-09-05 14:50 ` [PATCH i-g-t v1 1/5] tests/kms_plane_scaling: Update scaling functions to return error codes Naladala Ramanaidu
@ 2024-09-10 7:06 ` Sharma, Swati2
0 siblings, 0 replies; 17+ messages in thread
From: Sharma, Swati2 @ 2024-09-10 7:06 UTC (permalink / raw)
To: Naladala Ramanaidu, igt-dev
Hi Ramanaidu,
On 05-Sep-24 8:20 PM, Naladala Ramanaidu wrote:
> This will ensures that the system can automatically find a suitable
> configuration, improving the robustness and flexibility of the
> testing process. Introduce a `ret` variable to capture the return
> value of scaling operations. Modify `check_scaling_pipe_plane_rot`
> to return an integer error code instead of void. Update
> `test_scaler_with_modifier_pipe`, `test_scaler_with_rotation_pipe`,
> and `test_scaler_with_pixel_format_pipe` to handle the returned
> error code.
>
> v1: fix crash issues. (Swati)
>
> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
> ---
> tests/kms_plane_scaling.c | 263 +++++++++++++++++++++-----------------
> 1 file changed, 148 insertions(+), 115 deletions(-)
>
> diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
> index 42eb67409..5c5837a51 100644
> --- a/tests/kms_plane_scaling.c
> +++ b/tests/kms_plane_scaling.c
> @@ -566,15 +566,16 @@ static void cleanup_crtc(data_t *data)
> cleanup_fbs(data);
> }
>
> -static void check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
> - uint32_t pixel_format,
> - uint64_t modifier,
> - double sf_plane,
> - bool is_clip_clamp,
> - bool is_upscale,
> - enum pipe pipe,
> - igt_output_t *output,
> - igt_rotation_t rot)
> +static uint32_t
> +check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
> + uint32_t pixel_format,
> + uint64_t modifier,
> + double sf_plane,
> + bool is_clip_clamp,
> + bool is_upscale,
> + enum pipe pipe,
> + igt_output_t *output,
> + igt_rotation_t rot)
> {
> igt_display_t *display = &d->display;
> drmModeModeInfo *mode;
> @@ -634,11 +635,7 @@ static void check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
> if (commit_ret == 0)
> break;
> }
> -
> - igt_skip_on_f(commit_ret == -ERANGE || commit_ret == -EINVAL,
> - "Unsupported scaling operation in driver with return value %s\n",
> - (commit_ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
> - igt_assert_eq(commit_ret, 0);
> + return commit_ret;
> }
>
> static const igt_rotation_t rotations[] = {
> @@ -710,16 +707,18 @@ static const uint64_t modifiers[] = {
> I915_FORMAT_MOD_4_TILED
> };
>
> -static void test_scaler_with_modifier_pipe(data_t *d,
> - double sf_plane,
> - bool is_clip_clamp,
> - bool is_upscale,
> - enum pipe pipe,
> - igt_output_t *output)
> +static uint32_t
> +test_scaler_with_modifier_pipe(data_t *d,
> + double sf_plane,
> + bool is_clip_clamp,
> + bool is_upscale,
> + enum pipe pipe,
> + igt_output_t *output)
> {
> igt_display_t *display = &d->display;
> unsigned format = DRM_FORMAT_XRGB8888;
> igt_plane_t *plane;
> + uint32_t ret;
>
> cleanup_crtc(d);
>
> @@ -733,28 +732,33 @@ static void test_scaler_with_modifier_pipe(data_t *d,
> uint64_t modifier = modifiers[i];
>
> if (igt_plane_has_format_mod(plane, format, modifier))
> - check_scaling_pipe_plane_rot(d, plane,
> - format, modifier,
> - sf_plane,
> - is_clip_clamp,
> - is_upscale,
> - pipe, output,
> - IGT_ROTATION_0);
> + ret = check_scaling_pipe_plane_rot(d, plane,
> + format, modifier,
> + sf_plane,
> + is_clip_clamp,
> + is_upscale,
> + pipe, output,
> + IGT_ROTATION_0);
> + if (ret != 0)
> + return ret;
> }
> }
> + return ret;
> }
>
> -static void test_scaler_with_rotation_pipe(data_t *d,
> - double sf_plane,
> - bool is_clip_clamp,
> - bool is_upscale,
> - enum pipe pipe,
> - igt_output_t *output)
> +static uint32_t
> +test_scaler_with_rotation_pipe(data_t *d,
> + double sf_plane,
> + bool is_clip_clamp,
> + bool is_upscale,
> + enum pipe pipe,
> + igt_output_t *output)
> {
> igt_display_t *display = &d->display;
> unsigned format = DRM_FORMAT_XRGB8888;
> uint64_t modifier = DRM_FORMAT_MOD_LINEAR;
> igt_plane_t *plane;
> + uint32_t ret;
>
> cleanup_crtc(d);
>
> @@ -768,26 +772,31 @@ static void test_scaler_with_rotation_pipe(data_t *d,
> igt_rotation_t rot = rotations[i];
>
> if (igt_plane_has_rotation(plane, rot))
> - check_scaling_pipe_plane_rot(d, plane,
> - format, modifier,
> - sf_plane,
> - is_clip_clamp,
> - is_upscale,
> - pipe, output,
> - rot);
> + ret = check_scaling_pipe_plane_rot(d, plane,
> + format, modifier,
> + sf_plane,
> + is_clip_clamp,
> + is_upscale,
> + pipe, output,
> + rot);
> + if (ret != 0)
> + return ret;
> }
> }
> + return ret;
> }
>
> -static void test_scaler_with_pixel_format_pipe(data_t *d, double sf_plane,
> - bool is_clip_clamp,
> - bool is_upscale,
> - enum pipe pipe,
> - igt_output_t *output)
> +static uint32_t
> +test_scaler_with_pixel_format_pipe(data_t *d, double sf_plane,
> + bool is_clip_clamp,
> + bool is_upscale,
> + enum pipe pipe,
> + igt_output_t *output)
> {
> igt_display_t *display = &d->display;
> uint64_t modifier = DRM_FORMAT_MOD_LINEAR;
> igt_plane_t *plane;
> + uint32_t ret;
>
> cleanup_crtc(d);
>
> @@ -810,17 +819,21 @@ static void test_scaler_with_pixel_format_pipe(data_t *d, double sf_plane,
> if (test_format(d, &tested_formats, format) &&
> igt_plane_has_format_mod(plane, format, modifier) &&
> can_scale(d, format))
> - check_scaling_pipe_plane_rot(d, plane,
> - format, modifier,
> - sf_plane,
> - is_clip_clamp,
> - is_upscale,
> - pipe, output,
> - IGT_ROTATION_0);
> + ret = check_scaling_pipe_plane_rot(d, plane,
> + format, modifier,
> + sf_plane,
> + is_clip_clamp,
> + is_upscale,
> + pipe, output,
> + IGT_ROTATION_0);
> + if (ret != 0) {
> + igt_vec_fini(&tested_formats);
> + return ret;
> + }
> }
> -
> igt_vec_fini(&tested_formats);
> }
> + return ret;
> }
>
> static enum pipe
> @@ -1327,6 +1340,7 @@ static data_t data;
> igt_main_args("", long_opts, help_str, opt_handler, &data)
> {
> enum pipe pipe;
> + uint32_t ret = -EINVAL;
>
> igt_fixture {
> data.drm_fd = drm_open_driver_master(DRIVER_ANY);
> @@ -1343,21 +1357,23 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> igt_describe(scaler_with_pixel_format_tests[index].describe);
> igt_subtest_with_dynamic(scaler_with_pixel_format_tests[index].name) {
> for_each_pipe(&data.display, pipe) {
> - for_each_valid_output_on_pipe(&data.display, pipe, output) {
> - if (!pipe_output_combo_valid(&data.display, pipe, output))
> - continue;
> - if (get_num_scalers(&data.display, pipe) < 1)
> - continue;
> -
> - igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> -
> - test_scaler_with_pixel_format_pipe(&data,
> + igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
> + for_each_valid_output_on_pipe(&data.display, pipe, output) {
> + if (!pipe_output_combo_valid(&data.display, pipe, output))
> + continue;
> + if (get_num_scalers(&data.display, pipe) < 1)
> + continue;
Add a new line here.
With this fixed.
Reviewed-by: Swati Sharma <swati2.sharma@intel.com>
> + ret = test_scaler_with_pixel_format_pipe(&data,
> scaler_with_pixel_format_tests[index].sf,
> false,
> scaler_with_pixel_format_tests[index].is_upscale,
> pipe, output);
> + if (ret == 0)
> + break;
> }
> - break;
> + igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> + "Unsupported scaling operation in driver with return value %s\n",
> + (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
> }
> }
> }
> @@ -1367,21 +1383,24 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> igt_describe(scaler_with_rotation_tests[index].describe);
> igt_subtest_with_dynamic(scaler_with_rotation_tests[index].name) {
> for_each_pipe(&data.display, pipe) {
> - for_each_valid_output_on_pipe(&data.display, pipe, output) {
> - if (!pipe_output_combo_valid(&data.display, pipe, output))
> - continue;
> - if (get_num_scalers(&data.display, pipe) < 1)
> - continue;
> -
> - igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> -
> - test_scaler_with_rotation_pipe(&data,
> + igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
> + for_each_valid_output_on_pipe(&data.display, pipe, output) {
> + if (!pipe_output_combo_valid(&data.display, pipe, output))
> + continue;
> + if (get_num_scalers(&data.display, pipe) < 1)
> + continue;
> +
> + ret = test_scaler_with_rotation_pipe(&data,
> scaler_with_rotation_tests[index].sf,
> false,
> scaler_with_rotation_tests[index].is_upscale,
> pipe, output);
> + if (ret == 0)
> + break;
> }
> - break;
> + igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> + "Unsupported scaling operation in driver with return value %s\n",
> + (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
> }
> }
> }
> @@ -1391,21 +1410,24 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> igt_describe(scaler_with_modifiers_tests[index].describe);
> igt_subtest_with_dynamic(scaler_with_modifiers_tests[index].name) {
> for_each_pipe(&data.display, pipe) {
> - for_each_valid_output_on_pipe(&data.display, pipe, output) {
> - if (!pipe_output_combo_valid(&data.display, pipe, output))
> - continue;
> - if (get_num_scalers(&data.display, pipe) < 1)
> - continue;
> -
> - igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> -
> - test_scaler_with_modifier_pipe(&data,
> + igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
> + for_each_valid_output_on_pipe(&data.display, pipe, output) {
> + if (!pipe_output_combo_valid(&data.display, pipe, output))
> + continue;
> + if (get_num_scalers(&data.display, pipe) < 1)
> + continue;
> +
> + ret = test_scaler_with_modifier_pipe(&data,
> scaler_with_modifiers_tests[index].sf,
> false,
> scaler_with_modifiers_tests[index].is_upscale,
> pipe, output);
> + if (ret == 0)
> + break;
> }
> - break;
> + igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> + "Unsupported scaling operation in driver with return value %s\n",
> + (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
> }
> }
> }
> @@ -1414,39 +1436,46 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> igt_describe("Tests scaling with clipping and clamping, pixel formats.");
> igt_subtest_with_dynamic("plane-scaler-with-clipping-clamping-pixel-formats") {
> for_each_pipe(&data.display, pipe) {
> - for_each_valid_output_on_pipe(&data.display, pipe, output) {
> - if (!pipe_output_combo_valid(&data.display, pipe, output))
> - continue;
> - if (get_num_scalers(&data.display, pipe) < 1)
> - continue;
> -
> - igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> + igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
> + for_each_valid_output_on_pipe(&data.display, pipe, output) {
> + if (!pipe_output_combo_valid(&data.display, pipe, output))
> + continue;
> + if (get_num_scalers(&data.display, pipe) < 1)
> + continue;
>
> - test_scaler_with_pixel_format_pipe(&data, 0.0, true,
> - false, pipe,
> - output);
> + ret = test_scaler_with_pixel_format_pipe(&data, 0.0, true,
> + false, pipe,
> + output);
> + if (ret == 0)
> + break;
> }
> - break;
> + igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> + "Unsupported scaling operation in driver with return value %s\n",
> + (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
> }
> }
> }
>
> +
> igt_describe("Tests scaling with clipping and clamping, rotation.");
> igt_subtest_with_dynamic("plane-scaler-with-clipping-clamping-rotation") {
> for_each_pipe(&data.display, pipe) {
> - for_each_valid_output_on_pipe(&data.display, pipe, output) {
> - if (!pipe_output_combo_valid(&data.display, pipe, output))
> - continue;
> - if (get_num_scalers(&data.display, pipe) < 1)
> - continue;
> -
> - igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> + igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
> + for_each_valid_output_on_pipe(&data.display, pipe, output) {
> + if (!pipe_output_combo_valid(&data.display, pipe, output))
> + continue;
> + if (get_num_scalers(&data.display, pipe) < 1)
> + continue;
>
> - test_scaler_with_rotation_pipe(&data, 0.0, true,
> - false, pipe,
> - output);
> + ret = test_scaler_with_rotation_pipe(&data, 0.0, true,
> + false, pipe,
> + output);
> + if (ret == 0)
> + break;
> }
> - break;
> + igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> + "Unsupported scaling operation in driver with return value %s\n",
> + (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
> }
> }
> }
> @@ -1454,18 +1483,22 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> igt_describe("Tests scaling with clipping and clamping, modifiers.");
> igt_subtest_with_dynamic("plane-scaler-with-clipping-clamping-modifiers") {
> for_each_pipe(&data.display, pipe) {
> - for_each_valid_output_on_pipe(&data.display, pipe, output) {
> - if (!pipe_output_combo_valid(&data.display, pipe, output))
> - continue;
> - if (get_num_scalers(&data.display, pipe) < 1)
> - continue;
> + igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
> + for_each_valid_output_on_pipe(&data.display, pipe, output) {
> + if (!pipe_output_combo_valid(&data.display, pipe, output))
> + continue;
> + if (get_num_scalers(&data.display, pipe) < 1)
> + continue;
>
> - igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> - test_scaler_with_modifier_pipe(&data, 0.0, true,
> - false, pipe,
> - output);
> + ret = test_scaler_with_modifier_pipe(&data, 0.0, true,
> + false, pipe,
> + output);
> + if (ret == 0)
> + break;
> }
> - break;
> + igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> + "Unsupported scaling operation in driver with return value %s\n",
> + (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
> }
> }
> }
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t v1 2/5] tests/kms_plane_scaling: Add informative logs for single plane scaling operations
2024-09-05 14:50 [PATCH i-g-t v1 0/5] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
2024-09-05 14:50 ` [PATCH i-g-t v1 1/5] tests/kms_plane_scaling: Update scaling functions to return error codes Naladala Ramanaidu
@ 2024-09-05 14:50 ` Naladala Ramanaidu
2024-09-10 7:42 ` Sharma, Swati2
2024-09-05 14:50 ` [PATCH i-g-t v1 3/5] tests/kms_plane_scaling: Return error code in test_planes_scaling_combo Naladala Ramanaidu
` (9 subsequent siblings)
11 siblings, 1 reply; 17+ messages in thread
From: Naladala Ramanaidu @ 2024-09-05 14:50 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, Naladala Ramanaidu
This will adds informative logging to the kms_plane_scaling test
Logs indicating which output is being tried for scaling. When a
required scaling operation is not supported on a particular output
and the test is moving to the next output.
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/kms_plane_scaling.c | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 5c5837a51..f03a73a5e 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -1359,6 +1359,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_pipe(&data.display, pipe) {
igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ igt_info("Trying on %s\n", igt_output_name(output));
if (!pipe_output_combo_valid(&data.display, pipe, output))
continue;
if (get_num_scalers(&data.display, pipe) < 1)
@@ -1370,6 +1371,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
pipe, output);
if (ret == 0)
break;
+ igt_info("Required Scaling operation not supported on %s trying on next output\n",
+ igt_output_name(output));
}
igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
"Unsupported scaling operation in driver with return value %s\n",
@@ -1385,6 +1388,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_pipe(&data.display, pipe) {
igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ igt_info("Trying on %s\n", igt_output_name(output));
if (!pipe_output_combo_valid(&data.display, pipe, output))
continue;
if (get_num_scalers(&data.display, pipe) < 1)
@@ -1397,6 +1401,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
pipe, output);
if (ret == 0)
break;
+ igt_info("Required Scaling operation not supported on %s trying on next output\n",
+ igt_output_name(output));
}
igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
"Unsupported scaling operation in driver with return value %s\n",
@@ -1412,6 +1418,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_pipe(&data.display, pipe) {
igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ igt_info("Trying on %s\n", igt_output_name(output));
if (!pipe_output_combo_valid(&data.display, pipe, output))
continue;
if (get_num_scalers(&data.display, pipe) < 1)
@@ -1424,6 +1431,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
pipe, output);
if (ret == 0)
break;
+ igt_info("Required Scaling operation not supported on %s trying on next output\n",
+ igt_output_name(output));
}
igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
"Unsupported scaling operation in driver with return value %s\n",
@@ -1438,6 +1447,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_pipe(&data.display, pipe) {
igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ igt_info("Trying on %s\n", igt_output_name(output));
if (!pipe_output_combo_valid(&data.display, pipe, output))
continue;
if (get_num_scalers(&data.display, pipe) < 1)
@@ -1448,6 +1458,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
output);
if (ret == 0)
break;
+ igt_info("Required Scaling operation not supported on %s trying on next output\n",
+ igt_output_name(output));
}
igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
"Unsupported scaling operation in driver with return value %s\n",
@@ -1462,6 +1474,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_pipe(&data.display, pipe) {
igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ igt_info("Trying on %s\n", igt_output_name(output));
if (!pipe_output_combo_valid(&data.display, pipe, output))
continue;
if (get_num_scalers(&data.display, pipe) < 1)
@@ -1472,6 +1485,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
output);
if (ret == 0)
break;
+ igt_info("Required Scaling operation not supported on %s trying on next output\n",
+ igt_output_name(output));
}
igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
"Unsupported scaling operation in driver with return value %s\n",
@@ -1485,6 +1500,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_pipe(&data.display, pipe) {
igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ igt_info("Trying on %s\n", igt_output_name(output));
if (!pipe_output_combo_valid(&data.display, pipe, output))
continue;
if (get_num_scalers(&data.display, pipe) < 1)
@@ -1495,6 +1511,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
output);
if (ret == 0)
break;
+ igt_info("Required Scaling operation not supported on %s trying on next output\n",
+ igt_output_name(output));
}
igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
"Unsupported scaling operation in driver with return value %s\n",
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread* Re: [PATCH i-g-t v1 2/5] tests/kms_plane_scaling: Add informative logs for single plane scaling operations
2024-09-05 14:50 ` [PATCH i-g-t v1 2/5] tests/kms_plane_scaling: Add informative logs for single plane scaling operations Naladala Ramanaidu
@ 2024-09-10 7:42 ` Sharma, Swati2
0 siblings, 0 replies; 17+ messages in thread
From: Sharma, Swati2 @ 2024-09-10 7:42 UTC (permalink / raw)
To: Naladala Ramanaidu, igt-dev
Hi Ramanaidu,
On 05-Sep-24 8:20 PM, Naladala Ramanaidu wrote:
> This will adds informative logging to the kms_plane_scaling test
> Logs indicating which output is being tried for scaling. When a
> required scaling operation is not supported on a particular output
> and the test is moving to the next output.
>
> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
> ---
> tests/kms_plane_scaling.c | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
> index 5c5837a51..f03a73a5e 100644
> --- a/tests/kms_plane_scaling.c
> +++ b/tests/kms_plane_scaling.c
> @@ -1359,6 +1359,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> for_each_pipe(&data.display, pipe) {
> igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
> for_each_valid_output_on_pipe(&data.display, pipe, output) {
> + igt_info("Trying on %s\n", igt_output_name(output));
> if (!pipe_output_combo_valid(&data.display, pipe, output))
> continue;
> if (get_num_scalers(&data.display, pipe) < 1)
> @@ -1370,6 +1371,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> pipe, output);
> if (ret == 0)
> break;
> + igt_info("Required Scaling operation not supported on %s trying on next output\n",
Nitpick: s/Scaling/scaling
Please make this change in all igt_info()
With this fixed.
Reviewed-by: Swati Sharma <swati2.sharma@intel.com>
> + igt_output_name(output));
> }
> igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> "Unsupported scaling operation in driver with return value %s\n",
> @@ -1385,6 +1388,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> for_each_pipe(&data.display, pipe) {
> igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
> for_each_valid_output_on_pipe(&data.display, pipe, output) {
> + igt_info("Trying on %s\n", igt_output_name(output));
> if (!pipe_output_combo_valid(&data.display, pipe, output))
> continue;
> if (get_num_scalers(&data.display, pipe) < 1)
> @@ -1397,6 +1401,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> pipe, output);
> if (ret == 0)
> break;
> + igt_info("Required Scaling operation not supported on %s trying on next output\n",
> + igt_output_name(output));
> }
> igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> "Unsupported scaling operation in driver with return value %s\n",
> @@ -1412,6 +1418,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> for_each_pipe(&data.display, pipe) {
> igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
> for_each_valid_output_on_pipe(&data.display, pipe, output) {
> + igt_info("Trying on %s\n", igt_output_name(output));
> if (!pipe_output_combo_valid(&data.display, pipe, output))
> continue;
> if (get_num_scalers(&data.display, pipe) < 1)
> @@ -1424,6 +1431,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> pipe, output);
> if (ret == 0)
> break;
> + igt_info("Required Scaling operation not supported on %s trying on next output\n",
> + igt_output_name(output));
> }
> igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> "Unsupported scaling operation in driver with return value %s\n",
> @@ -1438,6 +1447,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> for_each_pipe(&data.display, pipe) {
> igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
> for_each_valid_output_on_pipe(&data.display, pipe, output) {
> + igt_info("Trying on %s\n", igt_output_name(output));
> if (!pipe_output_combo_valid(&data.display, pipe, output))
> continue;
> if (get_num_scalers(&data.display, pipe) < 1)
> @@ -1448,6 +1458,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> output);
> if (ret == 0)
> break;
> + igt_info("Required Scaling operation not supported on %s trying on next output\n",
> + igt_output_name(output));
> }
> igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> "Unsupported scaling operation in driver with return value %s\n",
> @@ -1462,6 +1474,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> for_each_pipe(&data.display, pipe) {
> igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
> for_each_valid_output_on_pipe(&data.display, pipe, output) {
> + igt_info("Trying on %s\n", igt_output_name(output));
> if (!pipe_output_combo_valid(&data.display, pipe, output))
> continue;
> if (get_num_scalers(&data.display, pipe) < 1)
> @@ -1472,6 +1485,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> output);
> if (ret == 0)
> break;
> + igt_info("Required Scaling operation not supported on %s trying on next output\n",
> + igt_output_name(output));
> }
> igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> "Unsupported scaling operation in driver with return value %s\n",
> @@ -1485,6 +1500,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> for_each_pipe(&data.display, pipe) {
> igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
> for_each_valid_output_on_pipe(&data.display, pipe, output) {
> + igt_info("Trying on %s\n", igt_output_name(output));
> if (!pipe_output_combo_valid(&data.display, pipe, output))
> continue;
> if (get_num_scalers(&data.display, pipe) < 1)
> @@ -1495,6 +1511,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> output);
> if (ret == 0)
> break;
> + igt_info("Required Scaling operation not supported on %s trying on next output\n",
> + igt_output_name(output));
> }
> igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> "Unsupported scaling operation in driver with return value %s\n",
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t v1 3/5] tests/kms_plane_scaling: Return error code in test_planes_scaling_combo
2024-09-05 14:50 [PATCH i-g-t v1 0/5] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
2024-09-05 14:50 ` [PATCH i-g-t v1 1/5] tests/kms_plane_scaling: Update scaling functions to return error codes Naladala Ramanaidu
2024-09-05 14:50 ` [PATCH i-g-t v1 2/5] tests/kms_plane_scaling: Add informative logs for single plane scaling operations Naladala Ramanaidu
@ 2024-09-05 14:50 ` Naladala Ramanaidu
2024-09-10 8:09 ` Sharma, Swati2
2024-09-05 14:50 ` [PATCH i-g-t v1 4/5] tests/kms_plane_scaling: Add debug logs for output scaling attempts Naladala Ramanaidu
` (8 subsequent siblings)
11 siblings, 1 reply; 17+ messages in thread
From: Naladala Ramanaidu @ 2024-09-05 14:50 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, Naladala Ramanaidu
Change the return type of test_planes_scaling_combo from void to
uint32_t to return error codes. Modify the loop in
scaler_with_2_planes_tests to break on successful
test_planes_scaling_combo execution.
v1: fix crash issues. (swati)
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/kms_plane_scaling.c | 37 ++++++++++++++++++++-----------------
1 file changed, 20 insertions(+), 17 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index f03a73a5e..5d69eabf4 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -933,7 +933,7 @@ static void setup_fb(int fd, int width, int height, struct igt_fb *fb)
fb);
}
-static void
+static uint32_t
test_planes_scaling_combo(data_t *d, double sf_plane1,
double sf_plane2,
enum pipe pipe,
@@ -997,13 +997,14 @@ test_planes_scaling_combo(data_t *d, double sf_plane1,
pipe, output, p1, p2,
&d->fb[1], &d->fb[2],
test_type);
- if (ret != 0)
- break;
+ if (ret != 0) {
+ cleanup_fbs(d);
+ return ret;
+ }
}
cleanup_fbs(d);
}
- igt_skip_on_f(ret == -EINVAL || ret == -ERANGE, "Unsupported scaling operation in driver with return value %s\n",
- (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
+ return ret;
}
static void
@@ -1524,25 +1525,27 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for (int index = 0; index < ARRAY_SIZE(scaler_with_2_planes_tests); index++) {
igt_describe(scaler_with_2_planes_tests[index].describe);
igt_subtest_with_dynamic(scaler_with_2_planes_tests[index].name) {
- for_each_pipe(&data.display, pipe) {
- for_each_valid_output_on_pipe(&data.display, pipe, output) {
- if (!pipe_output_combo_valid(&data.display, pipe, output))
- continue;
- if (get_num_scalers(&data.display, pipe) < 2)
- continue;
-
- igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
-
- test_planes_scaling_combo(&data,
+ for_each_pipe(&data.display, pipe) {
+ igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
+ for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ if (!pipe_output_combo_valid(&data.display, pipe, output))
+ continue;
+ if (get_num_scalers(&data.display, pipe) < 2)
+ continue;
+ ret = test_planes_scaling_combo(&data,
scaler_with_2_planes_tests[index].sf_plane1,
scaler_with_2_planes_tests[index].sf_plane2,
pipe, output,
scaler_with_2_planes_tests[index].test_type);
+ if (ret == 0)
+ break;
+ }
+ igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
+ "Unsupported scaling operation in driver with return value %s\n",
+ (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
}
- break;
}
}
- }
}
for (int index = 0; index < ARRAY_SIZE(intel_paramtests); index++) {
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread* Re: [PATCH i-g-t v1 3/5] tests/kms_plane_scaling: Return error code in test_planes_scaling_combo
2024-09-05 14:50 ` [PATCH i-g-t v1 3/5] tests/kms_plane_scaling: Return error code in test_planes_scaling_combo Naladala Ramanaidu
@ 2024-09-10 8:09 ` Sharma, Swati2
0 siblings, 0 replies; 17+ messages in thread
From: Sharma, Swati2 @ 2024-09-10 8:09 UTC (permalink / raw)
To: Naladala Ramanaidu, igt-dev
LGTM
Reviewed-by: Swati Sharma <swati2.sharma@intel.com>
On 05-Sep-24 8:20 PM, Naladala Ramanaidu wrote:
> Change the return type of test_planes_scaling_combo from void to
> uint32_t to return error codes. Modify the loop in
> scaler_with_2_planes_tests to break on successful
> test_planes_scaling_combo execution.
>
> v1: fix crash issues. (swati)
>
> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
> ---
> tests/kms_plane_scaling.c | 37 ++++++++++++++++++++-----------------
> 1 file changed, 20 insertions(+), 17 deletions(-)
>
> diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
> index f03a73a5e..5d69eabf4 100644
> --- a/tests/kms_plane_scaling.c
> +++ b/tests/kms_plane_scaling.c
> @@ -933,7 +933,7 @@ static void setup_fb(int fd, int width, int height, struct igt_fb *fb)
> fb);
> }
>
> -static void
> +static uint32_t
> test_planes_scaling_combo(data_t *d, double sf_plane1,
> double sf_plane2,
> enum pipe pipe,
> @@ -997,13 +997,14 @@ test_planes_scaling_combo(data_t *d, double sf_plane1,
> pipe, output, p1, p2,
> &d->fb[1], &d->fb[2],
> test_type);
> - if (ret != 0)
> - break;
> + if (ret != 0) {
> + cleanup_fbs(d);
> + return ret;
> + }
> }
> cleanup_fbs(d);
> }
> - igt_skip_on_f(ret == -EINVAL || ret == -ERANGE, "Unsupported scaling operation in driver with return value %s\n",
> - (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
> + return ret;
> }
>
> static void
> @@ -1524,25 +1525,27 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> for (int index = 0; index < ARRAY_SIZE(scaler_with_2_planes_tests); index++) {
> igt_describe(scaler_with_2_planes_tests[index].describe);
> igt_subtest_with_dynamic(scaler_with_2_planes_tests[index].name) {
> - for_each_pipe(&data.display, pipe) {
> - for_each_valid_output_on_pipe(&data.display, pipe, output) {
> - if (!pipe_output_combo_valid(&data.display, pipe, output))
> - continue;
> - if (get_num_scalers(&data.display, pipe) < 2)
> - continue;
> -
> - igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> -
> - test_planes_scaling_combo(&data,
> + for_each_pipe(&data.display, pipe) {
> + igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
> + for_each_valid_output_on_pipe(&data.display, pipe, output) {
> + if (!pipe_output_combo_valid(&data.display, pipe, output))
> + continue;
> + if (get_num_scalers(&data.display, pipe) < 2)
> + continue;
> + ret = test_planes_scaling_combo(&data,
> scaler_with_2_planes_tests[index].sf_plane1,
> scaler_with_2_planes_tests[index].sf_plane2,
> pipe, output,
> scaler_with_2_planes_tests[index].test_type);
> + if (ret == 0)
> + break;
> + }
> + igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> + "Unsupported scaling operation in driver with return value %s\n",
> + (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
> }
> - break;
> }
> }
> - }
> }
>
> for (int index = 0; index < ARRAY_SIZE(intel_paramtests); index++) {
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t v1 4/5] tests/kms_plane_scaling: Add debug logs for output scaling attempts
2024-09-05 14:50 [PATCH i-g-t v1 0/5] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
` (2 preceding siblings ...)
2024-09-05 14:50 ` [PATCH i-g-t v1 3/5] tests/kms_plane_scaling: Return error code in test_planes_scaling_combo Naladala Ramanaidu
@ 2024-09-05 14:50 ` Naladala Ramanaidu
2024-09-10 8:12 ` Sharma, Swati2
2024-09-05 14:50 ` [PATCH i-g-t v1 5/5] HAX patch do not merge Naladala Ramanaidu
` (7 subsequent siblings)
11 siblings, 1 reply; 17+ messages in thread
From: Naladala Ramanaidu @ 2024-09-05 14:50 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, Naladala Ramanaidu
This will introduces additional debug information to the
kms_plane_scaling test. The new logs provide clarity on which
outputs are being tested for scaling operations and indicate
when a required scaling operation is not supported.
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/kms_plane_scaling.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 5d69eabf4..04264d35d 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -1528,6 +1528,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_pipe(&data.display, pipe) {
igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ igt_info("Trying on %s\n",
+ igt_output_name(output));
if (!pipe_output_combo_valid(&data.display, pipe, output))
continue;
if (get_num_scalers(&data.display, pipe) < 2)
@@ -1539,6 +1541,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
scaler_with_2_planes_tests[index].test_type);
if (ret == 0)
break;
+ igt_info("Required Scaling operation not supported on %s trying on next output\n",
+ igt_output_name(output));
}
igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
"Unsupported scaling operation in driver with return value %s\n",
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread* Re: [PATCH i-g-t v1 4/5] tests/kms_plane_scaling: Add debug logs for output scaling attempts
2024-09-05 14:50 ` [PATCH i-g-t v1 4/5] tests/kms_plane_scaling: Add debug logs for output scaling attempts Naladala Ramanaidu
@ 2024-09-10 8:12 ` Sharma, Swati2
0 siblings, 0 replies; 17+ messages in thread
From: Sharma, Swati2 @ 2024-09-10 8:12 UTC (permalink / raw)
To: Naladala Ramanaidu, igt-dev
Hi Ramanaidu,
On 05-Sep-24 8:20 PM, Naladala Ramanaidu wrote:
> This will introduces additional debug information to the
> kms_plane_scaling test. The new logs provide clarity on which
> outputs are being tested for scaling operations and indicate
> when a required scaling operation is not supported.
>
> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
> ---
> tests/kms_plane_scaling.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
> index 5d69eabf4..04264d35d 100644
> --- a/tests/kms_plane_scaling.c
> +++ b/tests/kms_plane_scaling.c
> @@ -1528,6 +1528,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> for_each_pipe(&data.display, pipe) {
> igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
> for_each_valid_output_on_pipe(&data.display, pipe, output) {
> + igt_info("Trying on %s\n",
> + igt_output_name(output));
> if (!pipe_output_combo_valid(&data.display, pipe, output))
> continue;
> if (get_num_scalers(&data.display, pipe) < 2)
> @@ -1539,6 +1541,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> scaler_with_2_planes_tests[index].test_type);
> if (ret == 0)
> break;
> + igt_info("Required Scaling operation not supported on %s trying on next output\n",
> + igt_output_name(output));
s/Scaling/scaling
With this fixed,
Reviewed-by: Swati Sharma <swati2.sharma@intel.com>
> }
> igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> "Unsupported scaling operation in driver with return value %s\n",
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t v1 5/5] HAX patch do not merge
2024-09-05 14:50 [PATCH i-g-t v1 0/5] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
` (3 preceding siblings ...)
2024-09-05 14:50 ` [PATCH i-g-t v1 4/5] tests/kms_plane_scaling: Add debug logs for output scaling attempts Naladala Ramanaidu
@ 2024-09-05 14:50 ` Naladala Ramanaidu
2024-09-05 23:37 ` ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev2) Patchwork
` (6 subsequent siblings)
11 siblings, 0 replies; 17+ messages in thread
From: Naladala Ramanaidu @ 2024-09-05 14:50 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, Naladala Ramanaidu
HAX patch do not merge
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/intel-ci/fast-feedback.testlist | 213 ++++-----------
tests/intel-ci/xe-fast-feedback.testlist | 319 ++++-------------------
2 files changed, 90 insertions(+), 442 deletions(-)
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index be0965110..b0cb50f18 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -1,171 +1,48 @@
# Try to load the driver if it's not available yet.
igt@i915_module_load@load
-# Keep alphabetically sorted by default
-igt@core_auth@basic-auth
-igt@debugfs_test@read_all_entries
-igt@debugfs_test@basic-hwmon
-igt@debugfs_test@sysfs
-igt@fbdev@eof
-igt@fbdev@info
-igt@fbdev@nullptr
-igt@fbdev@read
-igt@fbdev@write
-igt@gem_basic@bad-close
-igt@gem_basic@create-close
-igt@gem_basic@create-fd-close
-igt@gem_busy@busy@all-engines
-igt@gem_close_race@basic-process
-igt@gem_close_race@basic-threads
-igt@gem_ctx_create@basic
-igt@gem_ctx_create@basic-files
-igt@gem_ctx_exec@basic
-igt@gem_exec_basic@basic
-igt@gem_exec_create@basic
-igt@gem_exec_fence@basic-busy
-igt@gem_exec_fence@basic-wait
-igt@gem_exec_fence@basic-await
-igt@gem_exec_fence@nb-await
-igt@gem_exec_gttfill@basic
-igt@gem_exec_parallel@engines
-igt@gem_exec_store@basic
-igt@gem_flink_basic@bad-flink
-igt@gem_flink_basic@bad-open
-igt@gem_flink_basic@basic
-igt@gem_flink_basic@double-flink
-igt@gem_flink_basic@flink-lifetime
-igt@gem_huc_copy@huc-copy
-igt@gem_linear_blits@basic
-igt@gem_mmap@basic
-igt@gem_mmap_gtt@basic
-igt@gem_render_linear_blits@basic
-igt@gem_render_tiled_blits@basic
-igt@gem_ringfill@basic-all
-igt@gem_softpin@allocator-basic
-igt@gem_softpin@allocator-basic-reserve
-igt@gem_softpin@safe-alignment
-igt@gem_sync@basic-all
-igt@gem_sync@basic-each
-igt@gem_tiled_blits@basic
-igt@gem_tiled_fence_blits@basic
-igt@gem_tiled_pread_basic
-igt@gem_wait@busy@all-engines
-igt@gem_wait@wait@all-engines
-igt@i915_getparams_basic@basic-eu-total
-igt@i915_getparams_basic@basic-subslice-total
-igt@i915_hangman@error-state-basic
-igt@i915_pciid
-igt@kms_addfb_basic@addfb25-4-tiled
-igt@kms_addfb_basic@addfb25-bad-modifier
-igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling
-igt@kms_addfb_basic@addfb25-modifier-no-flag
-igt@kms_addfb_basic@addfb25-x-tiled-legacy
-igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy
-igt@kms_addfb_basic@addfb25-yf-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-small-legacy
-igt@kms_addfb_basic@bad-pitch-0
-igt@kms_addfb_basic@bad-pitch-1024
-igt@kms_addfb_basic@bad-pitch-128
-igt@kms_addfb_basic@bad-pitch-256
-igt@kms_addfb_basic@bad-pitch-32
-igt@kms_addfb_basic@bad-pitch-63
-igt@kms_addfb_basic@bad-pitch-65536
-igt@kms_addfb_basic@bad-pitch-999
-igt@kms_addfb_basic@basic
-igt@kms_addfb_basic@basic-x-tiled-legacy
-igt@kms_addfb_basic@basic-y-tiled-legacy
-igt@kms_addfb_basic@bo-too-small
-igt@kms_addfb_basic@bo-too-small-due-to-tiling
-igt@kms_addfb_basic@clobberred-modifier
-igt@kms_addfb_basic@framebuffer-vs-set-tiling
-igt@kms_addfb_basic@invalid-get-prop
-igt@kms_addfb_basic@invalid-get-prop-any
-igt@kms_addfb_basic@invalid-set-prop
-igt@kms_addfb_basic@invalid-set-prop-any
-igt@kms_addfb_basic@no-handle
-igt@kms_addfb_basic@size-max
-igt@kms_addfb_basic@small-bo
-igt@kms_addfb_basic@tile-pitch-mismatch
-igt@kms_addfb_basic@too-high
-igt@kms_addfb_basic@too-wide
-igt@kms_addfb_basic@unused-handle
-igt@kms_addfb_basic@unused-modifier
-igt@kms_addfb_basic@unused-offsets
-igt@kms_addfb_basic@unused-pitches
-igt@kms_busy@basic
-igt@kms_prop_blob@basic
-igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic
-igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-after-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-after-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size
-igt@kms_cursor_legacy@basic-flip-before-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-before-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size
-igt@kms_dsc@dsc-basic
-igt@kms_flip@basic-flip-vs-dpms
-igt@kms_flip@basic-flip-vs-modeset
-igt@kms_flip@basic-flip-vs-wf_vblank
-igt@kms_flip@basic-plain-flip
-igt@kms_force_connector_basic@force-connector-state
-igt@kms_force_connector_basic@force-edid
-igt@kms_force_connector_basic@force-load-detect
-igt@kms_force_connector_basic@prune-stale-modes
-igt@kms_frontbuffer_tracking@basic
-igt@kms_hdmi_inject@inject-audio
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12
-igt@kms_pipe_crc_basic@hang-read-crc
-igt@kms_pipe_crc_basic@nonblocking-crc
-igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence
-igt@kms_pipe_crc_basic@read-crc
-igt@kms_pipe_crc_basic@read-crc-frame-sequence
-igt@kms_pm_backlight@basic-brightness
-igt@kms_pm_rpm@basic-pci-d3-state
-igt@kms_pm_rpm@basic-rte
-igt@kms_psr@psr-primary-page-flip
-igt@kms_psr@psr-cursor-plane-move
-igt@kms_psr@psr-sprite-plane-onoff
-igt@kms_psr@psr-primary-mmap-gtt
-igt@kms_setmode@basic-clone-single-crtc
-igt@i915_pm_rps@basic-api
-igt@prime_self_import@basic-llseek-bad
-igt@prime_self_import@basic-llseek-size
-igt@prime_self_import@basic-with_fd_dup
-igt@prime_self_import@basic-with_one_bo
-igt@prime_self_import@basic-with_one_bo_two_files
-igt@prime_self_import@basic-with_two_bos
-igt@prime_vgem@basic-fence-flip
-igt@prime_vgem@basic-fence-mmap
-igt@prime_vgem@basic-fence-read
-igt@prime_vgem@basic-gtt
-igt@prime_vgem@basic-read
-igt@prime_vgem@basic-write
-igt@vgem_basic@setversion
-igt@vgem_basic@create
-igt@vgem_basic@debugfs
-igt@vgem_basic@dmabuf-export
-igt@vgem_basic@dmabuf-fence
-igt@vgem_basic@dmabuf-fence-before
-igt@vgem_basic@dmabuf-mmap
-igt@vgem_basic@mmap
-igt@vgem_basic@second-client
-igt@vgem_basic@sysfs
-
-# All tests that do module unloading and reloading are executed last.
-# They will sometimes reveal issues of earlier tests leaving the
-# driver in a broken state that is not otherwise noticed in that test.
-
-igt@core_hotunplug@unbind-rebind
-igt@vgem_basic@unload
-igt@i915_module_load@reload
-igt@gem_lmem_swapping@basic
-igt@gem_lmem_swapping@parallel-random-engines
-igt@gem_lmem_swapping@random-engines
-igt@gem_lmem_swapping@verify-random
-igt@i915_pm_rpm@module-reload
-
-# Kernel selftests
-igt@i915_selftest@live
-igt@dmabuf@all-tests
+igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format
+igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format
+igt@kms_plane_scaling@plane-upscale-20x20-with-rotation
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation
+igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation
+igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers
+igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers
+igt@kms_plane_scaling@planes-upscale-20x20
+igt@kms_plane_scaling@planes-upscale-factor-0-25
+igt@kms_plane_scaling@planes-scaler-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-5
+igt@kms_plane_scaling@planes-downscale-factor-0-75
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75
+igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 01b01dcf9..45ec34572 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -1,277 +1,48 @@
# Should be the first test
igt@xe_module_load@load
-igt@fbdev@eof
-igt@fbdev@info
-igt@fbdev@nullptr
-igt@fbdev@read
-igt@fbdev@write
-
-igt@kms_addfb_basic@addfb25-4-tiled
-igt@kms_addfb_basic@addfb25-bad-modifier
-igt@kms_addfb_basic@addfb25-modifier-no-flag
-igt@kms_addfb_basic@addfb25-x-tiled-legacy
-igt@kms_addfb_basic@addfb25-yf-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-legacy
-igt@kms_addfb_basic@addfb25-y-tiled-small-legacy
-igt@kms_addfb_basic@bad-pitch-0
-igt@kms_addfb_basic@bad-pitch-1024
-igt@kms_addfb_basic@bad-pitch-128
-igt@kms_addfb_basic@bad-pitch-256
-igt@kms_addfb_basic@bad-pitch-32
-igt@kms_addfb_basic@bad-pitch-63
-igt@kms_addfb_basic@bad-pitch-65536
-igt@kms_addfb_basic@bad-pitch-999
-igt@kms_addfb_basic@basic
-igt@kms_addfb_basic@basic-x-tiled-legacy
-igt@kms_addfb_basic@bo-too-small
-igt@kms_addfb_basic@invalid-get-prop
-igt@kms_addfb_basic@invalid-get-prop-any
-igt@kms_addfb_basic@invalid-set-prop
-igt@kms_addfb_basic@invalid-set-prop-any
-igt@kms_addfb_basic@no-handle
-igt@kms_addfb_basic@size-max
-igt@kms_addfb_basic@small-bo
-igt@kms_addfb_basic@too-high
-igt@kms_addfb_basic@too-wide
-igt@kms_addfb_basic@unused-handle
-igt@kms_addfb_basic@unused-modifier
-igt@kms_addfb_basic@unused-offsets
-igt@kms_addfb_basic@unused-pitches
-igt@kms_cursor_legacy@basic-flip-after-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-after-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size
-igt@kms_cursor_legacy@basic-flip-before-cursor-atomic
-igt@kms_cursor_legacy@basic-flip-before-cursor-legacy
-igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size
-igt@kms_dsc@dsc-basic
-igt@kms_flip@basic-flip-vs-dpms
-igt@kms_flip@basic-flip-vs-modeset
-igt@kms_flip@basic-flip-vs-wf_vblank
-igt@kms_flip@basic-plain-flip
-igt@kms_force_connector_basic@force-connector-state
-igt@kms_force_connector_basic@force-edid
-igt@kms_force_connector_basic@prune-stale-modes
-igt@kms_frontbuffer_tracking@basic
-igt@kms_hdmi_inject@inject-audio
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24
-igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12
-igt@kms_pipe_crc_basic@hang-read-crc
-igt@kms_pipe_crc_basic@nonblocking-crc
-igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence
-igt@kms_pipe_crc_basic@read-crc
-igt@kms_pipe_crc_basic@read-crc-frame-sequence
-igt@kms_prop_blob@basic
-igt@kms_psr@psr-primary-page-flip
-igt@kms_psr@psr-cursor-plane-move
-igt@kms_psr@psr-sprite-plane-onoff
-igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all
-igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1
-igt@xe_compute@compute-square
-igt@xe_create@create-execqueues-noleak
-igt@xe_create@create-execqueues-leak
-igt@xe_create@create-invalid-mbz
-igt@xe_create@create-massive-size
-igt@xe_debugfs@base
-igt@xe_debugfs@gt
-igt@xe_debugfs@forcewake
-igt@xe_dma_buf_sync@export-dma-buf-once
-igt@xe_dma_buf_sync@export-dma-buf-once-read-sync
-igt@xe_evict_ccs@evict-overcommit-simple
-igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd
-igt@xe_exec_atomic@basic-dec-all
-igt@xe_exec_atomic@basic-inc-all
-igt@xe_exec_balancer@twice-virtual-basic
-igt@xe_exec_balancer@no-exec-virtual-basic
-igt@xe_exec_balancer@twice-cm-virtual-basic
-igt@xe_exec_balancer@no-exec-cm-virtual-basic
-igt@xe_exec_balancer@twice-virtual-userptr
-igt@xe_exec_balancer@twice-cm-virtual-userptr
-igt@xe_exec_balancer@twice-virtual-rebind
-igt@xe_exec_balancer@twice-cm-virtual-rebind
-igt@xe_exec_balancer@twice-virtual-userptr-rebind
-igt@xe_exec_balancer@twice-cm-virtual-userptr-rebind
-igt@xe_exec_balancer@twice-virtual-userptr-invalidate
-igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate
-igt@xe_exec_balancer@twice-parallel-basic
-igt@xe_exec_balancer@no-exec-parallel-basic
-igt@xe_exec_balancer@twice-parallel-userptr
-igt@xe_exec_balancer@twice-parallel-rebind
-igt@xe_exec_balancer@twice-parallel-userptr-rebind
-igt@xe_exec_balancer@twice-parallel-userptr-invalidate
-igt@xe_exec_basic@twice-basic
-igt@xe_exec_basic@no-exec-basic
-igt@xe_exec_basic@twice-basic-defer-mmap
-igt@xe_exec_basic@twice-basic-defer-bind
-igt@xe_exec_basic@twice-userptr
-igt@xe_exec_basic@twice-rebind
-igt@xe_exec_basic@twice-userptr-rebind
-igt@xe_exec_basic@twice-userptr-invalidate
-igt@xe_exec_basic@no-exec-userptr-invalidate
-igt@xe_exec_basic@twice-bindexecqueue
-igt@xe_exec_basic@no-exec-bindexecqueue
-igt@xe_exec_basic@twice-bindexecqueue-userptr
-igt@xe_exec_basic@twice-bindexecqueue-rebind
-igt@xe_exec_basic@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_compute_mode@twice-basic
-igt@xe_exec_compute_mode@twice-preempt-fence-early
-igt@xe_exec_compute_mode@twice-userptr
-igt@xe_exec_compute_mode@twice-rebind
-igt@xe_exec_compute_mode@twice-userptr-rebind
-igt@xe_exec_compute_mode@twice-userptr-invalidate
-igt@xe_exec_compute_mode@twice-bindexecqueue
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr
-igt@xe_exec_compute_mode@twice-bindexecqueue-rebind
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_queue_property@invalid-property
-igt@xe_exec_reset@close-fd-no-exec
-igt@xe_exec_reset@cm-close-fd-no-exec
-igt@xe_exec_reset@virtual-close-fd-no-exec
-igt@xe_exec_store@basic-store
-igt@xe_gpgpu_fill@basic
-igt@xe_gt_freq@freq_basic_api
-igt@xe_gt_freq@freq_fixed_idle
-igt@xe_gt_freq@freq_range_idle
-igt@xe_huc_copy@huc_copy
-igt@xe_intel_bb@add-remove-objects
-igt@xe_intel_bb@bb-with-allocator
-igt@xe_intel_bb@blit-reloc
-igt@xe_intel_bb@blit-simple
-igt@xe_intel_bb@create-in-region
-igt@xe_intel_bb@delta-check
-igt@xe_intel_bb@destroy-bb
-igt@xe_intel_bb@intel-bb-blit-none
-igt@xe_intel_bb@intel-bb-blit-x
-igt@xe_intel_bb@intel-bb-blit-y
-igt@xe_intel_bb@lot-of-buffers
-igt@xe_intel_bb@offset-control
-igt@xe_intel_bb@purge-bb
-igt@xe_intel_bb@render
-igt@xe_intel_bb@reset-bb
-igt@xe_intel_bb@simple-bb
-igt@xe_intel_bb@simple-bb-ctx
-igt@xe_mmap@bad-extensions
-igt@xe_mmap@bad-flags
-igt@xe_mmap@bad-object
-igt@xe_mmap@cpu-caching
-igt@xe_mmap@system
-igt@xe_mmap@vram
-igt@xe_mmap@vram-system
-igt@xe_pm_residency@gt-c6-on-idle
-igt@xe_prime_self_import@basic-with_one_bo
-igt@xe_prime_self_import@basic-with_fd_dup
-#igt@xe_prime_self_import@basic-llseek-size
-igt@xe_query@query-engines
-igt@xe_query@query-mem-usage
-igt@xe_query@query-gt-list
-igt@xe_query@query-config
-igt@xe_query@query-hwconfig
-igt@xe_query@query-topology
-igt@xe_query@query-invalid-extension
-igt@xe_query@query-invalid-query
-igt@xe_query@query-invalid-size
-igt@xe_spin_batch@spin-basic
-igt@xe_spin_batch@spin-batch
-igt@xe_sysfs_defaults@engine-defaults
-igt@xe_sysfs_scheduler@preempt_timeout_us-invalid
-igt@xe_sysfs_scheduler@preempt_timeout_us-min-max
-igt@xe_sysfs_scheduler@timeslice_duration_us-invalid
-igt@xe_sysfs_scheduler@timeslice_duration_us-min-max
-igt@xe_sysfs_scheduler@job_timeout_ms-invalid
-igt@xe_sysfs_scheduler@job_timeout_ms-min-max
-#igt@xe_vm@bind-once
-#igt@xe_vm@scratch
-igt@xe_vm@shared-pte-page
-igt@xe_vm@shared-pde-page
-igt@xe_vm@shared-pde2-page
-igt@xe_vm@shared-pde3-page
-igt@xe_vm@bind-execqueues-independent
-igt@xe_vm@large-split-binds-268435456
-igt@xe_vm@munmap-style-unbind-one-partial
-igt@xe_vm@munmap-style-unbind-end
-igt@xe_vm@munmap-style-unbind-front
-igt@xe_vm@munmap-style-unbind-userptr-one-partial
-igt@xe_vm@munmap-style-unbind-userptr-end
-igt@xe_vm@munmap-style-unbind-userptr-front
-igt@xe_vm@munmap-style-unbind-userptr-inval-end
-igt@xe_vm@munmap-style-unbind-userptr-inval-front
-igt@xe_pat@userptr-coh-none
-igt@xe_pat@prime-self-import-coh
-igt@xe_pat@prime-external-import-coh
-igt@xe_pat@pat-index-all
-igt@xe_pat@pat-index-xelp
-igt@xe_pat@pat-index-xehpc
-igt@xe_pat@pat-index-xelpg
-igt@xe_pat@pat-index-xe2
-igt@xe_waitfence@abstime
-igt@xe_waitfence@engine
-igt@xe_waitfence@reltime
-
-# All tests that do module unloading and reloading are executed last.
-# They will sometimes reveal issues of earlier tests leaving the
-# driver in a broken state that is not otherwise noticed in that test.
-igt@core_hotunplug@unbind-rebind
-
-# Run KUnit tests at the end
-igt@xe_live_ktest@xe_bo
-igt@xe_live_ktest@xe_dma_buf
-igt@xe_live_ktest@xe_migrate
-
-# Move fault_mode tests at the end to unblock execution
-igt@xe_exec_fault_mode@twice-basic
-igt@xe_exec_fault_mode@many-basic
-igt@xe_exec_fault_mode@twice-userptr
-igt@xe_exec_fault_mode@twice-rebind
-igt@xe_exec_fault_mode@twice-userptr-rebind
-igt@xe_exec_fault_mode@twice-userptr-invalidate
-igt@xe_exec_fault_mode@twice-bindexecqueue
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_fault_mode@twice-basic-imm
-igt@xe_exec_fault_mode@twice-userptr-imm
-igt@xe_exec_fault_mode@twice-rebind-imm
-igt@xe_exec_fault_mode@twice-userptr-rebind-imm
-igt@xe_exec_fault_mode@twice-userptr-invalidate-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-imm
-igt@xe_exec_fault_mode@twice-basic-prefetch
-igt@xe_exec_fault_mode@twice-userptr-prefetch
-igt@xe_exec_fault_mode@twice-rebind-prefetch
-igt@xe_exec_fault_mode@twice-userptr-rebind-prefetch
-igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-prefetch
-igt@xe_exec_fault_mode@twice-invalid-fault
-igt@xe_exec_fault_mode@twice-invalid-userptr-fault
-igt@xe_exec_threads@threads-basic
-igt@xe_exec_threads@threads-mixed-basic
-igt@xe_exec_threads@threads-mixed-shared-vm-basic
-igt@xe_exec_threads@threads-mixed-fd-basic
-igt@xe_exec_threads@threads-mixed-userptr-invalidate
-igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race
-igt@xe_evict@evict-beng-mixed-threads-small-multi-vm
-igt@xe_evict@evict-beng-small
-igt@xe_evict@evict-beng-small-cm
-igt@xe_evict@evict-beng-small-external
-igt@xe_evict@evict-beng-small-external-cm
-igt@xe_evict@evict-beng-small-multi-vm
-igt@xe_evict@evict-cm-threads-small
-igt@xe_evict@evict-mixed-threads-small
-igt@xe_evict@evict-mixed-threads-small-multi-vm
-igt@xe_evict@evict-small
-igt@xe_evict@evict-small-cm
-igt@xe_evict@evict-small-external
-igt@xe_evict@evict-small-external-cm
-igt@xe_evict@evict-small-multi-vm
-igt@xe_evict@evict-small-multi-vm-cm
-igt@xe_evict@evict-threads-small
+igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format
+igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format
+igt@kms_plane_scaling@plane-upscale-20x20-with-rotation
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation
+igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation
+igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers
+igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers
+igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers
+igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers
+igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers
+igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers
+igt@kms_plane_scaling@planes-upscale-20x20
+igt@kms_plane_scaling@planes-upscale-factor-0-25
+igt@kms_plane_scaling@planes-scaler-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-5
+igt@kms_plane_scaling@planes-downscale-factor-0-75
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75
+igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread* ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev2)
2024-09-05 14:50 [PATCH i-g-t v1 0/5] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
` (4 preceding siblings ...)
2024-09-05 14:50 ` [PATCH i-g-t v1 5/5] HAX patch do not merge Naladala Ramanaidu
@ 2024-09-05 23:37 ` Patchwork
2024-09-08 3:33 ` ✗ CI.xeFULL: " Patchwork
` (5 subsequent siblings)
11 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-09-05 23:37 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 30886 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev2)
URL : https://patchwork.freedesktop.org/series/137770/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8007_BAT -> XEIGTPW_11706_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11706_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11706_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (9 -> 8)
------------------------------
Missing (1): bat-pvc-2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11706_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a (NEW):
- bat-dg2-oem2: NOTRUN -> [SKIP][1] +59 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-dg2-oem2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- bat-adlp-vf: NOTRUN -> [SKIP][2] +44 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-adlp-vf/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d (NEW):
- bat-bmg-1: NOTRUN -> [SKIP][3] +114 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c (NEW):
- bat-adlp-7: NOTRUN -> [SKIP][4] +29 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-adlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a (NEW):
- bat-lnl-2: NOTRUN -> [SKIP][5] +134 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d (NEW):
- {bat-bmg-2}: NOTRUN -> [SKIP][6] +179 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a (NEW):
- bat-lnl-1: NOTRUN -> [SKIP][7] +93 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-lnl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
New tests
---------
New tests have been introduced between XEIGT_8007_BAT and XEIGTPW_11706_BAT:
### New IGT tests (180) ###
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.18] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.42] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.43] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.43] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 1.20] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.42] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.41] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.42] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.19] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.43] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.42] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.42] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.59] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.60] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.57] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 1.63] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.35] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.36] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.39] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 1.36] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.39] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.50] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.47] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 1.47] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.60] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.95] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.89] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.60] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.38] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.37] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.46] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.29] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.47] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.70] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.73] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.51] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.68] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.93] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.84] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.55] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.37] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.35] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.48] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.37] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.47] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.17] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.73] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.44] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.54] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.68] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.78] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.60] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a:
- Statuses : 3 pass(s) 3 skip(s)
- Exec time: [0.0, 2.20] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- Statuses : 3 pass(s) 3 skip(s)
- Exec time: [0.0, 2.30] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 4.70] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.30] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.37] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.60] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.62] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.49] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.67] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 5.78] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.92] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.61] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.77] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.00] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.42] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.31] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.47] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.67] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 2.04] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.41] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.55] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.79] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 2.03] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.59] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.66] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 2.83] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.54] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.34] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.36] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.86] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.61] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.52] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.81] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.82] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.63] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.59] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.71] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.71] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.71] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.72] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.77] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.76] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.65] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.67] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.65] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.84] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.69] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.73] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.82] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.00] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.90] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 6.93] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.83] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.98] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.96] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 7.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.87] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.90] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 6.89] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.49] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.26] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.27] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d:
- Statuses : 2 pass(s) 2 skip(s)
- Exec time: [0.0, 3.28] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.88] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.06] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.04] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 6.93] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.70] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.82] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.70] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.62] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.88] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.04] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.03] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 6.91] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.83] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.78] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.66] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.57] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.53] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.33] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.33] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- Statuses : 2 pass(s) 2 skip(s)
- Exec time: [0.0, 3.33] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.81] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.90] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.04] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 6.91] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.73] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.81] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.72] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.68] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.44] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.27] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.27] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d:
- Statuses : 2 pass(s) 2 skip(s)
- Exec time: [0.0, 3.27] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.76] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.95] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.89] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 6.98] s
Known issues
------------
Here are the changes found in XEIGTPW_11706_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- bat-dg2-oem2: NOTRUN -> [SKIP][8] ([Intel XE#455]) +39 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-dg2-oem2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format:
- bat-atsm-2: NOTRUN -> [SKIP][9] ([Intel XE#1024]) +44 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-atsm-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- bat-lnl-2: NOTRUN -> [SKIP][10] ([Intel XE#2381]) +44 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d (NEW):
- bat-adlp-7: NOTRUN -> [SKIP][11] ([Intel XE#455]) +19 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-adlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
[Intel XE#2381]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2381
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_8007 -> IGTPW_11706
IGTPW_11706: 11706
IGT_8007: 8f9900c288f4cf1244d66baa71bc6d9355747cbd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1901-7f3ffaf88a3a1b3e29416488fb4e58fd551cd89d: 7f3ffaf88a3a1b3e29416488fb4e58fd551cd89d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/index.html
[-- Attachment #2: Type: text/html, Size: 37254 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* ✗ CI.xeFULL: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev2)
2024-09-05 14:50 [PATCH i-g-t v1 0/5] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
` (5 preceding siblings ...)
2024-09-05 23:37 ` ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev2) Patchwork
@ 2024-09-08 3:33 ` Patchwork
2024-09-10 10:57 ` ✗ CI.xeBAT: " Patchwork
` (4 subsequent siblings)
11 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-09-08 3:33 UTC (permalink / raw)
To: Naladala, Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 89632 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev2)
URL : https://patchwork.freedesktop.org/series/137770/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8007_full -> XEIGTPW_11706_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11706_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11706_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_11706_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b (NEW):
- shard-lnl: NOTRUN -> [SKIP][1] +69 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][2] +5 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b (NEW):
- {shard-bmg}: NOTRUN -> [SKIP][3] +59 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
#### Warnings ####
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-lnl: [SKIP][4] ([Intel XE#498]) -> [SKIP][5] +4 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-lnl: [SKIP][6] ([Intel XE#2318]) -> [SKIP][7] +14 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_flip@2x-flip-vs-rmfb@bd-dp2-hdmi-a3:
- {shard-bmg}: [PASS][8] -> [INCOMPLETE][9] +1 other test incomplete
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-bmg-1/igt@kms_flip@2x-flip-vs-rmfb@bd-dp2-hdmi-a3.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-bmg-2/igt@kms_flip@2x-flip-vs-rmfb@bd-dp2-hdmi-a3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- {shard-bmg}: [SKIP][10] ([Intel XE#498]) -> [SKIP][11] +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- {shard-bmg}: [SKIP][12] ([Intel XE#2318]) -> [SKIP][13] +12 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
New tests
---------
New tests have been introduced between XEIGT_8007_full and XEIGTPW_11706_full:
### New IGT tests (179) ###
* igt@kms_atomic_transition@plane-all-transition-fencing@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [3.78] s
* igt@kms_atomic_transition@plane-all-transition-fencing@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [3.77] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 1.01] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.89] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 1.36] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [1.12, 1.36] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 1.03] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.93] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 1.43] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [1.10, 1.42] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 1 skip(s)
- Exec time: [0.01] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 1 skip(s)
- Exec time: [0.01] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 1 skip(s)
- Exec time: [0.01] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b:
- Statuses : 1 skip(s)
- Exec time: [0.01] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c:
- Statuses : 1 skip(s)
- Exec time: [0.01] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- Statuses : 2 pass(s)
- Exec time: [1.85, 1.88] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b:
- Statuses : 2 pass(s)
- Exec time: [1.84, 2.02] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.31] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.32] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.00, 0.44] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 0.48] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 0.48] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.44, 0.48] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.55, 0.72] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.94] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 5.11] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.60, 0.64] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [1.82, 3.43] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.79, 3.31] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.27, 1.48] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.30, 0.31] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.39, 0.51] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.46, 1.61] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.73] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.44, 0.48] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.56, 0.68] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.63, 1.86] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.93] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.61, 0.64] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [1.81, 3.51] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.81, 3.38] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.28, 1.47] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.31] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- Statuses : 1 pass(s)
- Exec time: [0.47] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- Statuses : 1 pass(s)
- Exec time: [1.70] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- Statuses : 1 pass(s)
- Exec time: [1.69] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.53, 0.63] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.78] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.76] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.61, 0.65] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.18, 1.85] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [1.35, 2.04] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.27, 1.42] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.31] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.38, 0.44] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.46, 1.59] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.46, 1.55] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.44, 0.47] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.57, 0.68] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.88] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.87] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.61, 0.65] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [1.69, 1.77] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.74, 3.02] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.29, 1.51] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.28, 0.31] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.41, 0.46] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.70] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.44, 2.44] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.46, 0.50] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.53, 0.58] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.60, 1.78] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.74] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.61, 0.64] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [1.67, 1.72] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.74, 3.03] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.28, 1.47] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.31] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.36, 0.42] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.61] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.63] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.44, 0.47] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 11.04] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.35] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.38] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.25, 10.38] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.00, 10.94] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.39] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.41] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.28, 10.41] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 11.00] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.48] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.30] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.22, 10.29] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.96] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.33] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.29] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.06, 10.34] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.15, 10.20] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.34, 10.22] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.37, 10.24] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [9.60, 10.38] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.16, 10.94] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.40, 10.41] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.34, 10.24] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.21, 10.36] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.15, 10.26] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.31, 10.23] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.33, 10.34] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [8.90, 10.38] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.95] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.02, 10.27] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.02, 10.36] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.06, 10.30] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.14, 10.16] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.33, 10.31] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.44, 10.31] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [8.94, 10.32] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.92] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.39] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.36] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.32, 10.39] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.14, 10.25] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.40, 10.53] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.36, 10.17] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [9.62, 10.25] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.00, 11.37] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.34] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.35] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.07, 10.40] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 11.30] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.41] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.40] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.06, 10.41] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.12, 11.28] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.39, 10.40] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.50, 10.30] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.26, 10.29] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.91] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.37] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.36] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.06, 10.23] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.89] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.50] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.45] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.06, 10.46] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.09, 10.95] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.39, 10.27] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.32, 10.37] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.32, 10.36] s
Known issues
------------
Here are the changes found in XEIGTPW_11706_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][14] -> [FAIL][15] ([Intel XE#1426]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-434/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-lnl: [PASS][16] -> [FAIL][17] ([Intel XE#1659]) +1 other test fail
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1407])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#316])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-434/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1124] / [Intel XE#1201]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1467])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#367])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +6 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1252])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1399]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1201] / [Intel XE#306])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#373])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1201] / [Intel XE#373])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#455]) +13 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#1201] / [Intel XE#308])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1413])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_edge_walk@128x128-left-edge:
- shard-lnl: [PASS][34] -> [FAIL][35] ([Intel XE#2577]) +1 other test fail
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-7/igt@kms_cursor_edge_walk@128x128-left-edge.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-1/igt@kms_cursor_edge_walk@128x128-left-edge.html
* igt@kms_cursor_legacy@single-bo:
- shard-dg2-set2: [PASS][36] -> [DMESG-WARN][37] ([Intel XE#877]) +1 other test dmesg-warn
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_cursor_legacy@single-bo.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-434/igt@kms_cursor_legacy@single-bo.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: NOTRUN -> [FAIL][38] ([Intel XE#886]) +1 other test fail
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1401]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#455]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#651]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#1201] / [Intel XE#651])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#651]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#656]) +10 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#653])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_plane_lowres@tiling-x:
- shard-dg2-set2: [PASS][47] -> [INCOMPLETE][48] ([Intel XE#1195])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_plane_lowres@tiling-x.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1201]) +20 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1406])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-2/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@psr-no-drrs:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#929])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@kms_psr@psr-no-drrs.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#929])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_vrr@flip-basic-fastset:
- shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#2443]) +1 other test fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-7/igt@kms_vrr@flip-basic-fastset.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#756])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@xe_create@multigpu-create-massive-size:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#944])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [PASS][57] -> [TIMEOUT][58] ([Intel XE#1473] / [Intel XE#402])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#688]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [PASS][60] -> [TIMEOUT][61] ([Intel XE#1473])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-small.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1392]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#288]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#288])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_oa@mmio-triggered-reports:
- shard-lnl: [PASS][65] -> [FAIL][66] ([Intel XE#2249])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-7/igt@xe_oa@mmio-triggered-reports.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-6/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@mmio-triggered-reports@rcs-0:
- shard-lnl: NOTRUN -> [FAIL][67] ([Intel XE#2249])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-6/igt@xe_oa@mmio-triggered-reports@rcs-0.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#1201] / [Intel XE#2541]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1948])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-4/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#584])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s3-multiple-execs:
- shard-dg2-set2: [PASS][71] -> [DMESG-WARN][72] ([Intel XE#1551] / [Intel XE#569])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_pm@s3-multiple-execs.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: [PASS][73] -> [DMESG-WARN][74] ([Intel XE#1162] / [Intel XE#1941] / [Intel XE#569])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_pm@s3-vm-bind-unbind-all.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s4-multiple-execs:
- shard-lnl: [PASS][75] -> [ABORT][76] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-1/igt@xe_pm@s4-multiple-execs.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [PASS][77] -> [FAIL][78] ([Intel XE#958])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-4/igt@xe_pm_residency@toggle-gt-c6.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-lnl: [PASS][79] -> [DMESG-WARN][80] ([Intel XE#1760])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-4/igt@xe_wedged@wedged-at-any-timeout.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-7/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [FAIL][81] ([Intel XE#911]) -> [PASS][82] +3 other tests pass
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][83] ([Intel XE#1426]) -> [PASS][84] +1 other test pass
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-436/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-lnl: [FAIL][85] ([Intel XE#1426]) -> [PASS][86] +1 other test pass
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-all-transition-fencing@pipe-a-dp-2:
- {shard-bmg}: [INCOMPLETE][87] -> [PASS][88] +1 other test pass
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-bmg-4/igt@kms_atomic_transition@plane-all-transition-fencing@pipe-a-dp-2.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-bmg-4/igt@kms_atomic_transition@plane-all-transition-fencing@pipe-a-dp-2.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: [FAIL][89] ([Intel XE#1659]) -> [PASS][90] +1 other test pass
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-d-dp-2:
- {shard-bmg}: [FAIL][91] ([Intel XE#2436]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-d-dp-2.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-d-dp-2.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-dg2-set2: [INCOMPLETE][93] -> [PASS][94] +1 other test pass
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_cursor_crc@cursor-suspend.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-434/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_edge_walk@256x256-right-edge:
- shard-lnl: [FAIL][95] ([Intel XE#2577]) -> [PASS][96] +1 other test pass
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-7/igt@kms_cursor_edge_walk@256x256-right-edge.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-3/igt@kms_cursor_edge_walk@256x256-right-edge.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-dg2-set2: [INCOMPLETE][97] ([Intel XE#1195]) -> [PASS][98] +1 other test pass
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1:
- shard-lnl: [FAIL][99] ([Intel XE#886]) -> [PASS][100] +1 other test pass
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html
* igt@kms_hdr@invalid-hdr:
- {shard-bmg}: [SKIP][101] ([Intel XE#1503]) -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane@plane-position-hole:
- shard-lnl: [DMESG-FAIL][103] ([Intel XE#324]) -> [PASS][104] +1 other test pass
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-4/igt@kms_plane@plane-position-hole.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@kms_plane@plane-position-hole.html
* igt@kms_plane@plane-position-hole@pipe-b-plane-4:
- shard-lnl: [DMESG-WARN][105] ([Intel XE#324]) -> [PASS][106] +1 other test pass
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-4/igt@kms_plane@plane-position-hole@pipe-b-plane-4.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-b-plane-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: [FAIL][107] ([Intel XE#361]) -> [PASS][108] +1 other test pass
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-lnl: [FAIL][109] ([Intel XE#1649]) -> [PASS][110] +1 other test pass
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-1/igt@kms_psr@fbc-psr2-dpms.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_vrr@flip-basic:
- shard-lnl: [FAIL][111] ([Intel XE#2443]) -> [PASS][112] +1 other test pass
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-8/igt@kms_vrr@flip-basic.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-6/igt@kms_vrr@flip-basic.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][113] ([Intel XE#1473]) -> [PASS][114] +1 other test pass
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-small-external-cm:
- {shard-bmg}: [DMESG-WARN][115] ([Intel XE#877]) -> [PASS][116] +7 other tests pass
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-bmg-4/igt@xe_evict@evict-small-external-cm.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-bmg-8/igt@xe_evict@evict-small-external-cm.html
* igt@xe_exec_compute_mode@twice-userptr-invalidate:
- shard-lnl: [FAIL][117] ([Intel XE#1069]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-3/igt@xe_exec_compute_mode@twice-userptr-invalidate.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-1/igt@xe_exec_compute_mode@twice-userptr-invalidate.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [TIMEOUT][119] ([Intel XE#2105]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [ABORT][121] ([Intel XE#1794]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-6/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_pm_residency@idle-residency-on-exec:
- shard-lnl: [TIMEOUT][123] ([Intel XE#2484]) -> [PASS][124]
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html
* igt@xe_pm_residency@idle-residency-on-exec@gt0-engine-drm_xe_engine_class_compute:
- shard-lnl: [TIMEOUT][125] -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec@gt0-engine-drm_xe_engine_class_compute.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec@gt0-engine-drm_xe_engine_class_compute.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [FAIL][127] -> [PASS][128]
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@xe_wedged@wedged-at-any-timeout.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-434/igt@xe_wedged@wedged-at-any-timeout.html
#### Warnings ####
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][129] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][130] ([Intel XE#316]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][131] ([Intel XE#316]) -> [SKIP][132] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][133] ([Intel XE#1201] / [Intel XE#619]) -> [SKIP][134] ([Intel XE#619])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][135] ([Intel XE#1124]) -> [SKIP][136] ([Intel XE#1124] / [Intel XE#1201]) +6 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][137] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][138] ([Intel XE#1124]) +7 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: [SKIP][139] ([Intel XE#619]) -> [SKIP][140] ([Intel XE#1201] / [Intel XE#619])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][141] ([Intel XE#1201] / [Intel XE#2191]) -> [SKIP][142] ([Intel XE#2191])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: [SKIP][143] ([Intel XE#367]) -> [SKIP][144] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][145] ([Intel XE#787]) -> [SKIP][146] ([Intel XE#1201] / [Intel XE#787]) +62 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][147] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][148] ([Intel XE#787]) +55 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][149] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][150] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +17 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][151] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][152] ([Intel XE#1252])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][153] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][154] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][155] ([Intel XE#314]) -> [SKIP][156] ([Intel XE#1201] / [Intel XE#314]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: [SKIP][157] ([Intel XE#1152]) -> [SKIP][158] ([Intel XE#1152] / [Intel XE#1201]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: [SKIP][159] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][160] ([Intel XE#306])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@kms_chamelium_color@ctm-limited-range.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: [SKIP][161] ([Intel XE#306]) -> [SKIP][162] ([Intel XE#1201] / [Intel XE#306])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_chamelium_color@degamma.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: [SKIP][163] ([Intel XE#373]) -> [SKIP][164] ([Intel XE#1201] / [Intel XE#373]) +6 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][165] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][166] ([Intel XE#373]) +9 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][167] ([Intel XE#1201] / [Intel XE#307]) -> [SKIP][168] ([Intel XE#307])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: [SKIP][169] ([Intel XE#307]) -> [SKIP][170] ([Intel XE#1201] / [Intel XE#307])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_content_protection@dp-mst-type-1.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2-set2: [SKIP][171] ([Intel XE#308]) -> [SKIP][172] ([Intel XE#1201] / [Intel XE#308])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x170.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2-set2: [SKIP][173] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][174] ([Intel XE#308])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-433/igt@kms_cursor_crc@cursor-random-512x512.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2-set2: [SKIP][175] ([Intel XE#455]) -> [SKIP][176] ([Intel XE#1201] / [Intel XE#455]) +11 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_cursor_crc@cursor-random-max-size.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2-set2: [SKIP][177] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][178] ([Intel XE#323])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: [SKIP][179] ([Intel XE#323]) -> [SKIP][180] ([Intel XE#1201] / [Intel XE#323])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: [SKIP][181] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][182] ([Intel XE#776])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_fbcon_fbt@psr.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: [SKIP][183] ([Intel XE#701]) -> [SKIP][184] ([Intel XE#1201] / [Intel XE#701])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_feature_discovery@chamelium.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][185] ([Intel XE#1138]) -> [SKIP][186] ([Intel XE#1138] / [Intel XE#1201])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_feature_discovery@display-4x.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: [SKIP][187] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][188] ([Intel XE#455]) +12 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][189] ([Intel XE#651]) -> [SKIP][190] ([Intel XE#1201] / [Intel XE#651]) +19 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][191] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][192] ([Intel XE#651]) +20 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-stridechange:
- shard-dg2-set2: [SKIP][193] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][194] ([Intel XE#653]) +21 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
- shard-dg2-set2: [SKIP][195] ([Intel XE#653]) -> [SKIP][196] ([Intel XE#1201] / [Intel XE#653]) +22 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][197] ([Intel XE#1201] / [Intel XE#658]) -> [SKIP][198] ([Intel XE#658])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][199] ([Intel XE#1201] / [Intel XE#356]) -> [SKIP][200] ([Intel XE#356])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2-set2: [SKIP][201] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][202] ([Intel XE#455])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-set2: [SKIP][203] ([Intel XE#455] / [Intel XE#498]) -> [SKIP][204] ([Intel XE#1201] / [Intel XE#455])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][205] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][206] ([Intel XE#1201] / [Intel XE#455]) +4 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2-set2: [SKIP][207] ([Intel XE#2318] / [Intel XE#455]) -> [SKIP][208] ([Intel XE#455])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][209] ([Intel XE#2318] / [Intel XE#455]) -> [SKIP][210] ([Intel XE#1201] / [Intel XE#455])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: [SKIP][211] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][212] ([Intel XE#870])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@kms_pm_backlight@bad-brightness.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2-set2: [SKIP][213] ([Intel XE#1129] / [Intel XE#1201]) -> [SKIP][214] ([Intel XE#1129])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_pm_dc@dc6-psr.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-dg2-set2: [SKIP][215] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][216] ([Intel XE#1489]) +2 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area:
- shard-dg2-set2: [SKIP][217] ([Intel XE#1489]) -> [SKIP][218] ([Intel XE#1201] / [Intel XE#1489]) +3 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][219] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][220] ([Intel XE#929]) +10 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-463/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: [SKIP][221] ([Intel XE#929]) -> [SKIP][222] ([Intel XE#1201] / [Intel XE#929]) +8 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-render.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][223] ([Intel XE#1127]) -> [SKIP][224] ([Intel XE#1127] / [Intel XE#1201])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][225] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][226] ([Intel XE#327])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][227] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][228] ([Intel XE#1127])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][229] ([Intel XE#327]) -> [SKIP][230] ([Intel XE#1201] / [Intel XE#327])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][231] ([Intel XE#1201] / [Intel XE#1500]) -> [SKIP][232] ([Intel XE#1201] / [Intel XE#362])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: [SKIP][233] ([Intel XE#2168]) -> [SKIP][234] ([Intel XE#1201] / [Intel XE#2168])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_vrr@lobf.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: [SKIP][235] ([Intel XE#756]) -> [SKIP][236] ([Intel XE#1201] / [Intel XE#756])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_writeback@writeback-fb-id.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@kms_writeback@writeback-fb-id.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][237] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][238] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-dg2-set2: [SKIP][239] ([Intel XE#1126]) -> [SKIP][240] ([Intel XE#1126] / [Intel XE#1201])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x369.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: [SKIP][241] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][242] ([Intel XE#288]) +21 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_fault_mode@once-rebind-imm:
- shard-dg2-set2: [SKIP][243] ([Intel XE#288]) -> [SKIP][244] ([Intel XE#1201] / [Intel XE#288]) +17 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_exec_fault_mode@once-rebind-imm.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@xe_exec_fault_mode@once-rebind-imm.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][245] ([Intel XE#512]) -> [SKIP][246] ([Intel XE#1201] / [Intel XE#512])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_mmap@small-bar.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@xe_mmap@small-bar.html
* igt@xe_oa@create-destroy-userspace-config:
- shard-dg2-set2: [SKIP][247] ([Intel XE#2541]) -> [SKIP][248] ([Intel XE#1201] / [Intel XE#2541]) +3 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_oa@create-destroy-userspace-config.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@xe_oa@create-destroy-userspace-config.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: [SKIP][249] ([Intel XE#1201] / [Intel XE#2541]) -> [SKIP][250] ([Intel XE#2541]) +4 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][251] ([Intel XE#1201] / [Intel XE#1337]) -> [SKIP][252] ([Intel XE#1337])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@xe_pat@display-vs-wb-transient.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-dg2-set2: [SKIP][253] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][254] ([Intel XE#944])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@xe_query@multigpu-query-invalid-size.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: [SKIP][255] ([Intel XE#944]) -> [SKIP][256] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_query@multigpu-query-oa-units.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@xe_query@multigpu-query-oa-units.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#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1656
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1941
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[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#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
[Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251
[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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2436]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2436
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2484]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2484
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[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
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
Build changes
-------------
* IGT: IGT_8007 -> IGTPW_11706
IGTPW_11706: 11706
IGT_8007: 8f9900c288f4cf1244d66baa71bc6d9355747cbd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1901-7f3ffaf88a3a1b3e29416488fb4e58fd551cd89d: 7f3ffaf88a3a1b3e29416488fb4e58fd551cd89d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/index.html
[-- Attachment #2: Type: text/html, Size: 112244 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev2)
2024-09-05 14:50 [PATCH i-g-t v1 0/5] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
` (6 preceding siblings ...)
2024-09-08 3:33 ` ✗ CI.xeFULL: " Patchwork
@ 2024-09-10 10:57 ` Patchwork
2024-09-10 12:02 ` ✗ CI.xeFULL: " Patchwork
` (3 subsequent siblings)
11 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-09-10 10:57 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 30886 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev2)
URL : https://patchwork.freedesktop.org/series/137770/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8007_BAT -> XEIGTPW_11706_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11706_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11706_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (9 -> 8)
------------------------------
Missing (1): bat-pvc-2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11706_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a (NEW):
- bat-dg2-oem2: NOTRUN -> [SKIP][1] +59 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-dg2-oem2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- bat-adlp-vf: NOTRUN -> [SKIP][2] +44 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-adlp-vf/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d (NEW):
- bat-bmg-1: NOTRUN -> [SKIP][3] +114 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c (NEW):
- bat-adlp-7: NOTRUN -> [SKIP][4] +29 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-adlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a (NEW):
- bat-lnl-2: NOTRUN -> [SKIP][5] +134 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d (NEW):
- {bat-bmg-2}: NOTRUN -> [SKIP][6] +179 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a (NEW):
- bat-lnl-1: NOTRUN -> [SKIP][7] +93 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-lnl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
New tests
---------
New tests have been introduced between XEIGT_8007_BAT and XEIGTPW_11706_BAT:
### New IGT tests (180) ###
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.18] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.42] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.43] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.43] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 1.20] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.42] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.41] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.42] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.19] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.43] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.42] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.42] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.59] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.60] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.57] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 1.63] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.35] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.36] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.39] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 1.36] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.39] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.50] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.47] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 1.47] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.60] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.95] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.89] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.60] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.38] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.37] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.46] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.29] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.47] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.70] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.73] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.51] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.68] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.93] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.84] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.55] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.37] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.35] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.48] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.37] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.47] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.17] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.73] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.44] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.54] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.68] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.78] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.60] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a:
- Statuses : 3 pass(s) 3 skip(s)
- Exec time: [0.0, 2.20] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- Statuses : 3 pass(s) 3 skip(s)
- Exec time: [0.0, 2.30] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 4.70] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.30] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.37] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.60] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.62] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.49] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.67] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 5.78] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.92] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.61] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.77] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.00] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.42] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.31] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.47] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.67] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 2.04] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.41] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.55] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.79] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 2.03] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.59] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.66] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 2.83] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.54] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.34] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.36] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.86] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.61] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.52] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.81] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.82] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.63] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.59] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.71] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.71] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.71] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.72] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.77] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.76] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.65] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.67] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.65] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.84] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.69] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.73] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.82] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.00] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.90] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 6.93] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.83] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.98] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.96] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 7.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.87] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.90] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 6.89] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.49] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.26] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.27] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d:
- Statuses : 2 pass(s) 2 skip(s)
- Exec time: [0.0, 3.28] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.88] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.06] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.04] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 6.93] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.70] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.82] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.70] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.62] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.88] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.04] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.03] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 6.91] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.83] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.78] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.66] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.57] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.53] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.33] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.33] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- Statuses : 2 pass(s) 2 skip(s)
- Exec time: [0.0, 3.33] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.81] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.90] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.04] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 6.91] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.73] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.81] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.72] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.68] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.44] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.27] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.27] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d:
- Statuses : 2 pass(s) 2 skip(s)
- Exec time: [0.0, 3.27] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.76] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.95] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.89] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 6.98] s
Known issues
------------
Here are the changes found in XEIGTPW_11706_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- bat-dg2-oem2: NOTRUN -> [SKIP][8] ([Intel XE#455]) +39 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-dg2-oem2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format:
- bat-atsm-2: NOTRUN -> [SKIP][9] ([Intel XE#1024]) +44 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-atsm-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- bat-lnl-2: NOTRUN -> [SKIP][10] ([Intel XE#2381]) +44 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d (NEW):
- bat-adlp-7: NOTRUN -> [SKIP][11] ([Intel XE#455]) +19 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/bat-adlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
[Intel XE#2381]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2381
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_8007 -> IGTPW_11706
IGTPW_11706: 11706
IGT_8007: 8f9900c288f4cf1244d66baa71bc6d9355747cbd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1901-7f3ffaf88a3a1b3e29416488fb4e58fd551cd89d: 7f3ffaf88a3a1b3e29416488fb4e58fd551cd89d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/index.html
[-- Attachment #2: Type: text/html, Size: 37254 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* ✗ CI.xeFULL: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev2)
2024-09-05 14:50 [PATCH i-g-t v1 0/5] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
` (7 preceding siblings ...)
2024-09-10 10:57 ` ✗ CI.xeBAT: " Patchwork
@ 2024-09-10 12:02 ` Patchwork
2024-09-10 23:03 ` ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev3) Patchwork
` (2 subsequent siblings)
11 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-09-10 12:02 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 88932 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev2)
URL : https://patchwork.freedesktop.org/series/137770/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8007_full -> XEIGTPW_11706_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11706_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11706_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_11706_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b (NEW):
- shard-lnl: NOTRUN -> [SKIP][1] +69 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][2] +5 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b (NEW):
- {shard-bmg}: NOTRUN -> [SKIP][3] +59 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
#### Warnings ####
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-lnl: [SKIP][4] ([Intel XE#498]) -> [SKIP][5] +4 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-lnl: [SKIP][6] ([Intel XE#2318]) -> [SKIP][7] +14 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_flip@2x-flip-vs-rmfb@bd-dp2-hdmi-a3:
- {shard-bmg}: [PASS][8] -> [INCOMPLETE][9] +1 other test incomplete
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-bmg-1/igt@kms_flip@2x-flip-vs-rmfb@bd-dp2-hdmi-a3.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-bmg-2/igt@kms_flip@2x-flip-vs-rmfb@bd-dp2-hdmi-a3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- {shard-bmg}: [SKIP][10] ([Intel XE#498]) -> [SKIP][11] +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- {shard-bmg}: [SKIP][12] ([Intel XE#2318]) -> [SKIP][13] +12 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
New tests
---------
New tests have been introduced between XEIGT_8007_full and XEIGTPW_11706_full:
### New IGT tests (177) ###
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 1.01] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.89] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 1.36] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [1.12, 1.36] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 1.03] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.93] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 1.43] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [1.10, 1.42] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 1 skip(s)
- Exec time: [0.01] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 1 skip(s)
- Exec time: [0.01] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 1 skip(s)
- Exec time: [0.01] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b:
- Statuses : 1 skip(s)
- Exec time: [0.01] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c:
- Statuses : 1 skip(s)
- Exec time: [0.01] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- Statuses : 2 pass(s)
- Exec time: [1.85, 1.88] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b:
- Statuses : 2 pass(s)
- Exec time: [1.84, 2.02] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.31] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.32] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.00, 0.44] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 0.48] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 0.48] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.44, 0.48] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.55, 0.72] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.94] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 5.11] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.60, 0.64] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [1.82, 3.43] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.79, 3.31] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.27, 1.48] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.30, 0.31] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.39, 0.51] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.46, 1.61] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.73] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.44, 0.48] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.56, 0.68] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.63, 1.86] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.93] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.61, 0.64] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [1.81, 3.51] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.81, 3.38] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.28, 1.47] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.31] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- Statuses : 1 pass(s)
- Exec time: [0.47] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- Statuses : 1 pass(s)
- Exec time: [1.70] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- Statuses : 1 pass(s)
- Exec time: [1.69] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.53, 0.63] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.78] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.76] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.61, 0.65] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.18, 1.85] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [1.35, 2.04] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.27, 1.42] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.31] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.38, 0.44] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.46, 1.59] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.46, 1.55] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.44, 0.47] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.57, 0.68] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.88] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.87] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.61, 0.65] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [1.69, 1.77] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.74, 3.02] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.29, 1.51] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.28, 0.31] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.41, 0.46] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.70] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.44, 2.44] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.46, 0.50] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.53, 0.58] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.60, 1.78] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.74] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.61, 0.64] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [1.67, 1.72] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.74, 3.03] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.28, 1.47] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.31] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.36, 0.42] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.61] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.63] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.44, 0.47] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 11.04] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.35] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.38] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.25, 10.38] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.00, 10.94] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.39] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.41] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.28, 10.41] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 11.00] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.48] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.30] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.22, 10.29] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.96] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.33] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.29] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.06, 10.34] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.15, 10.20] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.34, 10.22] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.37, 10.24] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [9.60, 10.38] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.16, 10.94] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.40, 10.41] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.34, 10.24] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.21, 10.36] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.15, 10.26] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.31, 10.23] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.33, 10.34] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [8.90, 10.38] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.95] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.02, 10.27] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.02, 10.36] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.06, 10.30] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.14, 10.16] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.33, 10.31] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.44, 10.31] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [8.94, 10.32] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.92] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.39] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.36] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.32, 10.39] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.14, 10.25] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.40, 10.53] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.36, 10.17] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [9.62, 10.25] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.00, 11.37] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.34] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.35] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.07, 10.40] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 11.30] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.41] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.40] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.06, 10.41] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.12, 11.28] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.39, 10.40] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.50, 10.30] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.26, 10.29] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.91] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.37] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.36] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.06, 10.23] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.89] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.50] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.45] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.06, 10.46] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.09, 10.95] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.39, 10.27] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.32, 10.37] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.32, 10.36] s
Known issues
------------
Here are the changes found in XEIGTPW_11706_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][14] -> [FAIL][15] ([Intel XE#1426]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-434/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-lnl: [PASS][16] -> [FAIL][17] ([Intel XE#1659]) +1 other test fail
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1407])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#316])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-434/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1124] / [Intel XE#1201]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1467])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#367])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +6 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1252])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1399]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1201] / [Intel XE#306])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#373])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1201] / [Intel XE#373])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#455]) +13 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#1201] / [Intel XE#308])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1413])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_edge_walk@128x128-left-edge:
- shard-lnl: [PASS][34] -> [FAIL][35] ([Intel XE#2577]) +1 other test fail
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-7/igt@kms_cursor_edge_walk@128x128-left-edge.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-1/igt@kms_cursor_edge_walk@128x128-left-edge.html
* igt@kms_cursor_legacy@single-bo:
- shard-dg2-set2: [PASS][36] -> [DMESG-WARN][37] ([Intel XE#877]) +1 other test dmesg-warn
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_cursor_legacy@single-bo.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-434/igt@kms_cursor_legacy@single-bo.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: NOTRUN -> [FAIL][38] ([Intel XE#886]) +1 other test fail
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1401]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#455]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#651]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#1201] / [Intel XE#651])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#651]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#656]) +10 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#653])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_plane_lowres@tiling-x:
- shard-dg2-set2: [PASS][47] -> [INCOMPLETE][48] ([Intel XE#1195])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_plane_lowres@tiling-x.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1201]) +20 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1406])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-2/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@psr-no-drrs:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#929])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@kms_psr@psr-no-drrs.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#929])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_vrr@flip-basic-fastset:
- shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#2443]) +1 other test fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-7/igt@kms_vrr@flip-basic-fastset.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#756])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@xe_create@multigpu-create-massive-size:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#944])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [PASS][57] -> [TIMEOUT][58] ([Intel XE#1473] / [Intel XE#402])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#688]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [PASS][60] -> [TIMEOUT][61] ([Intel XE#1473])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-small.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1392]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#288]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#288])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_oa@mmio-triggered-reports:
- shard-lnl: [PASS][65] -> [FAIL][66] ([Intel XE#2249])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-7/igt@xe_oa@mmio-triggered-reports.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-6/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@mmio-triggered-reports@rcs-0:
- shard-lnl: NOTRUN -> [FAIL][67] ([Intel XE#2249])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-6/igt@xe_oa@mmio-triggered-reports@rcs-0.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#1201] / [Intel XE#2541]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1948])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-4/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#584])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s3-multiple-execs:
- shard-dg2-set2: [PASS][71] -> [DMESG-WARN][72] ([Intel XE#1551] / [Intel XE#569])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_pm@s3-multiple-execs.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: [PASS][73] -> [DMESG-WARN][74] ([Intel XE#1162] / [Intel XE#1941] / [Intel XE#569])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_pm@s3-vm-bind-unbind-all.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s4-multiple-execs:
- shard-lnl: [PASS][75] -> [ABORT][76] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-1/igt@xe_pm@s4-multiple-execs.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [PASS][77] -> [FAIL][78] ([Intel XE#958])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-4/igt@xe_pm_residency@toggle-gt-c6.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-lnl: [PASS][79] -> [DMESG-WARN][80] ([Intel XE#1760])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-4/igt@xe_wedged@wedged-at-any-timeout.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-7/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [FAIL][81] ([Intel XE#911]) -> [PASS][82] +3 other tests pass
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][83] ([Intel XE#1426]) -> [PASS][84] +1 other test pass
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-436/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-lnl: [FAIL][85] ([Intel XE#1426]) -> [PASS][86] +1 other test pass
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-all-transition-fencing@pipe-a-dp-2:
- {shard-bmg}: [INCOMPLETE][87] -> [PASS][88] +1 other test pass
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-bmg-4/igt@kms_atomic_transition@plane-all-transition-fencing@pipe-a-dp-2.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-bmg-4/igt@kms_atomic_transition@plane-all-transition-fencing@pipe-a-dp-2.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: [FAIL][89] ([Intel XE#1659]) -> [PASS][90] +1 other test pass
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-d-dp-2:
- {shard-bmg}: [FAIL][91] ([Intel XE#2436]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-d-dp-2.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-d-dp-2.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-dg2-set2: [INCOMPLETE][93] -> [PASS][94] +1 other test pass
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_cursor_crc@cursor-suspend.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-434/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_edge_walk@256x256-right-edge:
- shard-lnl: [FAIL][95] ([Intel XE#2577]) -> [PASS][96] +1 other test pass
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-7/igt@kms_cursor_edge_walk@256x256-right-edge.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-3/igt@kms_cursor_edge_walk@256x256-right-edge.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-dg2-set2: [INCOMPLETE][97] ([Intel XE#1195]) -> [PASS][98] +1 other test pass
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1:
- shard-lnl: [FAIL][99] ([Intel XE#886]) -> [PASS][100] +1 other test pass
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html
* igt@kms_hdr@invalid-hdr:
- {shard-bmg}: [SKIP][101] ([Intel XE#1503]) -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane@plane-position-hole:
- shard-lnl: [DMESG-FAIL][103] ([Intel XE#324]) -> [PASS][104] +1 other test pass
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-4/igt@kms_plane@plane-position-hole.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@kms_plane@plane-position-hole.html
* igt@kms_plane@plane-position-hole@pipe-b-plane-4:
- shard-lnl: [DMESG-WARN][105] ([Intel XE#324]) -> [PASS][106] +1 other test pass
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-4/igt@kms_plane@plane-position-hole@pipe-b-plane-4.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-b-plane-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: [FAIL][107] ([Intel XE#361]) -> [PASS][108] +1 other test pass
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-lnl: [FAIL][109] ([Intel XE#1649]) -> [PASS][110] +1 other test pass
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-1/igt@kms_psr@fbc-psr2-dpms.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-5/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_vrr@flip-basic:
- shard-lnl: [FAIL][111] ([Intel XE#2443]) -> [PASS][112] +1 other test pass
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-8/igt@kms_vrr@flip-basic.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-6/igt@kms_vrr@flip-basic.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][113] ([Intel XE#1473]) -> [PASS][114] +1 other test pass
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-small-external-cm:
- {shard-bmg}: [DMESG-WARN][115] ([Intel XE#877]) -> [PASS][116] +7 other tests pass
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-bmg-4/igt@xe_evict@evict-small-external-cm.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-bmg-8/igt@xe_evict@evict-small-external-cm.html
* igt@xe_exec_compute_mode@twice-userptr-invalidate:
- shard-lnl: [FAIL][117] ([Intel XE#1069]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-3/igt@xe_exec_compute_mode@twice-userptr-invalidate.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-1/igt@xe_exec_compute_mode@twice-userptr-invalidate.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [TIMEOUT][119] ([Intel XE#2105]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [ABORT][121] ([Intel XE#1794]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-6/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_pm_residency@idle-residency-on-exec:
- shard-lnl: [TIMEOUT][123] ([Intel XE#2484]) -> [PASS][124] +1 other test pass
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [FAIL][125] -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@xe_wedged@wedged-at-any-timeout.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-434/igt@xe_wedged@wedged-at-any-timeout.html
#### Warnings ####
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][127] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][128] ([Intel XE#316]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][129] ([Intel XE#316]) -> [SKIP][130] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][131] ([Intel XE#1201] / [Intel XE#619]) -> [SKIP][132] ([Intel XE#619])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][133] ([Intel XE#1124]) -> [SKIP][134] ([Intel XE#1124] / [Intel XE#1201]) +6 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][135] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][136] ([Intel XE#1124]) +7 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: [SKIP][137] ([Intel XE#619]) -> [SKIP][138] ([Intel XE#1201] / [Intel XE#619])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][139] ([Intel XE#1201] / [Intel XE#2191]) -> [SKIP][140] ([Intel XE#2191])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: [SKIP][141] ([Intel XE#367]) -> [SKIP][142] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][143] ([Intel XE#787]) -> [SKIP][144] ([Intel XE#1201] / [Intel XE#787]) +62 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][145] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][146] ([Intel XE#787]) +55 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][147] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][148] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +17 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][149] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][150] ([Intel XE#1252])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][151] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][152] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][153] ([Intel XE#314]) -> [SKIP][154] ([Intel XE#1201] / [Intel XE#314]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: [SKIP][155] ([Intel XE#1152]) -> [SKIP][156] ([Intel XE#1152] / [Intel XE#1201]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: [SKIP][157] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][158] ([Intel XE#306])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@kms_chamelium_color@ctm-limited-range.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: [SKIP][159] ([Intel XE#306]) -> [SKIP][160] ([Intel XE#1201] / [Intel XE#306])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_chamelium_color@degamma.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: [SKIP][161] ([Intel XE#373]) -> [SKIP][162] ([Intel XE#1201] / [Intel XE#373]) +6 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][163] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][164] ([Intel XE#373]) +9 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][165] ([Intel XE#1201] / [Intel XE#307]) -> [SKIP][166] ([Intel XE#307])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: [SKIP][167] ([Intel XE#307]) -> [SKIP][168] ([Intel XE#1201] / [Intel XE#307])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_content_protection@dp-mst-type-1.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2-set2: [SKIP][169] ([Intel XE#308]) -> [SKIP][170] ([Intel XE#1201] / [Intel XE#308])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x170.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2-set2: [SKIP][171] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][172] ([Intel XE#308])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-433/igt@kms_cursor_crc@cursor-random-512x512.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2-set2: [SKIP][173] ([Intel XE#455]) -> [SKIP][174] ([Intel XE#1201] / [Intel XE#455]) +11 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_cursor_crc@cursor-random-max-size.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2-set2: [SKIP][175] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][176] ([Intel XE#323])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: [SKIP][177] ([Intel XE#323]) -> [SKIP][178] ([Intel XE#1201] / [Intel XE#323])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: [SKIP][179] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][180] ([Intel XE#776])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_fbcon_fbt@psr.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: [SKIP][181] ([Intel XE#701]) -> [SKIP][182] ([Intel XE#1201] / [Intel XE#701])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_feature_discovery@chamelium.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][183] ([Intel XE#1138]) -> [SKIP][184] ([Intel XE#1138] / [Intel XE#1201])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_feature_discovery@display-4x.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: [SKIP][185] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][186] ([Intel XE#455]) +12 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][187] ([Intel XE#651]) -> [SKIP][188] ([Intel XE#1201] / [Intel XE#651]) +19 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][189] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][190] ([Intel XE#651]) +20 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-stridechange:
- shard-dg2-set2: [SKIP][191] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][192] ([Intel XE#653]) +21 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
- shard-dg2-set2: [SKIP][193] ([Intel XE#653]) -> [SKIP][194] ([Intel XE#1201] / [Intel XE#653]) +22 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][195] ([Intel XE#1201] / [Intel XE#658]) -> [SKIP][196] ([Intel XE#658])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][197] ([Intel XE#1201] / [Intel XE#356]) -> [SKIP][198] ([Intel XE#356])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2-set2: [SKIP][199] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][200] ([Intel XE#455])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-set2: [SKIP][201] ([Intel XE#455] / [Intel XE#498]) -> [SKIP][202] ([Intel XE#1201] / [Intel XE#455])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][203] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][204] ([Intel XE#1201] / [Intel XE#455]) +4 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2-set2: [SKIP][205] ([Intel XE#2318] / [Intel XE#455]) -> [SKIP][206] ([Intel XE#455])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][207] ([Intel XE#2318] / [Intel XE#455]) -> [SKIP][208] ([Intel XE#1201] / [Intel XE#455])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: [SKIP][209] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][210] ([Intel XE#870])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@kms_pm_backlight@bad-brightness.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2-set2: [SKIP][211] ([Intel XE#1129] / [Intel XE#1201]) -> [SKIP][212] ([Intel XE#1129])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@kms_pm_dc@dc6-psr.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-dg2-set2: [SKIP][213] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][214] ([Intel XE#1489]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area:
- shard-dg2-set2: [SKIP][215] ([Intel XE#1489]) -> [SKIP][216] ([Intel XE#1201] / [Intel XE#1489]) +3 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][217] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][218] ([Intel XE#929]) +10 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-463/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: [SKIP][219] ([Intel XE#929]) -> [SKIP][220] ([Intel XE#1201] / [Intel XE#929]) +8 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-render.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][221] ([Intel XE#1127]) -> [SKIP][222] ([Intel XE#1127] / [Intel XE#1201])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][223] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][224] ([Intel XE#327])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][225] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][226] ([Intel XE#1127])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][227] ([Intel XE#327]) -> [SKIP][228] ([Intel XE#1201] / [Intel XE#327])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][229] ([Intel XE#1201] / [Intel XE#1500]) -> [SKIP][230] ([Intel XE#1201] / [Intel XE#362])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: [SKIP][231] ([Intel XE#2168]) -> [SKIP][232] ([Intel XE#1201] / [Intel XE#2168])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_vrr@lobf.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-466/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: [SKIP][233] ([Intel XE#756]) -> [SKIP][234] ([Intel XE#1201] / [Intel XE#756])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@kms_writeback@writeback-fb-id.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-435/igt@kms_writeback@writeback-fb-id.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][235] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][236] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-dg2-set2: [SKIP][237] ([Intel XE#1126]) -> [SKIP][238] ([Intel XE#1126] / [Intel XE#1201])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x369.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: [SKIP][239] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][240] ([Intel XE#288]) +21 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-434/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_fault_mode@once-rebind-imm:
- shard-dg2-set2: [SKIP][241] ([Intel XE#288]) -> [SKIP][242] ([Intel XE#1201] / [Intel XE#288]) +17 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_exec_fault_mode@once-rebind-imm.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-436/igt@xe_exec_fault_mode@once-rebind-imm.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][243] ([Intel XE#512]) -> [SKIP][244] ([Intel XE#1201] / [Intel XE#512])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_mmap@small-bar.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@xe_mmap@small-bar.html
* igt@xe_oa@create-destroy-userspace-config:
- shard-dg2-set2: [SKIP][245] ([Intel XE#2541]) -> [SKIP][246] ([Intel XE#1201] / [Intel XE#2541]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_oa@create-destroy-userspace-config.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@xe_oa@create-destroy-userspace-config.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: [SKIP][247] ([Intel XE#1201] / [Intel XE#2541]) -> [SKIP][248] ([Intel XE#2541]) +4 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][249] ([Intel XE#1201] / [Intel XE#1337]) -> [SKIP][250] ([Intel XE#1337])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-435/igt@xe_pat@display-vs-wb-transient.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-dg2-set2: [SKIP][251] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][252] ([Intel XE#944])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-466/igt@xe_query@multigpu-query-invalid-size.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-432/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: [SKIP][253] ([Intel XE#944]) -> [SKIP][254] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8007/shard-dg2-432/igt@xe_query@multigpu-query-oa-units.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/shard-dg2-433/igt@xe_query@multigpu-query-oa-units.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#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1656
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1941
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[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#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
[Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251
[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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2436]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2436
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2484]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2484
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[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
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
Build changes
-------------
* IGT: IGT_8007 -> IGTPW_11706
IGTPW_11706: 11706
IGT_8007: 8f9900c288f4cf1244d66baa71bc6d9355747cbd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1901-7f3ffaf88a3a1b3e29416488fb4e58fd551cd89d: 7f3ffaf88a3a1b3e29416488fb4e58fd551cd89d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11706/index.html
[-- Attachment #2: Type: text/html, Size: 111460 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev3)
2024-09-05 14:50 [PATCH i-g-t v1 0/5] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
` (8 preceding siblings ...)
2024-09-10 12:02 ` ✗ CI.xeFULL: " Patchwork
@ 2024-09-10 23:03 ` Patchwork
2024-09-11 1:04 ` ✓ Fi.CI.IGT: success for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev2) Patchwork
2024-09-11 1:18 ` ✗ CI.xeFULL: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev3) Patchwork
11 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-09-10 23:03 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 31592 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev3)
URL : https://patchwork.freedesktop.org/series/137770/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8012_BAT -> XEIGTPW_11714_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11714_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11714_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11714_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a (NEW):
- bat-dg2-oem2: NOTRUN -> [SKIP][1] +59 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/bat-dg2-oem2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d (NEW):
- bat-bmg-1: NOTRUN -> [SKIP][2] +114 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/bat-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c (NEW):
- bat-adlp-7: NOTRUN -> [SKIP][3] +29 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/bat-adlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a (NEW):
- bat-lnl-2: NOTRUN -> [SKIP][4] +134 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/bat-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d (NEW):
- {bat-bmg-2}: NOTRUN -> [SKIP][5] +179 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/bat-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a (NEW):
- bat-lnl-1: NOTRUN -> [SKIP][6] +93 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/bat-lnl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
New tests
---------
New tests have been introduced between XEIGT_8012_BAT and XEIGTPW_11714_BAT:
### New IGT tests (180) ###
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.18] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.42] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.40] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.39] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.18] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.41] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.42] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.40] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.18] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.41] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.42] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.43] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.61] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.63] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.62] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 1.53] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.35] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.34] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.37] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 1.39] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.48] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.46] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 1.42] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 1.52] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.60] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.94] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.88] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.62] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 5.22] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.21] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.47] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.41] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.50] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.57] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.72] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.49] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.69] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.82] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.91] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.62] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.41] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.42] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.51] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.33] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.46] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.60] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.71] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.50] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.56] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.77] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.76] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.56] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a:
- Statuses : 3 pass(s) 3 skip(s)
- Exec time: [0.0, 2.19] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- Statuses : 3 pass(s) 3 skip(s)
- Exec time: [0.0, 2.37] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.44] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.32] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.39] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.73] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 2.13] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.46] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.68] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.93] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.90] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.53] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.77] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 2.95] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.38] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.39] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.46] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.67] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 2.34] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.50] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.56] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 2.25] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.78] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.61] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 1 dmesg-warn(s) 3 pass(s) 2 skip(s)
- Exec time: [0.0, 1.66] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 2.89] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.40] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.38] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 0.36] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.31] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 1.62] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 1.46] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.71] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.76] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.65] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.67] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.78] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.67] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.71] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.69] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.74] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.79] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.73] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.71] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.71] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.82] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.62] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.66] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.89] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.00] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.95] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 7.00] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.79] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.00] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.90] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 6.99] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.86] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.97] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.99] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 6.91] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.46] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.32] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.30] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d:
- Statuses : 2 pass(s) 2 skip(s)
- Exec time: [0.0, 3.25] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.89] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.93] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.96] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 6.97] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.71] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.86] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.67] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.66] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.96] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.02] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.05] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 6.96] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.79] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.82] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.69] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.64] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.50] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.30] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.27] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- Statuses : 2 pass(s) 2 skip(s)
- Exec time: [0.0, 3.32] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.80] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.83] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.98] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 6.94] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.03] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.76] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.87] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 2.64] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 2.61] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.43] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.31] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 3.33] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d:
- Statuses : 2 pass(s) 2 skip(s)
- Exec time: [0.0, 3.33] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.76] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 7.00] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 6.93] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 7.03] s
Known issues
------------
Here are the changes found in XEIGTPW_11714_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- bat-dg2-oem2: NOTRUN -> [SKIP][7] ([Intel XE#455]) +39 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/bat-dg2-oem2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- bat-adlp-vf: NOTRUN -> [SKIP][8] ([Intel XE#2463]) +44 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/bat-adlp-vf/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format:
- bat-atsm-2: NOTRUN -> [SKIP][9] ([Intel XE#1024]) +44 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/bat-atsm-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format:
- bat-bmg-1: NOTRUN -> [DMESG-WARN][10] ([Intel XE#877]) +1 other test dmesg-warn
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/bat-bmg-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- bat-lnl-2: NOTRUN -> [SKIP][11] ([Intel XE#2381]) +44 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/bat-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d (NEW):
- bat-adlp-7: NOTRUN -> [SKIP][12] ([Intel XE#455]) +19 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/bat-adlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
[Intel XE#2381]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2381
[Intel XE#2463]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2463
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
Build changes
-------------
* IGT: IGT_8012 -> IGTPW_11714
* Linux: xe-1922-32d724d6d6e82bb808ee6a1c5df1225b83c5ac1c -> xe-1923-316c4e099d22c5fee11e0c141c885cc890ae99a5
IGTPW_11714: 4eabdb360a2620df213b3a652a2a59e593f60ee5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8012: 8012
xe-1922-32d724d6d6e82bb808ee6a1c5df1225b83c5ac1c: 32d724d6d6e82bb808ee6a1c5df1225b83c5ac1c
xe-1923-316c4e099d22c5fee11e0c141c885cc890ae99a5: 316c4e099d22c5fee11e0c141c885cc890ae99a5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/index.html
[-- Attachment #2: Type: text/html, Size: 37990 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* ✓ Fi.CI.IGT: success for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev2)
2024-09-05 14:50 [PATCH i-g-t v1 0/5] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
` (9 preceding siblings ...)
2024-09-10 23:03 ` ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev3) Patchwork
@ 2024-09-11 1:04 ` Patchwork
2024-09-11 1:18 ` ✗ CI.xeFULL: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev3) Patchwork
11 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-09-11 1:04 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1080 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev2)
URL : https://patchwork.freedesktop.org/series/137770/
State : success
== Summary ==
CI Bug Log - changes from IGT_8007_full -> IGTPW_11706_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11706/index.html
Participating hosts (9 -> 7)
------------------------------
Additional (1): shard-snb-0
Missing (3): shard-snb shard-dg2 shard-glk
Changes
-------
No changes found
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8007 -> IGTPW_11706
CI-20190529: 20190529
CI_DRM_15369: 7f3ffaf88a3a1b3e29416488fb4e58fd551cd89d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11706: 11706
IGT_8007: 8f9900c288f4cf1244d66baa71bc6d9355747cbd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11706/index.html
[-- Attachment #2: Type: text/html, Size: 1652 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* ✗ CI.xeFULL: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev3)
2024-09-05 14:50 [PATCH i-g-t v1 0/5] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
` (10 preceding siblings ...)
2024-09-11 1:04 ` ✓ Fi.CI.IGT: success for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev2) Patchwork
@ 2024-09-11 1:18 ` Patchwork
11 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-09-11 1:18 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 94483 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Update scaling functions to retry on valid outputs (rev3)
URL : https://patchwork.freedesktop.org/series/137770/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8012_full -> XEIGTPW_11714_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11714_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11714_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_11714_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@2x-flip-vs-panning-interruptible@bd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_flip@2x-flip-vs-panning-interruptible@bd-hdmi-a6-dp4.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-433/igt@kms_flip@2x-flip-vs-panning-interruptible@bd-hdmi-a6-dp4.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [CRASH][3] +11 other tests crash
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c (NEW):
- shard-lnl: NOTRUN -> [SKIP][4] +71 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][5] +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b (NEW):
- {shard-bmg}: NOTRUN -> [SKIP][6] +55 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [FAIL][7] +1 other test fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-2/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-lnl: NOTRUN -> [WARN][8] +2 other tests warn
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-5/igt@kms_psr@fbc-psr2-dpms.html
* igt@xe_drm_fdinfo@utilization-all-full-load:
- shard-dg2-set2: [PASS][9] -> [FAIL][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@xe_drm_fdinfo@utilization-all-full-load.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-433/igt@xe_drm_fdinfo@utilization-all-full-load.html
- shard-lnl: [PASS][11] -> [FAIL][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-lnl-8/igt@xe_drm_fdinfo@utilization-all-full-load.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-4/igt@xe_drm_fdinfo@utilization-all-full-load.html
* igt@xe_exec_compute_mode@twice-userptr-invalidate:
- shard-lnl: [PASS][13] -> [DMESG-WARN][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-lnl-3/igt@xe_exec_compute_mode@twice-userptr-invalidate.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-2/igt@xe_exec_compute_mode@twice-userptr-invalidate.html
#### Warnings ####
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-lnl: [SKIP][15] ([Intel XE#498]) -> [SKIP][16] +5 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-lnl: [SKIP][17] ([Intel XE#2318]) -> [SKIP][18] +15 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-lnl-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- {shard-bmg}: [FAIL][19] ([Intel XE#2333]) -> [INCOMPLETE][20]
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- {shard-bmg}: [SKIP][21] ([Intel XE#498]) -> [SKIP][22] +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- {shard-bmg}: NOTRUN -> [SKIP][23]
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- {shard-bmg}: [SKIP][24] ([Intel XE#2318]) -> [SKIP][25] +10 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@xe_drm_fdinfo@utilization-all-full-load:
- {shard-bmg}: [PASS][26] -> [FAIL][27]
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-bmg-1/igt@xe_drm_fdinfo@utilization-all-full-load.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-bmg-2/igt@xe_drm_fdinfo@utilization-all-full-load.html
New tests
---------
New tests have been introduced between XEIGT_8012_full and XEIGTPW_11714_full:
### New IGT tests (180) ###
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.97] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.86] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 1.45] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [1.11, 1.45] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.98] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.88] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 1.45] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [1.10, 1.47] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.96] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.88] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 1.37] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [1.10, 1.36] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.00, 0.63] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 0.64] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 0.65] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.61, 0.64] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 1.96] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 1.91] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 0.31] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.28, 0.31] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.00, 0.45] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 0.48] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 0.47] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.44, 0.48] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.55, 0.72] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.89] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.81] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.60, 0.64] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [1.80, 2.07] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.83, 3.30] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.29, 1.46] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.29, 0.31] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.40, 0.49] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.65] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.70] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.44, 0.48] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.56, 0.68] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.60, 1.91] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.89] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.61, 0.65] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [1.81, 2.25] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.79, 3.43] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.28, 1.37] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.31] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.40, 1.69] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.78] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.73] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.44, 0.48] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.53, 0.63] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.77] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.76] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.63, 0.65] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.18, 1.87] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [1.36, 2.04] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.27, 1.42] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.31] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.37, 0.44] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.62] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.46, 1.61] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.44, 0.47] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.56, 0.68] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.91] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.95] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.61, 0.65] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [1.70, 1.76] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.74, 2.99] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.28, 5.15] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.31] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.40, 0.46] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.65] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.61] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.44, 0.48] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.55, 0.58] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.79] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.79] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.63, 0.65] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [1.67, 1.71] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.74, 2.92] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.27, 1.39] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.31] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.37, 0.49] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.57] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.45, 1.60] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.44, 0.48] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.02, 0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.07] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06, 0.07] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.92] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.40] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.45] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.36, 10.38] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 11.04] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.31] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.44] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.25, 10.34] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 11.04] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.41] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.45] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.32, 10.34] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.94] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.30] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.44] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.06, 10.33] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.16, 10.25] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.43, 10.36] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.39, 10.27] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [9.51, 10.28] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.15, 11.03] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.39, 10.40] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.36, 10.39] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.21, 10.46] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.16, 11.03] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.39, 10.32] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.38, 10.42] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.32, 10.38] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.91] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.33] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.41] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.06, 10.39] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.14, 10.24] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.35, 10.14] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.84, 10.30] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [9.05, 10.20] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a:
- Statuses : 2 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
- Statuses : 2 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- Statuses : 2 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- Statuses : 1 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.89] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.35] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.01, 10.45] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.34, 10.38] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.16, 10.15] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.40, 10.22] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.40, 10.24] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [9.44, 10.22] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
- Statuses : 2 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- Statuses : 2 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c:
- Statuses : 2 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- Statuses : 1 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.00, 11.29] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.45] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.30] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.06, 10.35] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.01, 11.26] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.01, 10.32] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.02, 10.32] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- Statuses : 1 pass(s)
- Exec time: [10.36] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.14, 11.33] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.30, 10.37] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.27, 10.44] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.23, 10.31] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.06] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.91] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.32] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.32] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.07, 10.35] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.96] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.41] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.31] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.07, 10.32] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a:
- Statuses : 2 pass(s)
- Exec time: [0.10, 10.24] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b:
- Statuses : 2 pass(s)
- Exec time: [1.38, 10.19] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c:
- Statuses : 2 pass(s)
- Exec time: [1.33, 10.16] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d:
- Statuses : 1 pass(s)
- Exec time: [10.28] s
Known issues
------------
Here are the changes found in XEIGTPW_11714_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1201] / [Intel XE#801]) +23 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_async_flips@invalid-async-flip:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#873])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-8/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@modeset-transition-nonblocking:
- shard-lnl: [PASS][30] -> [FAIL][31] ([Intel XE#1701]) +1 other test fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-8/igt@kms_atomic_transition@modeset-transition-nonblocking.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#1201] / [Intel XE#316])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-433/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1407]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1124] / [Intel XE#1201])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-433/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1477])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1124]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#367])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-6/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1399]) +4 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#314])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#306])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-2/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#373])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-466/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#373]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-4/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_content_protection@atomic-dpms:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#599]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#307])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1424]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-6/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1413]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#323])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#309])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic:
- shard-lnl: [PASS][49] -> [FAIL][50] ([Intel XE#1475])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-4/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1508] / [Intel XE#599])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-dg2-set2: [PASS][52] -> [DMESG-WARN][53] ([Intel XE#877])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_flip@2x-flip-vs-panning-interruptible.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-433/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1421]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-3/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1401] / [Intel XE#1745]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1401]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1397] / [Intel XE#1745])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1397])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#1201] / [Intel XE#651])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#656]) +20 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#651])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#651]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#653])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1201] / [Intel XE#653])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2340])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-4/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][66] -> [FAIL][67] ([Intel XE#361]) +2 other tests fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#1201]) +23 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#455]) +11 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#455])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: NOTRUN -> [FAIL][71] ([Intel XE#2029])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-8/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1201] / [Intel XE#1489]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-434/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1406]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-3/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@psr2-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#1201] / [Intel XE#929]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-435/igt@kms_psr@psr2-basic.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1437]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-5/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1435])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_vrr@flipline:
- shard-lnl: NOTRUN -> [FAIL][77] ([Intel XE#2443]) +1 other test fail
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-6/igt@kms_vrr@flipline.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1499] / [Intel XE#599])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1091])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#1091])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [PASS][81] -> [TIMEOUT][82] ([Intel XE#1473])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#688]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-4/igt@xe_evict@evict-threads-small-multi-vm.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1392]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1201] / [Intel XE#288]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-463/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-prefetch.html
* igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-rebind:
- shard-dg2-set2: [PASS][86] -> [INCOMPLETE][87] ([Intel XE#1169] / [Intel XE#1195] / [Intel XE#1356])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-436/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-rebind.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-436/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-rebind.html
* igt@xe_live_ktest@xe_mocs:
- shard-lnl: [PASS][88] -> [SKIP][89] ([Intel XE#1192])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-lnl-7/igt@xe_live_ktest@xe_mocs.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-4/igt@xe_live_ktest@xe_mocs.html
* igt@xe_pm@d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-3/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s3-multiple-execs:
- shard-dg2-set2: [PASS][91] -> [DMESG-WARN][92] ([Intel XE#1551] / [Intel XE#569])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-436/igt@xe_pm@s3-multiple-execs.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-466/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#584])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-1/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s4-mocs:
- shard-lnl: [PASS][94] -> [ABORT][95] ([Intel XE#1794])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-lnl-4/igt@xe_pm@s4-mocs.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-2/igt@xe_pm@s4-mocs.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#944])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-2/igt@xe_query@multigpu-query-uc-fw-version-guc.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- {shard-bmg}: [FAIL][97] ([Intel XE#1426]) -> [PASS][98] +1 other test pass
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-bmg-7/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-bmg-3/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: [FAIL][99] ([Intel XE#1659]) -> [PASS][100] +1 other test pass
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-dg2-set2: [DMESG-WARN][101] ([Intel XE#1551]) -> [PASS][102] +1 other test pass
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-435/igt@kms_cursor_crc@cursor-suspend.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-466/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_edge_walk@128x128-left-edge:
- shard-dg2-set2: [INCOMPLETE][103] ([Intel XE#1195]) -> [PASS][104] +1 other test pass
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-433/igt@kms_cursor_edge_walk@128x128-left-edge.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-435/igt@kms_cursor_edge_walk@128x128-left-edge.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ad-dp2-hdmi-a3:
- {shard-bmg}: [INCOMPLETE][105] -> [PASS][106] +1 other test pass
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-bmg-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ad-dp2-hdmi-a3.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-bmg-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-lnl: [FAIL][107] ([Intel XE#886]) -> [PASS][108] +1 other test pass
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_hdr@invalid-hdr:
- {shard-bmg}: [SKIP][109] ([Intel XE#1503]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-dg2-set2: [FAIL][111] ([Intel XE#771] / [Intel XE#899]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-466/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6:
- shard-dg2-set2: [FAIL][113] ([Intel XE#899]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-466/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html
* igt@kms_vrr@flip-basic-fastset:
- shard-lnl: [FAIL][115] ([Intel XE#2443]) -> [PASS][116] +3 other tests pass
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-lnl-7/igt@kms_vrr@flip-basic-fastset.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-5/igt@kms_vrr@flip-basic-fastset.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [TIMEOUT][117] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-threads-large:
- shard-dg2-set2: [TIMEOUT][119] ([Intel XE#1473]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-466/igt@xe_evict@evict-threads-large.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-463/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate:
- shard-lnl: [FAIL][121] ([Intel XE#1069]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-lnl-3/igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-4/igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_threads@threads-mixed-fd-rebind:
- {shard-bmg}: [DMESG-WARN][123] ([Intel XE#877]) -> [PASS][124] +4 other tests pass
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-bmg-3/igt@xe_exec_threads@threads-mixed-fd-rebind.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-bmg-5/igt@xe_exec_threads@threads-mixed-fd-rebind.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-lnl: [FAIL][125] ([Intel XE#2514]) -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-lnl-4/igt@xe_oa@oa-regs-whitelisted.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-1/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_oa@oa-regs-whitelisted@rcs-0:
- {shard-bmg}: [FAIL][127] ([Intel XE#2514]) -> [PASS][128] +1 other test pass
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-bmg-7/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-bmg-2/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
* igt@xe_pm@s2idle-mocs:
- shard-lnl: [INCOMPLETE][129] -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-lnl-3/igt@xe_pm@s2idle-mocs.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-5/igt@xe_pm@s2idle-mocs.html
* igt@xe_pm@s4-basic-exec:
- shard-lnl: [ABORT][131] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-lnl-2/igt@xe_pm@s4-basic-exec.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-8/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [ABORT][133] ([Intel XE#1794]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-lnl-3/igt@xe_pm@s4-vm-bind-unbind-all.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: [SKIP][135] ([Intel XE#1201] / [Intel XE#623]) -> [SKIP][136] ([Intel XE#623])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-433/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-set2: [SKIP][137] ([Intel XE#1201] / [Intel XE#873]) -> [SKIP][138] ([Intel XE#873])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-463/igt@kms_async_flips@invalid-async-flip.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][139] ([Intel XE#316]) -> [SKIP][140] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][141] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][142] ([Intel XE#316]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-270.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][143] ([Intel XE#619]) -> [SKIP][144] ([Intel XE#1201] / [Intel XE#619])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2-set2: [SKIP][145] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][146] ([Intel XE#1124]) +6 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][147] ([Intel XE#1124]) -> [SKIP][148] ([Intel XE#1124] / [Intel XE#1201]) +7 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: [SKIP][149] ([Intel XE#2191]) -> [SKIP][150] ([Intel XE#1201] / [Intel XE#2191]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][151] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][152] ([Intel XE#367]) +4 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-463/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][153] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][154] ([Intel XE#1252]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][155] ([Intel XE#1252]) -> [SKIP][156] ([Intel XE#1201] / [Intel XE#1252])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: [SKIP][157] ([Intel XE#787]) -> [SKIP][158] ([Intel XE#1201] / [Intel XE#787]) +76 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-434/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][159] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][160] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][161] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][162] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +21 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: [SKIP][163] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][164] ([Intel XE#787]) +62 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-433/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: [SKIP][165] ([Intel XE#1152]) -> [SKIP][166] ([Intel XE#1152] / [Intel XE#1201]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-466/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: [SKIP][167] ([Intel XE#306]) -> [SKIP][168] ([Intel XE#1201] / [Intel XE#306])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-433/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2-set2: [SKIP][169] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][170] ([Intel XE#306])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-436/igt@kms_chamelium_color@ctm-negative.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: [SKIP][171] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][172] ([Intel XE#373]) +6 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-436/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][173] ([Intel XE#373]) -> [SKIP][174] ([Intel XE#1201] / [Intel XE#373]) +7 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][175] ([Intel XE#307]) -> [SKIP][176] ([Intel XE#1201] / [Intel XE#307])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: [SKIP][177] ([Intel XE#308]) -> [SKIP][178] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2-set2: [SKIP][179] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][180] ([Intel XE#308])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-463/igt@kms_cursor_crc@cursor-random-512x512.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [SKIP][181] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][182] ([Intel XE#323])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: [SKIP][183] ([Intel XE#323]) -> [SKIP][184] ([Intel XE#1201] / [Intel XE#323]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: [SKIP][185] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][186] ([Intel XE#776])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-434/igt@kms_fbcon_fbt@psr.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][187] ([Intel XE#1138] / [Intel XE#1201]) -> [SKIP][188] ([Intel XE#1138])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-463/igt@kms_feature_discovery@display-4x.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][189] ([Intel XE#1137]) -> [SKIP][190] ([Intel XE#1137] / [Intel XE#1201])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_feature_discovery@dp-mst.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][191] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][192] ([Intel XE#651]) +26 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][193] ([Intel XE#651]) -> [SKIP][194] ([Intel XE#1201] / [Intel XE#651]) +22 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][195] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][196] ([Intel XE#653]) +22 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][197] ([Intel XE#658]) -> [SKIP][198] ([Intel XE#1201] / [Intel XE#658])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][199] ([Intel XE#653]) -> [SKIP][200] ([Intel XE#1201] / [Intel XE#653]) +22 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][201] ([Intel XE#455]) -> [SKIP][202] ([Intel XE#1201] / [Intel XE#455]) +12 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_hdr@invalid-hdr.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-434/igt@kms_hdr@invalid-hdr.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][203] ([Intel XE#356]) -> [SKIP][204] ([Intel XE#1201] / [Intel XE#356])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-set2: [SKIP][205] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][206] ([Intel XE#1201] / [Intel XE#455]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][207] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][208] ([Intel XE#455])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][209] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][210] ([Intel XE#1201] / [Intel XE#455]) +4 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: [SKIP][211] ([Intel XE#1122]) -> [SKIP][212] ([Intel XE#1122] / [Intel XE#1201]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_pm_dc@dc3co-vpb-simulation.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][213] ([Intel XE#1201] / [Intel XE#908]) -> [SKIP][214] ([Intel XE#908])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-434/igt@kms_pm_dc@deep-pkgc.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-dg2-set2: [SKIP][215] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][216] ([Intel XE#1489]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-463/igt@kms_psr2_sf@cursor-plane-update-sf.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][217] ([Intel XE#1489]) -> [SKIP][218] ([Intel XE#1201] / [Intel XE#1489]) +4 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-466/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-set2: [SKIP][219] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][220] ([Intel XE#1122])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-433/igt@kms_psr2_su@page_flip-xrgb8888.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-dg2-set2: [SKIP][221] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][222] ([Intel XE#929]) +9 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-463/igt@kms_psr@fbc-psr2-dpms.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][223] ([Intel XE#929]) -> [SKIP][224] ([Intel XE#1201] / [Intel XE#929]) +7 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_psr@pr-sprite-plane-onoff.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-434/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: [SKIP][225] ([Intel XE#1149] / [Intel XE#1201]) -> [SKIP][226] ([Intel XE#1149])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-436/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: [SKIP][227] ([Intel XE#1149]) -> [SKIP][228] ([Intel XE#1149] / [Intel XE#1201])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-436/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2-set2: [SKIP][229] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][230] ([Intel XE#327]) +3 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-270.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: [SKIP][231] ([Intel XE#327]) -> [SKIP][232] ([Intel XE#1201] / [Intel XE#327])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][233] ([Intel XE#330]) -> [SKIP][234] ([Intel XE#1201] / [Intel XE#330])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: [SKIP][235] ([Intel XE#2168]) -> [SKIP][236] ([Intel XE#1201] / [Intel XE#2168])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@kms_vrr@cmrr.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-435/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: [SKIP][237] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][238] ([Intel XE#455]) +16 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-436/igt@kms_vrr@flipline.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2-set2: [SKIP][239] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][240] ([Intel XE#756])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-435/igt@kms_writeback@writeback-pixel-formats.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@kms_writeback@writeback-pixel-formats.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: [SKIP][241] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][242] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-463/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_copy_basic@mem-copy-linear-0xfd:
- shard-dg2-set2: [SKIP][243] ([Intel XE#1123]) -> [SKIP][244] ([Intel XE#1123] / [Intel XE#1201])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfd.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfd.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][245] ([Intel XE#1123] / [Intel XE#1201]) -> [SKIP][246] ([Intel XE#1123])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-dg2-set2: [SKIP][247] ([Intel XE#1126]) -> [SKIP][248] ([Intel XE#1126] / [Intel XE#1201])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x369.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_copy_basic@mem-set-linear-0x3fff:
- shard-dg2-set2: [SKIP][249] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][250] ([Intel XE#1126])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x3fff.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x3fff.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [TIMEOUT][251] ([Intel XE#1473]) -> [INCOMPLETE][252] ([Intel XE#1195] / [Intel XE#1473])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@xe_evict@evict-mixed-many-threads-small.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][253] ([Intel XE#288]) -> [SKIP][254] ([Intel XE#1201] / [Intel XE#288]) +20 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: [SKIP][255] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][256] ([Intel XE#288]) +20 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-dg2-set2: [SKIP][257] ([Intel XE#1201] / [Intel XE#2360]) -> [SKIP][258] ([Intel XE#2360])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: [SKIP][259] ([Intel XE#1201] / [Intel XE#2541]) -> [SKIP][260] ([Intel XE#2541]) +5 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: [SKIP][261] ([Intel XE#2541]) -> [SKIP][262] ([Intel XE#1201] / [Intel XE#2541]) +5 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: [SKIP][263] ([Intel XE#1201] / [Intel XE#977]) -> [SKIP][264] ([Intel XE#977])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-436/igt@xe_pat@pat-index-xe2.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@xe_pat@pat-index-xe2.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: [SKIP][265] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) -> [SKIP][266] ([Intel XE#2284] / [Intel XE#366])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-436/igt@xe_pm@d3cold-mmap-system.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-dg2-set2: [SKIP][267] ([Intel XE#944]) -> [SKIP][268] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-432/igt@xe_query@multigpu-query-mem-usage.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-434/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: [SKIP][269] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][270] ([Intel XE#944]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8012/shard-dg2-434/igt@xe_query@multigpu-query-topology.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/shard-dg2-432/igt@xe_query@multigpu-query-topology.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1356
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2026
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[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#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318
[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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2357]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2357
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2436]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2436
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771
[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#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
Build changes
-------------
* IGT: IGT_8012 -> IGTPW_11714
* Linux: xe-1922-32d724d6d6e82bb808ee6a1c5df1225b83c5ac1c -> xe-1923-316c4e099d22c5fee11e0c141c885cc890ae99a5
IGTPW_11714: 4eabdb360a2620df213b3a652a2a59e593f60ee5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8012: 8012
xe-1922-32d724d6d6e82bb808ee6a1c5df1225b83c5ac1c: 32d724d6d6e82bb808ee6a1c5df1225b83c5ac1c
xe-1923-316c4e099d22c5fee11e0c141c885cc890ae99a5: 316c4e099d22c5fee11e0c141c885cc890ae99a5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11714/index.html
[-- Attachment #2: Type: text/html, Size: 118251 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread