* [PATCH i-g-t 0/3] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs
@ 2024-08-26 4:56 Naladala Ramanaidu
2024-08-26 4:56 ` [PATCH i-g-t 1/3] tests/kms_plane_scaling: Update scaling functions to return error codes Naladala Ramanaidu
` (7 more replies)
0 siblings, 8 replies; 10+ messages in thread
From: Naladala Ramanaidu @ 2024-08-26 4:56 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, kunal1.joshi, karthik.b.s, Naladala Ramanaidu
It will retry scaling operation on next valid output if current output
is unsupported.
Naladala Ramanaidu (3):
tests/kms_plane_scaling: Update scaling functions to return error
codes
tests/kms_plane_scaling: Update Multi-plane scaling functions
HAX patch do not merge
tests/intel-ci/fast-feedback.testlist | 212 ++++-----------
tests/intel-ci/xe-fast-feedback.testlist | 319 ++++-------------------
tests/kms_plane_scaling.c | 299 ++++++++++++---------
3 files changed, 268 insertions(+), 562 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t 1/3] tests/kms_plane_scaling: Update scaling functions to return error codes
2024-08-26 4:56 [PATCH i-g-t 0/3] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
@ 2024-08-26 4:56 ` Naladala Ramanaidu
2024-08-30 7:09 ` Sharma, Swati2
2024-08-26 4:56 ` [PATCH i-g-t 2/3] tests/kms_plane_scaling: Update Multi-plane scaling functions Naladala Ramanaidu
` (6 subsequent siblings)
7 siblings, 1 reply; 10+ messages in thread
From: Naladala Ramanaidu @ 2024-08-26 4:56 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, kunal1.joshi, karthik.b.s, 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. Add informative logs to indicate when a scaling operation
is not supported on a specific output.
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/kms_plane_scaling.c | 250 +++++++++++++++++++++++---------------
1 file changed, 150 insertions(+), 100 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 42eb67409..588a9c5f0 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -566,7 +566,7 @@ static void cleanup_crtc(data_t *data)
cleanup_fbs(data);
}
-static void check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
+static int check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
uint32_t pixel_format,
uint64_t modifier,
double sf_plane,
@@ -634,11 +634,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 +706,17 @@ 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 int 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,18 +730,22 @@ 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,
+static int test_scaler_with_rotation_pipe(data_t *d,
double sf_plane,
bool is_clip_clamp,
bool is_upscale,
@@ -755,6 +756,7 @@ static void test_scaler_with_rotation_pipe(data_t *d,
unsigned format = DRM_FORMAT_XRGB8888;
uint64_t modifier = DRM_FORMAT_MOD_LINEAR;
igt_plane_t *plane;
+ uint32_t ret;
cleanup_crtc(d);
@@ -768,18 +770,21 @@ 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,
+static int test_scaler_with_pixel_format_pipe(data_t *d, double sf_plane,
bool is_clip_clamp,
bool is_upscale,
enum pipe pipe,
@@ -788,6 +793,7 @@ static void test_scaler_with_pixel_format_pipe(data_t *d, double sf_plane,
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 +816,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 +1337,7 @@ static data_t data;
igt_main_args("", long_opts, help_str, opt_handler, &data)
{
enum pipe pipe;
+ uint32_t ret;
igt_fixture {
data.drm_fd = drm_open_driver_master(DRIVER_ANY);
@@ -1343,21 +1354,28 @@ 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) {
+ 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)
+ 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;
+ igt_info("Required Scaling operation not supported on %s trying on next output\n",
+ igt_output_name(output));
}
- break;
+ igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
+ "Unsupported scaling operation in driver with return value %s\n",
+ (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
+ igt_assert_eq(ret, 0);
}
}
}
@@ -1367,21 +1385,27 @@ 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)) {
+ igt_info(" Trying on %s\n", igt_output_name(output));
+ 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;
+ igt_info("Required Scaling operation not supported on %s trying on next output\n",
+ igt_output_name(output));
}
- break;
+ igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
+ "Unsupported scaling operation in driver with return value %s\n",
+ (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
+ igt_assert_eq(ret, 0);
}
}
}
@@ -1391,21 +1415,27 @@ 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) {
+ 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)
+ 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;
+ igt_info("Required Scaling operation not supported on %s trying on next valid output\n",
+ igt_output_name(output));
}
- break;
+ igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
+ "Unsupported scaling operation in driver with return value %s\n",
+ (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
+ igt_assert_eq(ret, 0);
}
}
}
@@ -1414,19 +1444,25 @@ 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)) {
-
- test_scaler_with_pixel_format_pipe(&data, 0.0, true,
- false, pipe,
- output);
+ 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)
+ continue;
+ ret = test_scaler_with_pixel_format_pipe(&data, 0.0, true,
+ false, pipe,
+ output);
+ if (ret == 0)
+ break;
+ igt_info("Required Scaling operation not supported on %s trying on next valid output\n",
+ igt_output_name(output));
}
- break;
+ igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
+ "Unsupported scaling operation in driver with return value %s\n",
+ (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
+ igt_assert_eq(ret, 0);
}
}
}
@@ -1434,19 +1470,26 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
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) {
+ 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)
+ continue;
+ ret = test_scaler_with_rotation_pipe(&data, 0.0, true,
+ false, pipe,
+ output);
+ if (ret == 0)
+ break;
+ igt_info("Required Scaling operation not supported on %s trying on next valid output\n",
+ igt_output_name(output));
- test_scaler_with_rotation_pipe(&data, 0.0, true,
- false, pipe,
- output);
}
- break;
+ igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
+ "Unsupported scaling operation in driver with return value %s\n",
+ (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
+ igt_assert_eq(ret, 0);
}
}
}
@@ -1454,18 +1497,25 @@ 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-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
- test_scaler_with_modifier_pipe(&data, 0.0, true,
- false, pipe,
- output);
+ 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)
+ continue;
+ ret = test_scaler_with_modifier_pipe(&data, 0.0, true,
+ false, pipe,
+ output);
+ if (ret == 0)
+ break;
+ igt_info("Required Scaling operation not supported on %s trying on next valid output\n",
+ igt_output_name(output));
}
- break;
+ igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
+ "Unsupported scaling operation in driver with return value %s\n",
+ (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
+ igt_assert_eq(ret, 0);
}
}
}
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 2/3] tests/kms_plane_scaling: Update Multi-plane scaling functions
2024-08-26 4:56 [PATCH i-g-t 0/3] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
2024-08-26 4:56 ` [PATCH i-g-t 1/3] tests/kms_plane_scaling: Update scaling functions to return error codes Naladala Ramanaidu
@ 2024-08-26 4:56 ` Naladala Ramanaidu
2024-08-26 4:56 ` [PATCH i-g-t 3/3] HAX patch do not merge Naladala Ramanaidu
` (5 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Naladala Ramanaidu @ 2024-08-26 4:56 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, kunal1.joshi, karthik.b.s, Naladala Ramanaidu
This update enhances the multi-plane scaling subtest function by
improving error handling. The return type of
test_planes_scaling_combo has been changed from void to int. The
test logic has been updated to handle the return value appropriately
and skip unsupported scaling operations.
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/kms_plane_scaling.c | 49 ++++++++++++++++++++++-----------------
1 file changed, 28 insertions(+), 21 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 588a9c5f0..d4d3664e8 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -930,7 +930,7 @@ static void setup_fb(int fd, int width, int height, struct igt_fb *fb)
fb);
}
-static void
+static int
test_planes_scaling_combo(data_t *d, double sf_plane1,
double sf_plane2,
enum pipe pipe,
@@ -994,13 +994,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
@@ -1523,25 +1524,31 @@ 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,
- 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);
+ 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)
+ 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_info("Required Scaling operation not supported on %s trying on next valid output\n",
+ igt_output_name(output));
+ }
+ igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
+ "Unsupported scaling operation in driver with return value %s\n",
+ (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
+ igt_assert_eq(ret, 0);
}
- break;
}
}
- }
}
for (int index = 0; index < ARRAY_SIZE(intel_paramtests); index++) {
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 3/3] HAX patch do not merge
2024-08-26 4:56 [PATCH i-g-t 0/3] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
2024-08-26 4:56 ` [PATCH i-g-t 1/3] tests/kms_plane_scaling: Update scaling functions to return error codes Naladala Ramanaidu
2024-08-26 4:56 ` [PATCH i-g-t 2/3] tests/kms_plane_scaling: Update Multi-plane scaling functions Naladala Ramanaidu
@ 2024-08-26 4:56 ` Naladala Ramanaidu
2024-08-26 6:22 ` ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Patchwork
` (4 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Naladala Ramanaidu @ 2024-08-26 4:56 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, kunal1.joshi, karthik.b.s, Naladala Ramanaidu
Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
tests/intel-ci/fast-feedback.testlist | 212 ++++-----------
tests/intel-ci/xe-fast-feedback.testlist | 319 ++++-------------------
2 files changed, 90 insertions(+), 441 deletions(-)
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index be0965110..89b796ed2 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -2,170 +2,48 @@
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] 10+ messages in thread
* ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs
2024-08-26 4:56 [PATCH i-g-t 0/3] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
` (2 preceding siblings ...)
2024-08-26 4:56 ` [PATCH i-g-t 3/3] HAX patch do not merge Naladala Ramanaidu
@ 2024-08-26 6:22 ` Patchwork
2024-08-26 6:32 ` ✓ Fi.CI.BAT: success " Patchwork
` (3 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-08-26 6:22 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 33470 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Update scaling functions to retry on valid outputs
URL : https://patchwork.freedesktop.org/series/137770/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7990_BAT -> XEIGTPW_11635_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11635_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11635_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 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11635_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] +53 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-dg2-oem2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- bat-dg2-oem2: NOTRUN -> [WARN][2] +5 other tests warn
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-dg2-oem2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b} (NEW):
- bat-bmg-1: NOTRUN -> [CRASH][3] +23 other tests crash
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c} (NEW):
- bat-dg2-oem2: NOTRUN -> [CRASH][4] +23 other tests crash
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-dg2-oem2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a} (NEW):
- {bat-bmg-2}: NOTRUN -> [CRASH][5] +23 other tests crash
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b} (NEW):
- bat-lnl-2: NOTRUN -> [CRASH][6] +17 other tests crash
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-lnl-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation:
- bat-lnl-1: NOTRUN -> [WARN][7] +5 other tests warn
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-lnl-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html
* {igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d} (NEW):
- bat-adlp-7: NOTRUN -> [CRASH][8] +23 other tests crash
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-adlp-7/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- bat-adlp-vf: NOTRUN -> [SKIP][9] +44 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-adlp-vf/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
- bat-bmg-1: NOTRUN -> [WARN][10] +5 other tests warn
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-bmg-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
* {igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a} (NEW):
- bat-lnl-1: NOTRUN -> [CRASH][11] +17 other tests crash
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-lnl-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- bat-adlp-7: NOTRUN -> [WARN][12] +5 other tests warn
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-adlp-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
- bat-lnl-2: NOTRUN -> [WARN][13] +5 other tests warn
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-lnl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* {igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d} (NEW):
- bat-bmg-1: NOTRUN -> [SKIP][14] +104 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/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][15] +53 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-adlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c.html
* {igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a} (NEW):
- bat-lnl-1: NOTRUN -> [SKIP][16] +85 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-lnl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation:
- {bat-bmg-2}: NOTRUN -> [WARN][17] +5 other tests warn
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-bmg-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html
New tests
---------
New tests have been introduced between XEIGT_7990_BAT and XEIGTPW_11635_BAT:
### New IGT tests (180) ###
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.16] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.34] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.34] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 0.34] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.16] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.35] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.34] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 0.35] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 6 crash(s)
- Exec time: [0.00, 0.02] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 6 crash(s)
- Exec time: [0.14, 0.45] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 6 crash(s)
- Exec time: [0.15, 0.47] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 4 crash(s)
- Exec time: [0.18, 0.47] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.06] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.26] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.27] 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, 0.26] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.06] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.27] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.27] 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, 0.26] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- Statuses : 6 crash(s)
- Exec time: [0.00, 0.01] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- Statuses : 6 crash(s)
- Exec time: [0.14, 0.41] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- Statuses : 6 crash(s)
- Exec time: [0.15, 0.46] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- Statuses : 4 crash(s)
- Exec time: [0.01, 0.47] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.0, 0.71] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.0, 1.91] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 1.93] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 1.74] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.0, 2.13] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.0, 3.11] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 1.44] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 1.45] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- Statuses : 6 crash(s)
- Exec time: [0.00, 0.01] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
- Statuses : 6 crash(s)
- Exec time: [0.13, 0.44] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c:
- Statuses : 6 crash(s)
- Exec time: [0.14, 0.48] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
- Statuses : 4 crash(s)
- Exec time: [0.17, 0.48] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.0, 0.68] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.0, 2.23] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 1.90] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 1.76] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.0, 2.21] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.0, 3.49] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 1.45] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 1.44] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- Statuses : 6 crash(s)
- Exec time: [0.00, 0.01] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- Statuses : 6 crash(s)
- Exec time: [0.14, 0.41] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- Statuses : 6 crash(s)
- Exec time: [0.14, 0.44] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d:
- Statuses : 4 crash(s)
- Exec time: [0.01, 0.46] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.0, 0.55] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.0, 1.78] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 1.78] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 1.79] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [0.0, 2.25] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [0.0, 3.01] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 1.98] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 1.43] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.0, 0.36] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.0, 1.60] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 1.66] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 1.54] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.0, 0.68] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.0, 1.90] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 2.57] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 1.79] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.0, 1.76] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.0, 3.23] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 1.45] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 1.45] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- Statuses : 6 crash(s)
- Exec time: [0.00, 0.01] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- Statuses : 6 crash(s)
- Exec time: [0.14, 0.43] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- Statuses : 6 crash(s)
- Exec time: [0.14, 0.46] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
- Statuses : 4 crash(s)
- Exec time: [0.01, 0.46] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.0, 0.54] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.0, 1.88] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 1.78] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 1.79] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.0, 1.67] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.0, 2.91] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 2.06] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 1.45] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 6 crash(s)
- Exec time: [0.00, 0.01] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 6 crash(s)
- Exec time: [0.14, 0.45] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 6 crash(s)
- Exec time: [0.14, 0.43] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 4 crash(s)
- Exec time: [0.01, 0.48] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- Statuses : 1 pass(s) 3 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 : 2 pass(s) 4 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 : 2 pass(s) 4 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 : 2 pass(s) 4 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 : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] 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, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] 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, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] 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, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.0, 3.42] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.0, 3.30] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 3.31] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 3.19] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.25] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.33] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.39] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 6.33] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.30] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.30] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.36] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 6.37] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.47] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.24] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.25] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 3.26] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.34] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.46] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.44] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 6.36] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] 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, 0.02] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.32] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.44] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.46] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 6.39] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] 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, 0.02] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.50] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.31] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.16] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 3.28] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.25] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.33] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.38] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 6.33] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a:
- Statuses : 2 pass(s) 4 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 : 2 pass(s) 4 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 : 2 pass(s) 4 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 : 1 pass(s) 3 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 : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.02] 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, 0.02] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.48] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.25] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.0, 3.23] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.0, 3.26] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.25] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.34] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c:
- Statuses : 6 pass(s)
- Exec time: [0.0, 6.38] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.0, 6.38] s
Known issues
------------
Here are the changes found in XEIGTPW_11635_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- bat-pvc-2: NOTRUN -> [SKIP][18] ([Intel XE#1024]) +44 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-pvc-2/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][19] ([Intel XE#1024]) +44 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-atsm-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling:
- bat-adlp-7: NOTRUN -> [SKIP][20] ([Intel XE#455]) +35 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-adlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
* {igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d} (NEW):
- bat-dg2-oem2: NOTRUN -> [SKIP][21] ([Intel XE#455]) +35 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/bat-dg2-oem2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_7990 -> IGTPW_11635
* Linux: xe-1822-411a047925bb7e169a075a2ddfb63ba96f26a8c8 -> xe-1824-f83dc30335e989657706c73484b78dd755f909b4
IGTPW_11635: 11635
IGT_7990: 9ca5ff0afa3636478b6ba5a97e5ba440cfb2e55e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1822-411a047925bb7e169a075a2ddfb63ba96f26a8c8: 411a047925bb7e169a075a2ddfb63ba96f26a8c8
xe-1824-f83dc30335e989657706c73484b78dd755f909b4: f83dc30335e989657706c73484b78dd755f909b4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/index.html
[-- Attachment #2: Type: text/html, Size: 40201 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Fi.CI.BAT: success for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs
2024-08-26 4:56 [PATCH i-g-t 0/3] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
` (3 preceding siblings ...)
2024-08-26 6:22 ` ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Patchwork
@ 2024-08-26 6:32 ` Patchwork
2024-08-26 7:23 ` ✗ CI.xeFULL: failure " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-08-26 6:32 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 44369 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Update scaling functions to retry on valid outputs
URL : https://patchwork.freedesktop.org/series/137770/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15289 -> IGTPW_11635
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/index.html
Participating hosts (38 -> 37)
------------------------------
Additional (2): bat-dg1-7 fi-elk-e7500
Missing (3): bat-kbl-2 fi-snb-2520m fi-kbl-8809g
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11635:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a} (NEW):
- bat-twl-1: NOTRUN -> [SKIP][1] +28 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-twl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c} (NEW):
- bat-dg2-11: NOTRUN -> [SKIP][2] +51 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d} (NEW):
- bat-dg1-7: NOTRUN -> [SKIP][3] +95 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-dg1-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a} (NEW):
- bat-apl-1: NOTRUN -> [CRASH][4] +17 other tests crash
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-apl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c} (NEW):
- bat-jsl-1: NOTRUN -> [CRASH][5] +17 other tests crash
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-jsl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
- fi-tgl-1115g4: NOTRUN -> [CRASH][6] +11 other tests crash
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-tgl-1115g4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d} (NEW):
- bat-arls-1: NOTRUN -> [CRASH][7] +23 other tests crash
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-arls-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b} (NEW):
- fi-bsw-n3050: NOTRUN -> [CRASH][8] +17 other tests crash
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-bsw-n3050/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c} (NEW):
- fi-ivb-3770: NOTRUN -> [CRASH][9] +17 other tests crash
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-ivb-3770/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
- bat-dg2-14: NOTRUN -> [CRASH][10] +23 other tests crash
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-dg2-14/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
- bat-dg2-8: NOTRUN -> [CRASH][11] +23 other tests crash
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
- fi-kbl-guc: NOTRUN -> [CRASH][12] +17 other tests crash
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-kbl-guc/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b} (NEW):
- fi-cfl-guc: NOTRUN -> [CRASH][13] +17 other tests crash
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-cfl-guc/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
- bat-mtlp-6: NOTRUN -> [CRASH][14] +23 other tests crash
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
* {igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a} (NEW):
- bat-rpls-4: NOTRUN -> [DMESG-WARN][15] +1 other test dmesg-warn
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-rpls-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a.html
- bat-jsl-1: NOTRUN -> [DMESG-WARN][16] +1 other test dmesg-warn
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-jsl-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a.html
* {igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b} (NEW):
- fi-rkl-11600: NOTRUN -> [DMESG-WARN][17]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-rkl-11600/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b.html
* {igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a} (NEW):
- bat-dg2-9: NOTRUN -> [CRASH][18] +23 other tests crash
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-dg2-9/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html
- fi-kbl-x1275: NOTRUN -> [CRASH][19] +17 other tests crash
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-kbl-x1275/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html
- bat-adlp-11: NOTRUN -> [CRASH][20] +23 other tests crash
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-adlp-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html
- bat-arls-2: NOTRUN -> [CRASH][21] +23 other tests crash
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-arls-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html
- bat-mtlp-8: NOTRUN -> [CRASH][22] +23 other tests crash
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-mtlp-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html
- bat-adls-6: NOTRUN -> [CRASH][23] +23 other tests crash
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-adls-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html
* {igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c} (NEW):
- bat-arls-5: NOTRUN -> [CRASH][24] +23 other tests crash
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-arls-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html
- bat-adlp-6: NOTRUN -> [CRASH][25] +23 other tests crash
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-adlp-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html
- bat-arlh-2: NOTRUN -> [CRASH][26] +23 other tests crash
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-arlh-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html
* {igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d} (NEW):
- bat-adlp-9: NOTRUN -> [CRASH][27] +23 other tests crash
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-adlp-9/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html
* {igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a} (NEW):
- bat-adlm-1: NOTRUN -> [CRASH][28] +23 other tests crash
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-adlm-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
- bat-rplp-1: NOTRUN -> [CRASH][29] +23 other tests crash
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-rplp-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
- fi-ilk-650: NOTRUN -> [CRASH][30] +11 other tests crash
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-ilk-650/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* {igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b} (NEW):
- bat-dg2-11: NOTRUN -> [CRASH][31] +23 other tests crash
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-dg2-11/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
- bat-rpls-4: NOTRUN -> [CRASH][32] +23 other tests crash
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-rpls-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
- fi-cfl-8109u: NOTRUN -> [CRASH][33] +17 other tests crash
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-cfl-8109u/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
- fi-kbl-7567u: NOTRUN -> [CRASH][34] +17 other tests crash
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-kbl-7567u/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
- bat-twl-1: NOTRUN -> [CRASH][35] +17 other tests crash
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-twl-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
- fi-elk-e7500: NOTRUN -> [CRASH][36] +11 other tests crash
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-elk-e7500/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
* {igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c} (NEW):
- bat-dg1-7: NOTRUN -> [CRASH][37] +23 other tests crash
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-dg1-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* {igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a} (NEW):
- fi-rkl-11600: NOTRUN -> [CRASH][38] +11 other tests crash
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-rkl-11600/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html
* {igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b} (NEW):
- fi-glk-j4005: NOTRUN -> [CRASH][39] +17 other tests crash
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-glk-j4005/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b.html
- bat-twl-2: NOTRUN -> [CRASH][40] +17 other tests crash
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-twl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b.html
* {igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c} (NEW):
- fi-cfl-8700k: NOTRUN -> [CRASH][41] +17 other tests crash
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-cfl-8700k/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* {igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c} (NEW):
- bat-dg2-14: NOTRUN -> [SKIP][42] +35 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-dg2-14/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
- bat-dg2-8: NOTRUN -> [SKIP][43] +71 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* {igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d} (NEW):
- bat-rpls-4: NOTRUN -> [SKIP][44] +75 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-rpls-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* {igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b} (NEW):
- fi-rkl-11600: NOTRUN -> [SKIP][45] +62 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-rkl-11600/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b.html
* {igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a} (NEW):
- bat-mtlp-8: NOTRUN -> [SKIP][46] +85 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html
* {igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b} (NEW):
- bat-adlp-6: NOTRUN -> [SKIP][47] +71 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-adlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b.html
* {igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d} (NEW):
- bat-arls-2: NOTRUN -> [SKIP][48] +85 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-arls-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d.html
* {igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a} (NEW):
- bat-adls-6: NOTRUN -> [SKIP][49] +67 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-adls-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
* {igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a} (NEW):
- bat-rplp-1: NOTRUN -> [SKIP][50] +35 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-rplp-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a.html
* {igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a} (NEW):
- bat-jsl-1: NOTRUN -> [SKIP][51] +58 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-jsl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html
- fi-tgl-1115g4: NOTRUN -> [SKIP][52] +79 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-tgl-1115g4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html
* {igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c} (NEW):
- bat-adlp-9: NOTRUN -> [SKIP][53] +71 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-adlp-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c.html
- bat-twl-2: NOTRUN -> [SKIP][54] +53 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-twl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c.html
* {igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a} (NEW):
- bat-arls-5: NOTRUN -> [SKIP][55] +83 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-arls-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a.html
* {igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d} (NEW):
- bat-arls-1: NOTRUN -> [SKIP][56] +83 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-arls-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html
New tests
---------
New tests have been introduced between CI_DRM_15289 and IGTPW_11635:
### New IGT tests (180) ###
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 11 pass(s) 24 skip(s)
- Exec time: [0.0, 2.99] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 11 pass(s) 24 skip(s)
- Exec time: [0.0, 4.32] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 9 pass(s) 24 skip(s)
- Exec time: [0.0, 5.37] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 5 pass(s) 14 skip(s)
- Exec time: [0.0, 2.21] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 11 pass(s) 24 skip(s)
- Exec time: [0.0, 2.45] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 11 pass(s) 24 skip(s)
- Exec time: [0.0, 4.27] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 9 pass(s) 24 skip(s)
- Exec time: [0.0, 4.82] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 5 pass(s) 14 skip(s)
- Exec time: [0.0, 2.05] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 34 crash(s) 1 skip(s)
- Exec time: [0.00, 0.25] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 34 crash(s) 1 skip(s)
- Exec time: [0.06, 4.37] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 32 crash(s) 1 skip(s)
- Exec time: [0.07, 5.18] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 19 crash(s)
- Exec time: [0.14, 1.48] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a:
- Statuses : 23 pass(s) 12 skip(s)
- Exec time: [0.0, 1.69] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b:
- Statuses : 23 pass(s) 12 skip(s)
- Exec time: [0.0, 1.68] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c:
- Statuses : 21 pass(s) 12 skip(s)
- Exec time: [0.0, 1.66] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d:
- Statuses : 10 pass(s) 9 skip(s)
- Exec time: [0.0, 1.66] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- Statuses : 19 pass(s) 16 skip(s)
- Exec time: [0.0, 3.90] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b:
- Statuses : 19 pass(s) 16 skip(s)
- Exec time: [0.0, 3.98] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- Statuses : 21 pass(s) 12 skip(s)
- Exec time: [0.0, 1.35] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d:
- Statuses : 10 pass(s) 9 skip(s)
- Exec time: [0.0, 1.34] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- Statuses : 34 crash(s) 1 skip(s)
- Exec time: [0.00, 0.53] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- Statuses : 34 crash(s) 1 skip(s)
- Exec time: [0.07, 4.38] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- Statuses : 32 crash(s) 1 skip(s)
- Exec time: [0.07, 4.53] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- Statuses : 18 crash(s) 1 skip(s)
- Exec time: [0.14, 1.44] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a:
- Statuses : 35 pass(s)
- Exec time: [0.0, 2.64] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b:
- Statuses : 35 pass(s)
- Exec time: [0.0, 2.60] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c:
- Statuses : 33 pass(s)
- Exec time: [0.0, 2.60] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d:
- Statuses : 19 pass(s)
- Exec time: [0.0, 1.67] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a:
- Statuses : 35 pass(s)
- Exec time: [0.0, 4.70] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b:
- Statuses : 35 pass(s)
- Exec time: [0.0, 4.62] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c:
- Statuses : 33 pass(s)
- Exec time: [0.0, 1.46] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d:
- Statuses : 19 pass(s)
- Exec time: [0.0, 1.34] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- Statuses : 33 crash(s) 2 skip(s)
- Exec time: [0.00, 0.43] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
- Statuses : 33 crash(s) 2 skip(s)
- Exec time: [0.07, 4.52] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c:
- Statuses : 31 crash(s) 2 skip(s)
- Exec time: [0.07, 4.60] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
- Statuses : 18 crash(s) 1 skip(s)
- Exec time: [0.13, 1.58] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a:
- Statuses : 35 pass(s)
- Exec time: [0.0, 1.45] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b:
- Statuses : 35 pass(s)
- Exec time: [0.0, 2.60] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-c:
- Statuses : 33 pass(s)
- Exec time: [0.0, 2.64] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d:
- Statuses : 19 pass(s)
- Exec time: [0.0, 1.66] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a:
- Statuses : 2 dmesg-warn(s) 33 pass(s)
- Exec time: [0.0, 3.84] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b:
- Statuses : 3 dmesg-warn(s) 32 pass(s)
- Exec time: [0.0, 4.76] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c:
- Statuses : 33 pass(s)
- Exec time: [0.0, 1.43] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d:
- Statuses : 19 pass(s)
- Exec time: [0.0, 1.34] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- Statuses : 34 crash(s) 1 skip(s)
- Exec time: [0.00, 0.49] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- Statuses : 34 crash(s) 1 skip(s)
- Exec time: [0.07, 4.81] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- Statuses : 32 crash(s) 1 skip(s)
- Exec time: [0.07, 4.39] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d:
- Statuses : 18 crash(s) 1 skip(s)
- Exec time: [0.14, 1.41] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-a:
- Statuses : 35 pass(s)
- Exec time: [0.0, 1.41] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b:
- Statuses : 35 pass(s)
- Exec time: [0.0, 2.63] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-c:
- Statuses : 33 pass(s)
- Exec time: [0.0, 2.55] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
- Statuses : 19 pass(s)
- Exec time: [0.0, 1.68] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a:
- Statuses : 31 pass(s) 4 skip(s)
- Exec time: [0.0, 3.90] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- Statuses : 31 pass(s) 4 skip(s)
- Exec time: [0.0, 3.91] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-c:
- Statuses : 33 pass(s)
- Exec time: [0.0, 1.47] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d:
- Statuses : 19 pass(s)
- Exec time: [0.0, 1.34] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a:
- Statuses : 23 pass(s) 12 skip(s)
- Exec time: [0.0, 1.33] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- Statuses : 23 pass(s) 12 skip(s)
- Exec time: [0.0, 1.67] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c:
- Statuses : 21 pass(s) 12 skip(s)
- Exec time: [0.0, 1.68] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d:
- Statuses : 15 pass(s) 4 skip(s)
- Exec time: [0.0, 1.58] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a:
- Statuses : 35 pass(s)
- Exec time: [0.0, 1.12] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b:
- Statuses : 35 pass(s)
- Exec time: [0.0, 2.21] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-c:
- Statuses : 33 pass(s)
- Exec time: [0.0, 2.17] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d:
- Statuses : 19 pass(s)
- Exec time: [0.0, 1.66] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a:
- Statuses : 35 pass(s)
- Exec time: [0.0, 3.51] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b:
- Statuses : 35 pass(s)
- Exec time: [0.0, 3.52] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-c:
- Statuses : 33 pass(s)
- Exec time: [0.0, 1.50] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d:
- Statuses : 19 pass(s)
- Exec time: [0.0, 1.34] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- Statuses : 35 crash(s)
- Exec time: [0.00, 0.28] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- Statuses : 35 crash(s)
- Exec time: [0.07, 4.30] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- Statuses : 33 crash(s)
- Exec time: [0.07, 4.49] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
- Statuses : 19 crash(s)
- Exec time: [0.14, 1.49] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 35 pass(s)
- Exec time: [0.0, 1.12] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 35 pass(s)
- Exec time: [0.0, 2.17] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 33 pass(s)
- Exec time: [0.0, 2.17] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 19 pass(s)
- Exec time: [0.0, 1.66] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 35 pass(s)
- Exec time: [0.0, 3.37] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 35 pass(s)
- Exec time: [0.0, 3.62] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 33 pass(s)
- Exec time: [0.0, 1.47] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 19 pass(s)
- Exec time: [0.0, 1.34] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 35 crash(s)
- Exec time: [0.00, 0.03] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 35 crash(s)
- Exec time: [0.07, 4.39] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 33 crash(s)
- Exec time: [0.07, 4.48] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 19 crash(s)
- Exec time: [0.14, 1.44] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- Statuses : 11 pass(s) 24 skip(s)
- Exec time: [0.0, 0.17] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- Statuses : 11 pass(s) 24 skip(s)
- Exec time: [0.0, 0.39] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- Statuses : 9 pass(s) 24 skip(s)
- Exec time: [0.0, 0.12] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- Statuses : 5 pass(s) 14 skip(s)
- Exec time: [0.0, 0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- Statuses : 12 pass(s) 23 skip(s)
- Exec time: [0.0, 0.17] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b:
- Statuses : 12 pass(s) 23 skip(s)
- Exec time: [0.0, 0.16] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c:
- Statuses : 10 pass(s) 23 skip(s)
- Exec time: [0.0, 0.12] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- Statuses : 6 pass(s) 13 skip(s)
- Exec time: [0.0, 0.07] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a:
- Statuses : 11 pass(s) 24 skip(s)
- Exec time: [0.0, 0.17] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
- Statuses : 11 pass(s) 24 skip(s)
- Exec time: [0.0, 0.17] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- Statuses : 9 pass(s) 24 skip(s)
- Exec time: [0.0, 0.12] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- Statuses : 5 pass(s) 14 skip(s)
- Exec time: [0.0, 0.07] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
- Statuses : 11 pass(s) 24 skip(s)
- Exec time: [0.0, 0.22] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- Statuses : 11 pass(s) 24 skip(s)
- Exec time: [0.0, 0.16] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c:
- Statuses : 9 pass(s) 24 skip(s)
- Exec time: [0.0, 0.12] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d:
- Statuses : 5 pass(s) 14 skip(s)
- Exec time: [0.0, 0.07] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a:
- Statuses : 14 pass(s) 21 skip(s)
- Exec time: [0.0, 8.96] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b:
- Statuses : 14 pass(s) 21 skip(s)
- Exec time: [0.0, 8.19] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c:
- Statuses : 12 pass(s) 21 skip(s)
- Exec time: [0.0, 8.08] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d:
- Statuses : 7 pass(s) 12 skip(s)
- Exec time: [0.0, 8.09] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
- Statuses : 14 pass(s) 21 skip(s)
- Exec time: [0.0, 8.84] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- Statuses : 14 pass(s) 21 skip(s)
- Exec time: [0.0, 8.21] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c:
- Statuses : 12 pass(s) 21 skip(s)
- Exec time: [0.0, 8.17] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- Statuses : 7 pass(s) 12 skip(s)
- Exec time: [0.0, 8.25] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a:
- Statuses : 14 pass(s) 21 skip(s)
- Exec time: [0.0, 8.99] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b:
- Statuses : 14 pass(s) 21 skip(s)
- Exec time: [0.0, 8.21] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c:
- Statuses : 12 pass(s) 21 skip(s)
- Exec time: [0.0, 8.24] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d:
- Statuses : 7 pass(s) 12 skip(s)
- Exec time: [0.0, 8.13] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- Statuses : 14 pass(s) 21 skip(s)
- Exec time: [0.0, 8.92] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b:
- Statuses : 14 pass(s) 21 skip(s)
- Exec time: [0.0, 8.26] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- Statuses : 12 pass(s) 21 skip(s)
- Exec time: [0.0, 8.14] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d:
- Statuses : 7 pass(s) 12 skip(s)
- Exec time: [0.0, 8.19] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a:
- Statuses : 29 pass(s) 6 skip(s)
- Exec time: [0.0, 14.86] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b:
- Statuses : 29 pass(s) 6 skip(s)
- Exec time: [0.0, 13.74] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-c:
- Statuses : 27 pass(s) 6 skip(s)
- Exec time: [0.0, 13.82] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d:
- Statuses : 19 pass(s)
- Exec time: [0.0, 13.81] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-a:
- Statuses : 28 pass(s) 7 skip(s)
- Exec time: [0.0, 14.71] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b:
- Statuses : 28 pass(s) 7 skip(s)
- Exec time: [0.0, 13.43] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-c:
- Statuses : 26 pass(s) 7 skip(s)
- Exec time: [0.0, 13.33] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d:
- Statuses : 18 pass(s) 1 skip(s)
- Exec time: [0.0, 13.39] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a:
- Statuses : 28 pass(s) 7 skip(s)
- Exec time: [0.0, 14.78] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b:
- Statuses : 28 pass(s) 7 skip(s)
- Exec time: [0.0, 13.35] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-c:
- Statuses : 26 pass(s) 7 skip(s)
- Exec time: [0.0, 13.21] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d:
- Statuses : 18 pass(s) 1 skip(s)
- Exec time: [0.0, 13.36] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- Statuses : 24 pass(s) 11 skip(s)
- Exec time: [0.0, 14.90] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- Statuses : 24 pass(s) 11 skip(s)
- Exec time: [0.0, 13.57] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-c:
- Statuses : 22 pass(s) 11 skip(s)
- Exec time: [0.0, 13.90] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d:
- Statuses : 14 pass(s) 5 skip(s)
- Exec time: [0.0, 13.59] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- Statuses : 29 pass(s) 6 skip(s)
- Exec time: [0.0, 16.36] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b:
- Statuses : 29 pass(s) 6 skip(s)
- Exec time: [0.0, 16.90] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-c:
- Statuses : 27 pass(s) 6 skip(s)
- Exec time: [0.0, 13.71] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
- Statuses : 19 pass(s)
- Exec time: [0.0, 13.56] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a:
- Statuses : 12 pass(s) 23 skip(s)
- Exec time: [0.0, 0.16] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
- Statuses : 12 pass(s) 23 skip(s)
- Exec time: [0.0, 0.16] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- Statuses : 10 pass(s) 23 skip(s)
- Exec time: [0.0, 0.12] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- Statuses : 6 pass(s) 13 skip(s)
- Exec time: [0.0, 0.07] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- Statuses : 15 pass(s) 20 skip(s)
- Exec time: [0.0, 8.95] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- Statuses : 15 pass(s) 20 skip(s)
- Exec time: [0.0, 8.10] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c:
- Statuses : 13 pass(s) 20 skip(s)
- Exec time: [0.0, 8.21] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d:
- Statuses : 8 pass(s) 11 skip(s)
- Exec time: [0.0, 8.19] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a:
- Statuses : 29 pass(s) 6 skip(s)
- Exec time: [0.0, 14.89] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b:
- Statuses : 29 pass(s) 6 skip(s)
- Exec time: [0.0, 13.65] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c:
- Statuses : 27 pass(s) 6 skip(s)
- Exec time: [0.0, 13.76] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d:
- Statuses : 19 pass(s)
- Exec time: [0.0, 13.67] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
- Statuses : 11 pass(s) 24 skip(s)
- Exec time: [0.0, 0.20] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- Statuses : 11 pass(s) 24 skip(s)
- Exec time: [0.0, 0.17] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c:
- Statuses : 9 pass(s) 24 skip(s)
- Exec time: [0.0, 0.12] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- Statuses : 5 pass(s) 14 skip(s)
- Exec time: [0.0, 0.07] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
- Statuses : 14 pass(s) 21 skip(s)
- Exec time: [0.0, 9.03] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- Statuses : 14 pass(s) 21 skip(s)
- Exec time: [0.0, 8.17] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c:
- Statuses : 12 pass(s) 21 skip(s)
- Exec time: [0.0, 8.19] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d:
- Statuses : 7 pass(s) 12 skip(s)
- Exec time: [0.0, 8.14] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- Statuses : 24 pass(s) 11 skip(s)
- Exec time: [0.0, 14.60] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
- Statuses : 24 pass(s) 11 skip(s)
- Exec time: [0.0, 13.47] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c:
- Statuses : 22 pass(s) 11 skip(s)
- Exec time: [0.0, 13.27] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- Statuses : 14 pass(s) 5 skip(s)
- Exec time: [0.0, 13.32] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-a:
- Statuses : 28 pass(s) 7 skip(s)
- Exec time: [0.0, 15.05] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-b:
- Statuses : 28 pass(s) 7 skip(s)
- Exec time: [0.0, 15.75] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-c:
- Statuses : 26 pass(s) 7 skip(s)
- Exec time: [0.0, 13.20] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-d:
- Statuses : 18 pass(s) 1 skip(s)
- Exec time: [0.0, 13.04] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a:
- Statuses : 12 pass(s) 23 skip(s)
- Exec time: [0.0, 0.18] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- Statuses : 12 pass(s) 23 skip(s)
- Exec time: [0.0, 0.17] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c:
- Statuses : 10 pass(s) 23 skip(s)
- Exec time: [0.0, 0.13] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
- Statuses : 6 pass(s) 13 skip(s)
- Exec time: [0.0, 0.07] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- Statuses : 15 pass(s) 20 skip(s)
- Exec time: [0.0, 8.65] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b:
- Statuses : 15 pass(s) 20 skip(s)
- Exec time: [0.0, 8.19] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
- Statuses : 13 pass(s) 20 skip(s)
- Exec time: [0.0, 8.19] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d:
- Statuses : 8 pass(s) 11 skip(s)
- Exec time: [0.0, 8.19] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a:
- Statuses : 24 pass(s) 11 skip(s)
- Exec time: [0.0, 14.40] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- Statuses : 24 pass(s) 11 skip(s)
- Exec time: [0.0, 13.53] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c:
- Statuses : 22 pass(s) 11 skip(s)
- Exec time: [0.0, 13.47] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d:
- Statuses : 14 pass(s) 5 skip(s)
- Exec time: [0.0, 13.51] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a:
- Statuses : 28 pass(s) 7 skip(s)
- Exec time: [0.0, 15.79] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b:
- Statuses : 28 pass(s) 7 skip(s)
- Exec time: [0.0, 16.09] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c:
- Statuses : 26 pass(s) 7 skip(s)
- Exec time: [0.0, 13.26] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d:
- Statuses : 18 pass(s) 1 skip(s)
- Exec time: [0.0, 13.25] s
Known issues
------------
Here are the changes found in IGTPW_11635 that come from known issues:
### IGT changes ###
#### Issues hit ####
* {igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a} (NEW):
- fi-kbl-7567u: NOTRUN -> [SKIP][57] +82 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-kbl-7567u/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
- fi-cfl-8700k: NOTRUN -> [SKIP][58] +82 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-cfl-8700k/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
- fi-pnv-d510: NOTRUN -> [SKIP][59] +44 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-pnv-d510/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
* {igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a} (NEW):
- fi-cfl-guc: NOTRUN -> [SKIP][60] +82 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-cfl-guc/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a.html
* {igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c} (NEW):
- fi-glk-j4005: NOTRUN -> [SKIP][61] +80 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-glk-j4005/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* {igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a} (NEW):
- fi-cfl-8109u: NOTRUN -> [SKIP][62] +82 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/fi-cfl-8109u/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a.html
* {igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a} (NEW):
- bat-apl-1: NOTRUN -> [SKIP][63] +80 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/bat-apl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7990 -> IGTPW_11635
CI-20190529: 20190529
CI_DRM_15289: f83dc30335e989657706c73484b78dd755f909b4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11635: 11635
IGT_7990: 9ca5ff0afa3636478b6ba5a97e5ba440cfb2e55e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/index.html
[-- Attachment #2: Type: text/html, Size: 51604 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ CI.xeFULL: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs
2024-08-26 4:56 [PATCH i-g-t 0/3] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
` (4 preceding siblings ...)
2024-08-26 6:32 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-08-26 7:23 ` Patchwork
2024-08-27 4:05 ` ✗ Fi.CI.IGT: " Patchwork
2024-08-30 7:05 ` [PATCH i-g-t 0/3] " Sharma, Swati2
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-08-26 7:23 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 99112 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Update scaling functions to retry on valid outputs
URL : https://patchwork.freedesktop.org/series/137770/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7990_full -> XEIGTPW_11635_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11635_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11635_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_11635_full:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b} (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][1] +5 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a} (NEW):
- shard-lnl: NOTRUN -> [CRASH][2] +17 other tests crash
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c} (NEW):
- shard-lnl: NOTRUN -> [SKIP][3] +56 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation:
- shard-lnl: NOTRUN -> [WARN][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c} (NEW):
- shard-dg2-set2: NOTRUN -> [CRASH][5] +23 other tests crash
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
- shard-dg2-set2: [PASS][6] -> [WARN][7] +4 other tests warn
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-434/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-466/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
- shard-lnl: [PASS][8] -> [WARN][9] +3 other tests warn
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-lnl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
* {igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a} (NEW):
- {shard-bmg}: NOTRUN -> [CRASH][10] +19 other tests crash
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-bmg-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* {igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b} (NEW):
- {shard-bmg}: NOTRUN -> [SKIP][11] +59 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@xe_gt_freq@freq_reset_multiple:
- shard-lnl: [PASS][12] -> [FAIL][13]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-lnl-1/igt@xe_gt_freq@freq_reset_multiple.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-6/igt@xe_gt_freq@freq_reset_multiple.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-dg2-set2: [PASS][14] -> [DMESG-WARN][15]
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-463/igt@xe_pm@s2idle-multiple-execs.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@xe_pm@s2idle-multiple-execs.html
#### Warnings ####
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2-set2: [SKIP][16] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [WARN][17]
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
- shard-lnl: [SKIP][18] ([Intel XE#498]) -> [WARN][19]
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
- shard-lnl: [SKIP][20] ([Intel XE#498]) -> [SKIP][21] +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-lnl: [SKIP][22] ([Intel XE#2318]) -> [SKIP][23] +14 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-lnl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/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_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- {shard-bmg}: [SKIP][24] ([Intel XE#498]) -> [SKIP][25] +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-bmg-7/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}: [SKIP][26] ([Intel XE#498]) -> [WARN][27]
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-bmg-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
- {shard-bmg}: [PASS][28] -> [WARN][29] +3 other tests warn
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-bmg-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- {shard-bmg}: NOTRUN -> [SKIP][30]
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- {shard-bmg}: [SKIP][31] ([Intel XE#2318]) -> [SKIP][32] +11 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
New tests
---------
New tests have been introduced between XEIGT_7990_full and XEIGTPW_11635_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.95] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.88] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 1.30] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [1.09, 1.31] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 2 skip(s)
- Exec time: [0.68, 0.94] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 2 skip(s)
- Exec time: [0.71, 0.88] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 2 skip(s)
- Exec time: [1.07, 1.33] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [1.07, 1.34] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 3 crash(s)
- Exec time: [0.00, 0.01] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 3 crash(s)
- Exec time: [0.16, 1.47] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 3 crash(s)
- Exec time: [0.16, 1.51] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 2 crash(s)
- Exec time: [0.47, 1.47] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a:
- Statuses : 2 pass(s)
- Exec time: [0.55, 0.63] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b:
- Statuses : 2 pass(s)
- Exec time: [0.61, 0.64] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c:
- Statuses : 2 pass(s)
- Exec time: [0.61, 0.64] 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.00, 1.88] 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.99] 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.27, 0.31] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- Statuses : 3 crash(s)
- Exec time: [0.00, 0.01] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- Statuses : 3 crash(s)
- Exec time: [0.15, 1.52] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- Statuses : 3 crash(s)
- Exec time: [0.15, 1.59] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- Statuses : 2 crash(s)
- Exec time: [0.43, 1.57] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.56, 0.72] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.60, 1.93] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.60, 1.97] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.61, 0.64] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [1.84, 3.55] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.81, 3.25] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.29, 2.28] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.31] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- Statuses : 2 crash(s)
- Exec time: [0.00, 0.01] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
- Statuses : 2 crash(s)
- Exec time: [0.17, 0.44] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c:
- Statuses : 2 crash(s)
- Exec time: [0.16, 0.45] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
- Statuses : 1 crash(s)
- Exec time: [0.46] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.56, 0.69] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.81] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.92] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.60, 0.65] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [1.85, 3.45] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.81, 3.26] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.27, 1.42] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.27, 0.30] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- Statuses : 3 crash(s)
- Exec time: [0.00, 0.01] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- Statuses : 3 crash(s)
- Exec time: [0.18, 1.40] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- Statuses : 3 crash(s)
- Exec time: [0.18, 1.47] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d:
- Statuses : 2 crash(s)
- Exec time: [0.47, 1.55] 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.75] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 1.78] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.61, 0.64] 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.95] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [1.45, 1.97] 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.32] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.37, 0.46] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.61] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.44, 1.62] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.44, 0.48] 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, 2.06] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.61, 2.17] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.60, 0.64] 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, 2.98] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.27, 1.39] 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 crash(s)
- Exec time: [0.01] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- Statuses : 3 crash(s)
- Exec time: [0.17, 1.48] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- Statuses : 3 crash(s)
- Exec time: [0.15, 1.49] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
- Statuses : 2 crash(s)
- Exec time: [0.46, 1.59] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.52, 0.64] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.63, 1.78] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.62, 1.76] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.61, 0.65] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [1.66, 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, 4.17] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.28, 1.45] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.28, 0.31] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 3 crash(s)
- Exec time: [0.00] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 3 crash(s)
- Exec time: [0.17, 1.51] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 3 crash(s)
- Exec time: [0.16, 1.51] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 2 crash(s)
- Exec time: [0.46, 1.53] 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.06] 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.00, 11.08] 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.41] 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.46] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.26, 10.31] 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.91] 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.49] 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.32] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.23, 10.36] 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.00, 10.97] 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.33] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.31, 10.36] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 11.10] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 10.38] s
* igt@kms_plane_scaling@planes-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-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.06, 10.48] 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.90, 10.15] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.33, 10.30] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [9.65, 10.25] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.15, 10.99] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.39, 10.42] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.45, 10.40] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.23, 10.37] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.19, 11.09] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.40, 10.38] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.37, 10.37] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.24, 10.39] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 9.50] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 9.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-c:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 9.17] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.06, 9.06] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.14, 10.30] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.32, 10.23] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.37, 10.38] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [9.63, 10.19] 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.05] 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)
- Exec time: [10.23, 11.04] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- Statuses : 2 pass(s)
- Exec time: [10.19, 10.41] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c:
- Statuses : 2 pass(s)
- Exec time: [10.19, 10.43] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.16, 10.33] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.15, 10.13] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.36, 10.25] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.33, 10.26] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [9.60, 10.31] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.05] 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 : 2 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- Statuses : 2 skip(s)
- Exec time: [0.01, 0.05] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c:
- Statuses : 2 skip(s)
- Exec time: [0.01, 0.06] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d:
- Statuses : 1 skip(s)
- Exec time: [0.06] 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.31] 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.36] 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.50] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.13, 11.33] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [1.36, 10.35] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [1.39, 10.36] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [10.21, 10.33] 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.06] 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, 11.11] 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.45] 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.50] 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.40] 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.93] 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.36] 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.48] 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.35] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a:
- Statuses : 2 pass(s)
- Exec time: [0.14, 10.95] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b:
- Statuses : 2 pass(s)
- Exec time: [1.29, 10.36] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c:
- Statuses : 2 pass(s)
- Exec time: [1.35, 10.41] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d:
- Statuses : 1 pass(s)
- Exec time: [10.39] s
Known issues
------------
Here are the changes found in XEIGTPW_11635_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1466])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [PASS][34] -> [FAIL][35] ([Intel XE#911]) +3 other tests fail
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-4:
- shard-dg2-set2: [PASS][36] -> [DMESG-WARN][37] ([Intel XE#358])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-436/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-4.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-434/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-4.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][38] -> [FAIL][39] ([Intel XE#1426]) +1 other test fail
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-466/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-lnl: [PASS][40] -> [FAIL][41] ([Intel XE#1659]) +1 other test fail
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-lnl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@linear-64bpp-rotate-0:
- shard-lnl: NOTRUN -> [DMESG-WARN][42] ([Intel XE#1725])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-8/igt@kms_big_fb@linear-64bpp-rotate-0.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#1201] / [Intel XE#316])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1407])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1124]) +6 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#346])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-2/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#367]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-1/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +5 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-463/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#787]) +20 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-463/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1399]) +9 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#314])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#1201] / [Intel XE#373])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-466/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#373])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#373]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-8/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1424])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#308])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#309])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1421]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2-set2: [PASS][59] -> [INCOMPLETE][60] ([Intel XE#1195] / [Intel XE#2049])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-436/igt@kms_flip@flip-vs-suspend@d-dp4.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-466/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1397] / [Intel XE#1745])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1397])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1401]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1201] / [Intel XE#651]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#651]) +10 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1201] / [Intel XE#653])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#653])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#656]) +23 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_plane@plane-position-hole:
- shard-lnl: [PASS][70] -> [DMESG-FAIL][71] ([Intel XE#324]) +1 other test dmesg-fail
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-lnl-3/igt@kms_plane@plane-position-hole.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-4/igt@kms_plane@plane-position-hole.html
* igt@kms_plane@plane-position-hole@pipe-b-plane-1:
- shard-lnl: [PASS][72] -> [DMESG-WARN][73] ([Intel XE#324]) +1 other test dmesg-warn
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-lnl-3/igt@kms_plane@plane-position-hole@pipe-b-plane-1.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-4/igt@kms_plane@plane-position-hole@pipe-b-plane-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][74] -> [FAIL][75] ([Intel XE#361]) +2 other tests fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* {igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d} (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#1201] / [Intel XE#455]) +7 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* {igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d} (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#455]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* {igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b} (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#1201]) +20 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#736])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#718])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1439])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#1201] / [Intel XE#1489])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#1122])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1128])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-1/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1406]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-3/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr@psr-cursor-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1201] / [Intel XE#929])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@kms_psr@psr-cursor-blt.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1437])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#374] / [Intel XE#599])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-6/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#374]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-6/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_vrr@flip-basic:
- shard-lnl: NOTRUN -> [FAIL][91] ([Intel XE#2443]) +1 other test fail
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-8/igt@kms_vrr@flip-basic.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#1091] / [Intel XE#1201])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [PASS][93] -> [TIMEOUT][94] ([Intel XE#1473] / [Intel XE#402])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-beng-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#688]) +5 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-5/igt@xe_evict@evict-beng-threads-large-multi-vm.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-dg2-set2: [PASS][96] -> [TIMEOUT][97] ([Intel XE#1473]) +1 other test timeout
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-434/igt@xe_evict@evict-mixed-threads-large.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1392]) +4 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#1201] / [Intel XE#288])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#288])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2229])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][102] ([Intel XE#1999]) +1 other test fail
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#1201] / [Intel XE#2541]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#977])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-4/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1948])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-6/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-dg2-set2: [PASS][106] -> [INCOMPLETE][107] ([Intel XE#1195] / [Intel XE#1358] / [Intel XE#569])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@xe_pm@s3-d3hot-basic-exec.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-463/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s4-exec-after:
- shard-lnl: [PASS][108] -> [ABORT][109] ([Intel XE#1358] / [Intel XE#1607])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-lnl-8/igt@xe_pm@s4-exec-after.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-2/igt@xe_pm@s4-exec-after.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-lnl: [PASS][110] -> [ABORT][111] ([Intel XE#1607] / [Intel XE#1794])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-lnl-6/igt@xe_pm@s4-vm-bind-prefetch.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#944]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-1/igt@xe_query@multigpu-query-invalid-size.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][113] ([Intel XE#1426]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-436/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-434/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-lnl: [FAIL][115] ([Intel XE#1659]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-hdmi-a-3:
- {shard-bmg}: [FAIL][117] ([Intel XE#2436]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-hdmi-a-3.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-c-dp-2:
- {shard-bmg}: [FAIL][119] -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-c-dp-2.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-c-dp-2.html
* igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3:
- {shard-bmg}: [DMESG-WARN][121] ([Intel XE#877]) -> [PASS][122] +6 other tests pass
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4:
- shard-dg2-set2: [DMESG-WARN][123] ([Intel XE#2019]) -> [PASS][124] +2 other tests pass
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [FAIL][125] ([Intel XE#886]) -> [PASS][126] +2 other tests pass
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a3:
- {shard-bmg}: [INCOMPLETE][127] -> [PASS][128] +2 other tests pass
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-bmg-5/igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a3.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-bmg-4/igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a3.html
* igt@kms_hdr@invalid-hdr:
- {shard-bmg}: [SKIP][129] ([Intel XE#1503]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_cursor@overlay:
- shard-dg2-set2: [INCOMPLETE][131] ([Intel XE#1195]) -> [PASS][132] +2 other tests pass
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-435/igt@kms_plane_cursor@overlay.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@kms_plane_cursor@overlay.html
* igt@kms_psr@psr2-cursor-plane-move@edp-1:
- shard-lnl: [FAIL][133] ([Intel XE#1649]) -> [PASS][134] +1 other test pass
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-lnl-5/igt@kms_psr@psr2-cursor-plane-move@edp-1.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-8/igt@kms_psr@psr2-cursor-plane-move@edp-1.html
* igt@kms_universal_plane@cursor-fb-leak:
- {shard-bmg}: [FAIL][135] ([Intel XE#899]) -> [PASS][136] +2 other tests pass
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-bmg-5/igt@kms_universal_plane@cursor-fb-leak.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-bmg-2/igt@kms_universal_plane@cursor-fb-leak.html
- shard-dg2-set2: [FAIL][137] ([Intel XE#771] / [Intel XE#899]) -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6:
- shard-dg2-set2: [FAIL][139] ([Intel XE#899]) -> [PASS][140]
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html
* igt@xe_evict@evict-beng-threads-large:
- {shard-bmg}: [TIMEOUT][141] ([Intel XE#1473]) -> [PASS][142] +1 other test pass
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-bmg-1/igt@xe_evict@evict-beng-threads-large.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-bmg-4/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-large-multi-vm-cm:
- {shard-bmg}: [FAIL][143] ([Intel XE#2364]) -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-bmg-4/igt@xe_evict@evict-large-multi-vm-cm.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-bmg-1/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [SKIP][145] ([Intel XE#1192]) -> [PASS][146]
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@xe_live_ktest@xe_bo.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@xe_live_ktest@xe_bo.html
* igt@xe_oa@oa-regs-whitelisted@ccs-0:
- {shard-bmg}: [FAIL][147] ([Intel XE#2514]) -> [PASS][148] +1 other test pass
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-bmg-4/igt@xe_oa@oa-regs-whitelisted@ccs-0.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-bmg-4/igt@xe_oa@oa-regs-whitelisted@ccs-0.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][149] ([Intel XE#1162] / [Intel XE#1941] / [Intel XE#569]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-435/igt@xe_pm@s3-vm-bind-unbind-all.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s4-basic-exec:
- shard-lnl: [ABORT][151] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][152] +1 other test pass
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-lnl-2/igt@xe_pm@s4-basic-exec.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-7/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [ABORT][153] ([Intel XE#1794]) -> [PASS][154]
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-lnl-1/igt@xe_pm@s4-vm-bind-unbind-all.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: [SKIP][155] ([Intel XE#1201] / [Intel XE#801]) -> [SKIP][156] ([Intel XE#801]) +23 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-433/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/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-dg2-set2: [SKIP][157] ([Intel XE#873]) -> [SKIP][158] ([Intel XE#1201] / [Intel XE#873])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg2-set2: [FAIL][159] ([Intel XE#1426]) -> [DMESG-WARN][160] ([Intel XE#358])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-436/igt@kms_atomic_transition@plane-all-modeset-transition.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-434/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][161] ([Intel XE#316]) -> [SKIP][162] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_big_fb@linear-32bpp-rotate-90.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][163] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][164] ([Intel XE#316]) +4 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][165] ([Intel XE#1201] / [Intel XE#610]) -> [SKIP][166] ([Intel XE#610]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][167] ([Intel XE#1124]) -> [SKIP][168] ([Intel XE#1124] / [Intel XE#1201]) +7 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][169] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][170] ([Intel XE#1124]) +9 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][171] ([Intel XE#607]) -> [SKIP][172] ([Intel XE#1201] / [Intel XE#607])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: [SKIP][173] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][174] ([Intel XE#367]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-436/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: [SKIP][175] ([Intel XE#367]) -> [SKIP][176] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][177] ([Intel XE#2191]) -> [SKIP][178] ([Intel XE#1201] / [Intel XE#2191])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: [SKIP][179] ([Intel XE#1201] / [Intel XE#2191]) -> [SKIP][180] ([Intel XE#2191]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-a-dp-4:
- shard-dg2-set2: [SKIP][181] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][182] ([Intel XE#787]) +55 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-434/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-a-dp-4.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-a-dp-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][183] ([Intel XE#1201]) -> [SKIP][184] ([Intel XE#1201] / [Intel XE#1252]) +7 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-433/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-463/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][185] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][186] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +15 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][187] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][188] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: [SKIP][189] ([Intel XE#787]) -> [SKIP][190] ([Intel XE#1201] / [Intel XE#787]) +55 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][191] ([Intel XE#1201]) -> [SKIP][192] ([Intel XE#1252]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][193] ([Intel XE#314]) -> [SKIP][194] ([Intel XE#1201] / [Intel XE#314]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][195] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][196] ([Intel XE#306]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-435/igt@kms_chamelium_color@gamma.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-dg2-set2: [SKIP][197] ([Intel XE#373]) -> [SKIP][198] ([Intel XE#1201] / [Intel XE#373]) +5 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][199] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][200] ([Intel XE#373]) +4 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: [SKIP][201] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][202] ([Intel XE#308]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: [SKIP][203] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][204] ([Intel XE#323])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: [SKIP][205] ([Intel XE#703]) -> [SKIP][206] ([Intel XE#1201] / [Intel XE#703])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_feature_discovery@display-3x.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [DMESG-WARN][207] ([Intel XE#1551]) -> [INCOMPLETE][208] ([Intel XE#1195] / [Intel XE#1551] / [Intel XE#2049] / [Intel XE#2597])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-436/igt@kms_flip@flip-vs-suspend.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-466/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][209] ([Intel XE#455]) -> [SKIP][210] ([Intel XE#1201] / [Intel XE#455]) +5 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][211] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][212] ([Intel XE#455]) +23 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw:
- shard-dg2-set2: [SKIP][213] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][214] ([Intel XE#651]) +21 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg2-set2: [SKIP][215] ([Intel XE#651]) -> [SKIP][216] ([Intel XE#1201] / [Intel XE#651]) +15 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][217] ([Intel XE#658]) -> [SKIP][218] ([Intel XE#1201] / [Intel XE#658])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
- shard-dg2-set2: [SKIP][219] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][220] ([Intel XE#653]) +24 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][221] ([Intel XE#653]) -> [SKIP][222] ([Intel XE#1201] / [Intel XE#653]) +14 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2-set2: [SKIP][223] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][224] ([Intel XE#1201] / [Intel XE#455])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-433/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][225] ([Intel XE#455] / [Intel XE#498]) -> [SKIP][226] ([Intel XE#455])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/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][227] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][228] ([Intel XE#1201] / [Intel XE#455]) +5 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][229] ([Intel XE#2318] / [Intel XE#455]) -> [SKIP][230] ([Intel XE#455])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: [SKIP][231] ([Intel XE#870]) -> [SKIP][232] ([Intel XE#1201] / [Intel XE#870])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_pm_backlight@bad-brightness.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][233] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][234] ([Intel XE#870])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: [SKIP][235] ([Intel XE#1129]) -> [SKIP][236] ([Intel XE#1129] / [Intel XE#1201])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_pm_dc@dc5-psr.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@fbc-cursor-plane-update-sf:
- shard-dg2-set2: [SKIP][237] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][238] ([Intel XE#1489]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-434/igt@kms_psr2_sf@fbc-cursor-plane-update-sf.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_psr2_sf@fbc-cursor-plane-update-sf.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2-set2: [SKIP][239] ([Intel XE#1489]) -> [SKIP][240] ([Intel XE#1201] / [Intel XE#1489]) +2 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-433/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: [SKIP][241] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][242] ([Intel XE#929]) +13 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-render.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][243] ([Intel XE#929]) -> [SKIP][244] ([Intel XE#1201] / [Intel XE#929]) +8 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: [SKIP][245] ([Intel XE#1149] / [Intel XE#1201]) -> [SKIP][246] ([Intel XE#1149])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-435/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][247] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][248] ([Intel XE#1127])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][249] ([Intel XE#327]) -> [SKIP][250] ([Intel XE#1201] / [Intel XE#327])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][251] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][252] ([Intel XE#327]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][253] ([Intel XE#1201] / [Intel XE#1500]) -> [SKIP][254] ([Intel XE#1500])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: [SKIP][255] ([Intel XE#1201] / [Intel XE#2168]) -> [SKIP][256] ([Intel XE#2168])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-433/igt@kms_vrr@cmrr.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@kms_vrr@cmrr.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][257] ([Intel XE#1091]) -> [SKIP][258] ([Intel XE#1091] / [Intel XE#1201])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][259] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][260] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-466/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: [SKIP][261] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) -> [SKIP][262] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-copy-linear-0xfd:
- shard-dg2-set2: [SKIP][263] ([Intel XE#1123] / [Intel XE#1201]) -> [SKIP][264] ([Intel XE#1123])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfd.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfd.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: [SKIP][265] ([Intel XE#288]) -> [SKIP][266] ([Intel XE#1201] / [Intel XE#288]) +15 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][267] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][268] ([Intel XE#288]) +22 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: [SKIP][269] ([Intel XE#1201] / [Intel XE#2360]) -> [SKIP][270] ([Intel XE#2360])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-433/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [TIMEOUT][271] ([Intel XE#2105]) -> [INCOMPLETE][272] ([Intel XE#1195] / [Intel XE#2105])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_live_ktest@xe_mocs:
- shard-dg2-set2: [SKIP][273] ([Intel XE#1192] / [Intel XE#1201]) -> [FAIL][274] ([Intel XE#1999])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-434/igt@xe_live_ktest@xe_mocs.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@xe_live_ktest@xe_mocs.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: [SKIP][275] ([Intel XE#2541]) -> [SKIP][276] ([Intel XE#1201] / [Intel XE#2541]) +3 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@xe_oa@polling-small-buf.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@xe_oa@polling-small-buf.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: [SKIP][277] ([Intel XE#1201] / [Intel XE#2541]) -> [SKIP][278] ([Intel XE#2541]) +8 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: [SKIP][279] ([Intel XE#977]) -> [SKIP][280] ([Intel XE#1201] / [Intel XE#977])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@xe_pat@pat-index-xe2.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-436/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][281] ([Intel XE#979]) -> [SKIP][282] ([Intel XE#1201] / [Intel XE#979])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-435/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: [SKIP][283] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) -> [SKIP][284] ([Intel XE#2284] / [Intel XE#366])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-466/igt@xe_pm@d3cold-mmap-vram.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: [SKIP][285] ([Intel XE#944]) -> [SKIP][286] ([Intel XE#1201] / [Intel XE#944]) +2 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-432/igt@xe_query@multigpu-query-oa-units.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-434/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-dg2-set2: [SKIP][287] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][288] ([Intel XE#944]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7990/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-huc.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-huc.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[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#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#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[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#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[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#1941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1941
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019
[Intel XE#2026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2026
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#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#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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[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#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[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#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[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#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#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358
[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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374
[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#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[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#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771
[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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[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#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#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_7990 -> IGTPW_11635
* Linux: xe-1822-411a047925bb7e169a075a2ddfb63ba96f26a8c8 -> xe-1824-f83dc30335e989657706c73484b78dd755f909b4
IGTPW_11635: 11635
IGT_7990: 9ca5ff0afa3636478b6ba5a97e5ba440cfb2e55e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1822-411a047925bb7e169a075a2ddfb63ba96f26a8c8: 411a047925bb7e169a075a2ddfb63ba96f26a8c8
xe-1824-f83dc30335e989657706c73484b78dd755f909b4: f83dc30335e989657706c73484b78dd755f909b4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11635/index.html
[-- Attachment #2: Type: text/html, Size: 124021 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs
2024-08-26 4:56 [PATCH i-g-t 0/3] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
` (5 preceding siblings ...)
2024-08-26 7:23 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-08-27 4:05 ` Patchwork
2024-08-30 7:05 ` [PATCH i-g-t 0/3] " Sharma, Swati2
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-08-27 4:05 UTC (permalink / raw)
To: Naladala Ramanaidu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100294 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Update scaling functions to retry on valid outputs
URL : https://patchwork.freedesktop.org/series/137770/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15289_full -> IGTPW_11635_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11635_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11635_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11635_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- shard-dg2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15289/shard-dg2-10/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-3/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
- shard-dg1: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15289/shard-dg1-17/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-16/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a} (NEW):
- shard-rkl: NOTRUN -> [SKIP][5] +25 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a} (NEW):
- shard-glk: NOTRUN -> [CRASH][6] +8 other tests crash
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-glk6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c} (NEW):
- shard-tglu: NOTRUN -> [CRASH][7] +19 other tests crash
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a} (NEW):
- shard-mtlp: NOTRUN -> [SKIP][8] +81 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html
* {igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d} (NEW):
- shard-dg2: NOTRUN -> [CRASH][9] +19 other tests crash
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html
* {igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a} (NEW):
- shard-dg1: NOTRUN -> [CRASH][10] +23 other tests crash
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html
* {igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a} (NEW):
- shard-rkl: NOTRUN -> [CRASH][11] +3 other tests crash
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
- shard-snb: NOTRUN -> [CRASH][12] +11 other tests crash
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-snb5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* {igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b} (NEW):
- shard-mtlp: NOTRUN -> [CRASH][13] +23 other tests crash
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
* {igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d} (NEW):
- shard-dg2: NOTRUN -> [SKIP][14] +35 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* {igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b} (NEW):
- shard-tglu: NOTRUN -> [SKIP][15] +71 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b.html
* {igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b} (NEW):
- shard-dg1: NOTRUN -> [SKIP][16] +39 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-14/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html
New tests
---------
New tests have been introduced between CI_DRM_15289_full and IGTPW_11635_full:
### New IGT tests (180) ###
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.00, 4.91] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.00, 6.12] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 5 skip(s)
- Exec time: [0.02, 9.98] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.02, 1.81] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.00, 4.70] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.00, 3.89] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 5 skip(s)
- Exec time: [0.02, 6.76] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.02, 1.82] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 5 crash(s)
- Exec time: [0.00, 0.02] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 5 crash(s)
- Exec time: [0.14, 0.74] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 4 crash(s)
- Exec time: [0.21, 0.71] s
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 3 crash(s)
- Exec time: [0.21, 0.36] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.00, 0.84] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.00, 0.81] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c:
- Statuses : 4 pass(s) 1 skip(s)
- Exec time: [0.01, 0.81] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.01, 0.76] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.00, 2.75] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.00, 2.64] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- Statuses : 4 pass(s) 1 skip(s)
- Exec time: [0.01, 0.34] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.01, 0.29] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- Statuses : 5 crash(s) 1 skip(s)
- Exec time: [0.00, 0.26] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- Statuses : 5 crash(s) 1 skip(s)
- Exec time: [0.18, 0.45] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- Statuses : 4 crash(s)
- Exec time: [0.21, 0.43] s
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- Statuses : 4 crash(s)
- Exec time: [0.28, 0.40] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.00, 0.75] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.00, 1.47] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c:
- Statuses : 4 pass(s)
- Exec time: [0.43, 1.47] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.44, 1.47] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.00, 2.64] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.00, 2.74] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c:
- Statuses : 4 pass(s)
- Exec time: [0.21, 1.23] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.21, 1.28] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- Statuses : 6 crash(s)
- Exec time: [0.00, 0.13] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
- Statuses : 6 crash(s)
- Exec time: [0.13, 0.46] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c:
- Statuses : 4 crash(s)
- Exec time: [0.13, 0.51] s
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
- Statuses : 4 crash(s)
- Exec time: [0.16, 0.45] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a:
- Statuses : 7 pass(s)
- Exec time: [0.00, 0.81] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b:
- Statuses : 7 pass(s)
- Exec time: [0.00, 1.49] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-c:
- Statuses : 5 pass(s)
- Exec time: [0.43, 1.47] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.44, 1.48] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a:
- Statuses : 7 pass(s)
- Exec time: [0.00, 2.73] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b:
- Statuses : 7 pass(s)
- Exec time: [0.00, 2.85] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c:
- Statuses : 5 pass(s)
- Exec time: [0.21, 1.24] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.20, 1.28] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- Statuses : 5 crash(s) 2 skip(s)
- Exec time: [0.01, 0.42] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- Statuses : 5 crash(s) 2 skip(s)
- Exec time: [0.17, 0.70] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- Statuses : 4 crash(s) 1 skip(s)
- Exec time: [0.24, 0.73] s
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d:
- Statuses : 3 crash(s) 1 skip(s)
- Exec time: [0.31, 0.51] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.00, 0.87] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.00, 1.50] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-c:
- Statuses : 4 pass(s)
- Exec time: [0.43, 1.47] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
- Statuses : 3 pass(s)
- Exec time: [0.45, 1.48] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [0.00, 2.71] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [0.00, 2.71] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-c:
- Statuses : 4 pass(s)
- Exec time: [0.20, 1.27] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d:
- Statuses : 3 pass(s)
- Exec time: [0.20, 1.28] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a:
- Statuses : 3 pass(s) 4 skip(s)
- Exec time: [0.00, 1.67] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- Statuses : 3 pass(s) 4 skip(s)
- Exec time: [0.00, 1.77] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c:
- Statuses : 2 pass(s) 3 skip(s)
- Exec time: [0.21, 1.75] s
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d:
- Statuses : 2 pass(s) 2 skip(s)
- Exec time: [0.20, 1.34] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a:
- Statuses : 5 pass(s)
- Exec time: [0.00, 0.82] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b:
- Statuses : 5 pass(s)
- Exec time: [0.00, 1.46] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.57, 1.47] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [0.57, 1.47] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a:
- Statuses : 7 pass(s)
- Exec time: [0.00, 2.37] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b:
- Statuses : 7 pass(s)
- Exec time: [0.00, 2.34] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-c:
- Statuses : 5 pass(s)
- Exec time: [0.20, 1.26] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.20, 1.28] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- Statuses : 6 crash(s)
- Exec time: [0.01] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- Statuses : 6 crash(s)
- Exec time: [0.14, 0.29] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- Statuses : 4 crash(s)
- Exec time: [0.16, 0.29] s
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
- Statuses : 4 crash(s)
- Exec time: [0.17, 0.35] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a:
- Statuses : 7 pass(s)
- Exec time: [0.00, 0.82] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-b:
- Statuses : 7 pass(s)
- Exec time: [0.00, 1.48] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- Statuses : 5 pass(s)
- Exec time: [0.43, 1.47] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [0.43, 1.47] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a:
- Statuses : 5 pass(s)
- Exec time: [0.00, 2.32] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b:
- Statuses : 5 pass(s)
- Exec time: [0.00, 2.34] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c:
- Statuses : 3 pass(s)
- Exec time: [0.20, 0.27] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d:
- Statuses : 3 pass(s)
- Exec time: [0.20, 0.27] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a:
- Statuses : 6 crash(s) 1 skip(s)
- Exec time: [0.00, 0.21] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
- Statuses : 6 crash(s) 1 skip(s)
- Exec time: [0.17, 0.76] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- Statuses : 5 crash(s)
- Exec time: [0.14, 0.71] s
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- Statuses : 4 crash(s)
- Exec time: [0.26, 0.36] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.00, 0.17] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.00, 0.16] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- Statuses : 5 skip(s)
- Exec time: [0.02, 0.03] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.02, 0.03] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.00, 0.13] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.00, 0.12] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c:
- Statuses : 5 skip(s)
- Exec time: [0.02, 0.04] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.02, 0.04] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.00, 0.18] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.00, 0.16] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- Statuses : 5 skip(s)
- Exec time: [0.02, 0.06] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.02, 0.04] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.00, 0.03] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.00, 0.04] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c:
- Statuses : 4 skip(s)
- Exec time: [0.02, 0.04] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.02, 0.04] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.00, 5.80] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b:
- Statuses : 4 pass(s) 2 skip(s)
- Exec time: [0.00, 4.90] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c:
- Statuses : 2 pass(s) 2 skip(s)
- Exec time: [0.01, 3.47] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d:
- Statuses : 2 pass(s) 2 skip(s)
- Exec time: [0.01, 3.41] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.00, 1.10] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.00, 1.08] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c:
- Statuses : 3 skip(s)
- Exec time: [0.01, 0.14] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- Statuses : 2 skip(s)
- Exec time: [0.01, 0.15] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a:
- Statuses : 2 pass(s) 3 skip(s)
- Exec time: [0.00, 3.80] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b:
- Statuses : 2 pass(s) 3 skip(s)
- Exec time: [0.00, 3.39] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.01, 3.36] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 3.44] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- Statuses : 4 pass(s) 3 skip(s)
- Exec time: [0.00, 6.08] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b:
- Statuses : 4 pass(s) 3 skip(s)
- Exec time: [0.00, 5.20] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- Statuses : 2 pass(s) 3 skip(s)
- Exec time: [0.01, 3.48] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d:
- Statuses : 2 pass(s) 2 skip(s)
- Exec time: [0.01, 3.46] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.00, 14.15] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.00, 13.10] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-c:
- Statuses : 4 pass(s) 1 skip(s)
- Exec time: [0.07, 13.02] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [1.22, 13.09] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-a:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.00, 14.51] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.00, 13.41] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-c:
- Statuses : 4 pass(s) 1 skip(s)
- Exec time: [0.07, 13.29] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [1.15, 13.11] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.00, 14.01] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.00, 12.97] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-c:
- Statuses : 4 pass(s) 1 skip(s)
- Exec time: [0.06, 12.90] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [1.16, 12.98] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [0.00, 14.16] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [0.00, 13.17] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-c:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.02, 13.07] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.02, 12.98] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- Statuses : 3 pass(s)
- Exec time: [0.00, 14.27] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b:
- Statuses : 3 pass(s)
- Exec time: [0.00, 13.05] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-c:
- Statuses : 2 pass(s)
- Exec time: [1.19, 13.16] s
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
- Statuses : 2 pass(s)
- Exec time: [1.22, 13.09] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.00, 0.18] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.00, 0.17] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- Statuses : 5 skip(s)
- Exec time: [0.02, 0.06] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.02, 0.04] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- Statuses : 2 pass(s) 3 skip(s)
- Exec time: [0.00, 2.86] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- Statuses : 2 pass(s) 3 skip(s)
- Exec time: [0.00, 2.42] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.01, 2.54] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 2.53] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [0.00, 14.22] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [0.00, 13.17] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.07, 13.17] s
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d:
- Statuses : 3 pass(s)
- Exec time: [1.21, 13.17] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.00, 0.21] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.00, 0.20] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c:
- Statuses : 5 skip(s)
- Exec time: [0.02, 0.07] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.02, 0.04] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
- Statuses : 4 pass(s) 1 skip(s)
- Exec time: [0.00, 5.85] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- Statuses : 4 pass(s) 1 skip(s)
- Exec time: [0.00, 4.89] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.15, 3.37] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.17, 3.40] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [0.00, 14.23] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [0.00, 12.89] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.02, 12.96] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.02, 13.01] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-a:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.00, 15.57] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-b:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.00, 15.94] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-c:
- Statuses : 4 pass(s) 1 skip(s)
- Exec time: [0.07, 12.78] s
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [1.15, 12.88] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.00, 0.15] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- Statuses : 1 pass(s) 6 skip(s)
- Exec time: [0.00, 0.13] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c:
- Statuses : 5 skip(s)
- Exec time: [0.02, 0.05] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
- Statuses : 4 skip(s)
- Exec time: [0.02, 0.04] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- Statuses : 3 pass(s) 3 skip(s)
- Exec time: [0.00, 5.62] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b:
- Statuses : 3 pass(s) 3 skip(s)
- Exec time: [0.00, 4.94] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
- Statuses : 1 pass(s) 3 skip(s)
- Exec time: [0.02, 2.30] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d:
- Statuses : 1 pass(s) 2 skip(s)
- Exec time: [0.01, 2.30] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a:
- Statuses : 5 pass(s) 2 skip(s)
- Exec time: [0.00, 13.96] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- Statuses : 5 pass(s) 2 skip(s)
- Exec time: [0.00, 13.14] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c:
- Statuses : 3 pass(s) 2 skip(s)
- Exec time: [0.02, 13.09] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.02, 13.16] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a:
- Statuses : 6 pass(s)
- Exec time: [0.00, 13.92] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b:
- Statuses : 6 pass(s)
- Exec time: [0.00, 13.08] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c:
- Statuses : 4 pass(s)
- Exec time: [1.19, 12.88] s
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d:
- Statuses : 4 pass(s)
- Exec time: [1.21, 12.93] s
Known issues
------------
Here are the changes found in IGTPW_11635_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8411])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-17/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8411])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-4/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#8411])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#11078])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-7/igt@device_reset@cold-reset-bound.html
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#11078])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-4/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@all-busy-idle-check-all:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#8414])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-4/igt@drm_fdinfo@all-busy-idle-check-all.html
* igt@drm_fdinfo@busy-idle@vcs1:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#8414]) +9 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-18/igt@drm_fdinfo@busy-idle@vcs1.html
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][24] ([i915#7742])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-4/igt@drm_fdinfo@idle@rcs0.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#8414]) +16 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-4/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][26] -> [FAIL][27] ([i915#7742])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15289/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_bad_reloc@negative-reloc:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#3281]) +11 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-6/igt@gem_bad_reloc@negative-reloc.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#7697])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-13/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#3555] / [i915#9323]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-14/igt@gem_ccs@block-copy-compressed.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#7697])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-5/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#7697])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-8/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_compute@compute-square:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#9310])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-4/igt@gem_compute@compute-square.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#6335])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#8555])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-3/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#8555]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#8555])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@hostile:
- shard-dg1: NOTRUN -> [FAIL][38] ([i915#11980])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-17/igt@gem_ctx_persistence@hostile.html
- shard-tglu: [PASS][39] -> [FAIL][40] ([i915#11980])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15289/shard-tglu-7/igt@gem_ctx_persistence@hostile.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-10/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_sseu@engines:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#280])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-17/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#280])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-3/igt@gem_ctx_sseu@invalid-sseu.html
- shard-tglu: NOTRUN -> [SKIP][43] ([i915#280]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-9/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#280])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-11/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][45] -> [FAIL][46] ([i915#5784]) +1 other test fail
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15289/shard-dg1-17/igt@gem_eio@unwedge-stress.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-14/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4812])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-1/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4771])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-1/igt@gem_exec_balancer@bonded-sync.html
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4771])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-13/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@hog:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4812]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-18/igt@gem_exec_balancer@hog.html
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4812])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-1/igt@gem_exec_balancer@hog.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#6344])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-10/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][53] ([i915#11965]) +3 other tests fail
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-1/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fair@basic-none:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#3539] / [i915#4852]) +7 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-17/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-glk: NOTRUN -> [FAIL][55] ([i915#2842]) +1 other test fail
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][56] -> [FAIL][57] ([i915#2842])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15289/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#3539])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-17/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][59] ([i915#2842])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3539] / [i915#4852]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-8/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3281]) +7 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-4/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-range-active:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3281]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-6/igt@gem_exec_reloc@basic-range-active.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3281]) +12 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-17/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4537] / [i915#4812]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-11/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#7276])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-rkl: NOTRUN -> [ABORT][66] ([i915#7975] / [i915#8213])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-6/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4860]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4860])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4860])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#2190])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-6/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#4613] / [i915#7582])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#4613]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#4565])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-15/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@random:
- shard-glk: NOTRUN -> [SKIP][74] ([i915#4613]) +5 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-glk6/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][75] ([i915#4613]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-8/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_media_vme:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#284])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-15/igt@gem_media_vme.html
* igt@gem_mmap@bad-offset:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4083]) +9 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-14/igt@gem_mmap@bad-offset.html
* igt@gem_mmap_gtt@basic-short:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4077]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-8/igt@gem_mmap_gtt@basic-short.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4077]) +9 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-4/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_gtt@medium-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4077]) +11 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-17/igt@gem_mmap_gtt@medium-copy-odd.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4083]) +4 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-10/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4083])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-2/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#3282]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#3282]) +6 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-3/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-snb: NOTRUN -> [WARN][85] ([i915#2658])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-snb6/igt@gem_pwrite@basic-exhaustion.html
- shard-glk: NOTRUN -> [WARN][86] ([i915#2658])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-glk8/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-self:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#3282]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-16/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4270]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-6/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#4270]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-8/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#4270]) +5 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-13/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#4270]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-5/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#4270]) +3 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#3282]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-7/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#5190] / [i915#8428]) +9 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-10/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#4079]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-13/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#4079])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#4079])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#4885])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-15/igt@gem_softpin@evict-snoop.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#4879])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-14/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#3297]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-11/igt@gem_userptr_blits@coherency-sync.html
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#3297]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#3297] / [i915#3323])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-7/igt@gem_userptr_blits@dmabuf-sync.html
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#3323])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-1/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#3297] / [i915#4880])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#3297] / [i915#4880]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#3297])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#3297]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#2527]) +4 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-17/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#2527] / [i915#2856]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-10/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@shadow-peek:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#2856])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-1/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#2527]) +3 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-2/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#2856]) +4 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-4/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@load:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#6227])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-15/igt@i915_module_load@load.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#8436])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-1/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][115] ([i915#8399]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-3/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: NOTRUN -> [FAIL][116] ([i915#3591])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rps@basic-api:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#11681] / [i915#6621])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-11/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#11681] / [i915#6621])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-16/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#11681])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-8/igt@i915_pm_rps@thresholds-park.html
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#11681])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-14/igt@i915_pm_rps@thresholds-park.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#6245])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-7/igt@i915_query@hwconfig_table.html
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#6245])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-3/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@mock@memory_region:
- shard-tglu: NOTRUN -> [DMESG-WARN][123] ([i915#9311])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-8/igt@i915_selftest@mock@memory_region.html
- shard-glk: NOTRUN -> [DMESG-WARN][124] ([i915#9311])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-glk8/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][125] ([i915#7443])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-6/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#4212])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-8/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#4212]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#3826])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#3826])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#4212]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-14/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-d-hdmi-a-1:
- shard-tglu: [PASS][131] -> [FAIL][132] ([i915#10991])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15289/shard-tglu-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-hdmi-a-1.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-hdmi-a-1.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#8709]) +7 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#8709]) +11 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#1769] / [i915#3555])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#1769] / [i915#3555]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][137] ([i915#5956])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-4.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-snb: [PASS][138] -> [FAIL][139] ([i915#5956])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15289/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#5286]) +6 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#5286]) +5 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-10/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#5286])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#4538] / [i915#5286]) +6 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#3638]) +5 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-3/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-180:
- shard-mtlp: [PASS][145] -> [ABORT][146] ([i915#10354]) +1 other test abort
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15289/shard-mtlp-7/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-4/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#3638]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-16/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#5190]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#4538] / [i915#5190]) +9 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#6187])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-snb: NOTRUN -> [SKIP][151] +30 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-snb7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#4538]) +8 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_joiner@basic-force-joiner:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#10656])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-5/igt@kms_big_joiner@basic-force-joiner.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#10656])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-15/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_big_joiner@invalid-modeset-force-joiner:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#10656])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-6/igt@kms_big_joiner@invalid-modeset-force-joiner.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#12042]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-9/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#6095]) +107 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#12042]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#6095]) +73 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#6095]) +11 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-7/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#12042]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#10307] / [i915#6095]) +160 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#6095]) +39 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#12042]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-14/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#3742])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-15/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#3742])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-9/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#11616] / [i915#7213])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#3742])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-2/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#4087]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-negative:
- shard-mtlp: NOTRUN -> [SKIP][171] +5 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-4/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#7828]) +8 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-2/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#7828]) +6 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-2/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#7828]) +7 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#7828]) +10 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#7828]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][177] ([i915#7173]) +1 other test timeout
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@content-type-change:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#9424])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-13/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#3299])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-13/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#3299])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3116])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#3116] / [i915#3299])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-6/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-6/igt@kms_content_protection@legacy.html
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#7118] / [i915#9424]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-4/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@type1:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#7116] / [i915#9424])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-17/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#3555]) +6 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#11453]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#11453])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#11453])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-16/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#11453]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#11453] / [i915#3359])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#9809]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#4103] / [i915#4213]) +2 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#4103])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#4103] / [i915#4213]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#9723])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#9723])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#8588])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-8/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#3804])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#1257])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-10/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-basic:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#3840]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-14/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#3840])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-13/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#3840]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-8/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#3840]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-5/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#3840] / [i915#9053])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#3469]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-5/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#3469])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#4854])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-16/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#1839])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-18/igt@kms_feature_discovery@display-3x.html
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#1839]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-3/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#9337])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-13/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#3637]) +10 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][214] +21 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#9934]) +6 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-16/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][216] +26 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#8381])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-18/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@wf_vblank-ts-check@a-vga1:
- shard-snb: [PASS][218] -> [FAIL][219] ([i915#2122])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15289/shard-snb6/igt@kms_flip@wf_vblank-ts-check@a-vga1.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-snb7/igt@kms_flip@wf_vblank-ts-check@a-vga1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#2672])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#2587] / [i915#2672]) +5 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#2672]) +5 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#2587] / [i915#2672]) +4 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8810])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#2672]) +3 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#8708]) +24 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-snb: [PASS][227] -> [SKIP][228]
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15289/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#5354]) +41 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#1825]) +4 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2: [PASS][231] -> [FAIL][232] ([i915#6880])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15289/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#5439]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#3458]) +17 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][235] +64 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#10055])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][237] +80 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#3458]) +29 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#8708]) +25 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#3023]) +15 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#8708]) +2 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#1825]) +32 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8228]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-18/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8228]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-9/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-swap:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#8228])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-5/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8228]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-10/igt@kms_hdr@static-toggle.html
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8228]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-5/igt@kms_hdr@static-toggle.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#4816])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#4816])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#6301])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-8/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#8821])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#8806])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-11/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][253] -> [FAIL][254] ([i915#8292])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15289/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-8/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#9812])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-7/igt@kms_pm_backlight@fade.html
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#5354])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-5/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#9685])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-10/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#3361])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-16/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#9685])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-13/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#9519]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][261] -> [SKIP][262] ([i915#9519])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15289/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][263] -> [SKIP][264] ([i915#9519]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15289/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#9519])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#9519])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#6524]) +2 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-16/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#9808]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-4/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf@psr2-pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#11520]) +6 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-17/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#11520]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-3/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#11520]) +4 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-10/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#11520]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#9683])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#9683]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-3/igt@kms_psr2_su@page_flip-p010.html
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#9683])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#4348])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#1072] / [i915#9673] / [i915#9732]) +4 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-11/igt@kms_psr@fbc-psr2-cursor-render.html
* igt@kms_psr@fbc-psr2-primary-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#9732]) +19 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-7/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#9688]) +2 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-7/igt@kms_psr@fbc-psr2-sprite-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#1072] / [i915#9732]) +21 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-2/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#1072] / [i915#9732]) +33 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-14/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][282] +423 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-glk8/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#1072] / [i915#9732]) +17 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-5/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#9685])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#11131] / [i915#5190])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#5289])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#3555]) +2 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#3555]) +3 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#8623])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-14/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#8623])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [PASS][291] -> [FAIL][292] ([i915#9196])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15289/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#9906]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-3/igt@kms_vrr@flip-basic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#9906])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#11920])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-16/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-dg1: NOTRUN -> [SKIP][296] ([i915#9906])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-17/igt@kms_vrr@max-min.html
- shard-tglu: NOTRUN -> [SKIP][297] ([i915#9906])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-6/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#8808] / [i915#9906])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-mtlp-6/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#2437])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-2/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#2437] / [i915#9412])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#2437] / [i915#9412]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-15/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-glk: NOTRUN -> [SKIP][302] ([i915#2437])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-glk6/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#2433])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][304] -> [FAIL][305] ([i915#4349]) +2 other tests fail
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15289/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@cpu-hotplug:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#8850])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-4/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][307] ([i915#6806])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-7/igt@perf_pmu@frequency@gt0.html
- shard-dg1: NOTRUN -> [FAIL][308] ([i915#6806])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg1-17/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu: NOTRUN -> [SKIP][309] ([i915#8516]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-tglu-5/igt@perf_pmu@rc6-all-gts.html
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#8516])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-dg2-10/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#3291] / [i915#3708])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/shard-rkl-5/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#3708]) +1 other test skip
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11635/index.html
[-- Attachment #2: Type: text/html, Size: 113568 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 0/3] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs
2024-08-26 4:56 [PATCH i-g-t 0/3] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
` (6 preceding siblings ...)
2024-08-27 4:05 ` ✗ Fi.CI.IGT: " Patchwork
@ 2024-08-30 7:05 ` Sharma, Swati2
7 siblings, 0 replies; 10+ messages in thread
From: Sharma, Swati2 @ 2024-08-30 7:05 UTC (permalink / raw)
To: Naladala Ramanaidu, igt-dev; +Cc: ankit.k.nautiyal, kunal1.joshi, karthik.b.s
Hi Ramanaidu,
There seems to be crashes with your PW. Please fix that.
On 26-Aug-24 10:26 AM, Naladala Ramanaidu wrote:
> It will retry scaling operation on next valid output if current output
> is unsupported.
>
> Naladala Ramanaidu (3):
> tests/kms_plane_scaling: Update scaling functions to return error
> codes
> tests/kms_plane_scaling: Update Multi-plane scaling functions
> HAX patch do not merge
>
> tests/intel-ci/fast-feedback.testlist | 212 ++++-----------
> tests/intel-ci/xe-fast-feedback.testlist | 319 ++++-------------------
> tests/kms_plane_scaling.c | 299 ++++++++++++---------
> 3 files changed, 268 insertions(+), 562 deletions(-)
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 1/3] tests/kms_plane_scaling: Update scaling functions to return error codes
2024-08-26 4:56 ` [PATCH i-g-t 1/3] tests/kms_plane_scaling: Update scaling functions to return error codes Naladala Ramanaidu
@ 2024-08-30 7:09 ` Sharma, Swati2
0 siblings, 0 replies; 10+ messages in thread
From: Sharma, Swati2 @ 2024-08-30 7:09 UTC (permalink / raw)
To: Naladala Ramanaidu, igt-dev; +Cc: ankit.k.nautiyal, kunal1.joshi, karthik.b.s
On 26-Aug-24 10:26 AM, 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. Add informative logs to indicate when a scaling operation
> is not supported on a specific output.
>
> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
> ---
> tests/kms_plane_scaling.c | 250 +++++++++++++++++++++++---------------
> 1 file changed, 150 insertions(+), 100 deletions(-)
>
> diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
> index 42eb67409..588a9c5f0 100644
> --- a/tests/kms_plane_scaling.c
> +++ b/tests/kms_plane_scaling.c
> @@ -566,7 +566,7 @@ static void cleanup_crtc(data_t *data)
> cleanup_fbs(data);
> }
>
> -static void check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
> +static int check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
> uint32_t pixel_format,
> uint64_t modifier,
> double sf_plane,
> @@ -634,11 +634,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 +706,17 @@ 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 int 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,18 +730,22 @@ 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,
> +static int test_scaler_with_rotation_pipe(data_t *d,
> double sf_plane,
> bool is_clip_clamp,
> bool is_upscale,
> @@ -755,6 +756,7 @@ static void test_scaler_with_rotation_pipe(data_t *d,
> unsigned format = DRM_FORMAT_XRGB8888;
> uint64_t modifier = DRM_FORMAT_MOD_LINEAR;
> igt_plane_t *plane;
> + uint32_t ret;
>
> cleanup_crtc(d);
>
> @@ -768,18 +770,21 @@ 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,
> +static int test_scaler_with_pixel_format_pipe(data_t *d, double sf_plane,
> bool is_clip_clamp,
> bool is_upscale,
> enum pipe pipe,
> @@ -788,6 +793,7 @@ static void test_scaler_with_pixel_format_pipe(data_t *d, double sf_plane,
> 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 +816,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 +1337,7 @@ static data_t data;
> igt_main_args("", long_opts, help_str, opt_handler, &data)
> {
> enum pipe pipe;
> + uint32_t ret;
>
> igt_fixture {
> data.drm_fd = drm_open_driver_master(DRIVER_ANY);
> @@ -1343,21 +1354,28 @@ 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) {
> + 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)
> + 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;
> + igt_info("Required Scaling operation not supported on %s trying on next output\n",
> + igt_output_name(output));
> }
> - break;
> + igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> + "Unsupported scaling operation in driver with return value %s\n",
> + (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
> + igt_assert_eq(ret, 0);
> }
> }
> }
> @@ -1367,21 +1385,27 @@ 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)) {
> + igt_info(" Trying on %s\n", igt_output_name(output));
> + 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;
> + igt_info("Required Scaling operation not supported on %s trying on next output\n",
> + igt_output_name(output));
Add separate patch for additional debug prints. This patch should be
restricted to error codes.
Same feedback implies to next patch.
> }
> - break;
> + igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> + "Unsupported scaling operation in driver with return value %s\n",
> + (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
> + igt_assert_eq(ret, 0);
> }
> }
> }
> @@ -1391,21 +1415,27 @@ 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) {
> + 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)
> + 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;
> + igt_info("Required Scaling operation not supported on %s trying on next valid output\n",
> + igt_output_name(output));
> }
> - break;
> + igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> + "Unsupported scaling operation in driver with return value %s\n",
> + (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
> + igt_assert_eq(ret, 0);
> }
> }
> }
> @@ -1414,19 +1444,25 @@ 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)) {
> -
> - test_scaler_with_pixel_format_pipe(&data, 0.0, true,
> - false, pipe,
> - output);
> + 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)
> + continue;
> + ret = test_scaler_with_pixel_format_pipe(&data, 0.0, true,
> + false, pipe,
> + output);
> + if (ret == 0)
> + break;
> + igt_info("Required Scaling operation not supported on %s trying on next valid output\n",
> + igt_output_name(output));
> }
> - break;
> + igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> + "Unsupported scaling operation in driver with return value %s\n",
> + (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
> + igt_assert_eq(ret, 0);
> }
> }
> }
> @@ -1434,19 +1470,26 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> 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) {
> + 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)
> + continue;
> + ret = test_scaler_with_rotation_pipe(&data, 0.0, true,
> + false, pipe,
> + output);
> + if (ret == 0)
> + break;
> + igt_info("Required Scaling operation not supported on %s trying on next valid output\n",
> + igt_output_name(output));
>
> - test_scaler_with_rotation_pipe(&data, 0.0, true,
> - false, pipe,
> - output);
> }
> - break;
> + igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> + "Unsupported scaling operation in driver with return value %s\n",
> + (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
> + igt_assert_eq(ret, 0);
> }
> }
> }
> @@ -1454,18 +1497,25 @@ 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-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> - test_scaler_with_modifier_pipe(&data, 0.0, true,
> - false, pipe,
> - output);
> + 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)
> + continue;
> + ret = test_scaler_with_modifier_pipe(&data, 0.0, true,
> + false, pipe,
> + output);
> + if (ret == 0)
> + break;
> + igt_info("Required Scaling operation not supported on %s trying on next valid output\n",
> + igt_output_name(output));
> }
> - break;
> + igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
> + "Unsupported scaling operation in driver with return value %s\n",
> + (ret == -EINVAL) ? "-EINVAL" : "-ERANGE");
> + igt_assert_eq(ret, 0);
> }
> }
> }
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-08-30 7:09 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-26 4:56 [PATCH i-g-t 0/3] tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Naladala Ramanaidu
2024-08-26 4:56 ` [PATCH i-g-t 1/3] tests/kms_plane_scaling: Update scaling functions to return error codes Naladala Ramanaidu
2024-08-30 7:09 ` Sharma, Swati2
2024-08-26 4:56 ` [PATCH i-g-t 2/3] tests/kms_plane_scaling: Update Multi-plane scaling functions Naladala Ramanaidu
2024-08-26 4:56 ` [PATCH i-g-t 3/3] HAX patch do not merge Naladala Ramanaidu
2024-08-26 6:22 ` ✗ CI.xeBAT: failure for tests/kms_plane_scaling: Update scaling functions to retry on valid outputs Patchwork
2024-08-26 6:32 ` ✓ Fi.CI.BAT: success " Patchwork
2024-08-26 7:23 ` ✗ CI.xeFULL: failure " Patchwork
2024-08-27 4:05 ` ✗ Fi.CI.IGT: " Patchwork
2024-08-30 7:05 ` [PATCH i-g-t 0/3] " Sharma, Swati2
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox