* [PATCH 1/2] tests/kms_plane_scaling: Pass display to get_num_scalers()
@ 2024-08-14 18:53 Rob Clark
2024-08-19 18:20 ` Kamil Konieczny
0 siblings, 1 reply; 9+ messages in thread
From: Rob Clark @ 2024-08-14 18:53 UTC (permalink / raw)
To: igt-dev; +Cc: Rob Clark
From: Rob Clark <robdclark@chromium.org>
Prep for next patch. The next commit will need the display to figure
out the # of scalers. This commit has no functional change, just
plumbing the extra parameter everywhere.
Signed-off-by: Rob Clark <robdclark@chromium.org>
---
lib/igt_kms.c | 5 +++--
lib/igt_kms.h | 2 +-
tests/kms_plane_scaling.c | 24 ++++++++++++------------
3 files changed, 16 insertions(+), 15 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index e030b35a6051..99cdeeb76033 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6650,17 +6650,18 @@ int igt_get_dp_mst_connector_id(igt_output_t *output)
/**
* get_num_scalers:
- * @drm_fd: drm file descriptor
+ * @display: the display
* @pipe: display pipe
*
* Returns: Number of scalers supported per pipe.
*/
-int get_num_scalers(int drm_fd, enum pipe pipe)
+int get_num_scalers(igt_display_t *display, enum pipe pipe)
{
char buf[8120];
char *start_loc1, *start_loc2;
int dir, res;
int num_scalers = 0;
+ int drm_fd = display->drm_fd;
char dest[20] = ":pipe ";
strcat(dest, kmstest_pipe_name(pipe));
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index e8582a45b53e..25ba509164e3 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1223,6 +1223,6 @@ bool igt_parse_mode_string(const char *mode_string, drmModeModeInfo *mode);
bool intel_pipe_output_combo_valid(igt_display_t *display);
bool igt_check_output_is_dp_mst(igt_output_t *output);
int igt_get_dp_mst_connector_id(igt_output_t *output);
-int get_num_scalers(int drm_fd, enum pipe pipe);
+int get_num_scalers(igt_display_t *display, enum pipe pipe);
#endif /* __IGT_KMS_H__ */
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 90bfb004773b..42eb67409899 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -1080,8 +1080,8 @@ static void test_scaler_with_multi_pipe_plane(data_t *d)
igt_output_set_pipe(output1, pipe1);
igt_output_set_pipe(output2, pipe2);
- igt_require(get_num_scalers(d->drm_fd, pipe1) >= 2);
- igt_require(get_num_scalers(d->drm_fd, pipe2) >= 2);
+ igt_require(get_num_scalers(display, pipe1) >= 2);
+ igt_require(get_num_scalers(display, pipe2) >= 2);
plane[0] = igt_output_get_plane(output1, 0);
igt_require(plane[0]);
@@ -1169,7 +1169,7 @@ static void invalid_parameter_tests(data_t *d)
igt_output_set_pipe(output, pipe);
plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
- igt_require(get_num_scalers(d->drm_fd, pipe) >= 1);
+ igt_require(get_num_scalers(&d->display, pipe) >= 1);
igt_create_fb(d->drm_fd, 256, 256,
DRM_FORMAT_XRGB8888,
@@ -1346,7 +1346,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
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.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1370,7 +1370,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
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.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1394,7 +1394,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
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.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1417,7 +1417,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
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.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1437,7 +1437,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
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.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1457,7 +1457,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
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.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1477,7 +1477,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
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.drm_fd, pipe) < 2)
+ if (get_num_scalers(&data.display, pipe) < 2)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1502,7 +1502,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_valid_output_on_pipe(&data.display, pipe, output) {
drmModeModeInfo *mode = NULL;
- if (get_num_scalers(data.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
/*
* Need to find mode with lowest vrefresh else
@@ -1527,7 +1527,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (!pipe_output_combo_valid(&data.display, pipe, output))
continue;
- if (get_num_scalers(data.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s-invalid-num-scalers",
--
2.46.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 1/2] tests/kms_plane_scaling: Pass display to get_num_scalers()
2024-08-14 18:53 [PATCH 1/2] " Rob Clark
@ 2024-08-19 18:20 ` Kamil Konieczny
0 siblings, 0 replies; 9+ messages in thread
From: Kamil Konieczny @ 2024-08-19 18:20 UTC (permalink / raw)
To: igt-dev; +Cc: Rob Clark, Rob Clark
Hi Rob,
On 2024-08-14 at 11:53:38 -0700, Rob Clark wrote:
> From: Rob Clark <robdclark@chromium.org>
>
> Prep for next patch. The next commit will need the display to figure
> out the # of scalers. This commit has no functional change, just
-------- ^
Please use word 'number' here. With this
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Regards,
Kamil
> plumbing the extra parameter everywhere.
>
> Signed-off-by: Rob Clark <robdclark@chromium.org>
> ---
> lib/igt_kms.c | 5 +++--
> lib/igt_kms.h | 2 +-
> tests/kms_plane_scaling.c | 24 ++++++++++++------------
> 3 files changed, 16 insertions(+), 15 deletions(-)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index e030b35a6051..99cdeeb76033 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -6650,17 +6650,18 @@ int igt_get_dp_mst_connector_id(igt_output_t *output)
>
> /**
> * get_num_scalers:
> - * @drm_fd: drm file descriptor
> + * @display: the display
> * @pipe: display pipe
> *
> * Returns: Number of scalers supported per pipe.
> */
> -int get_num_scalers(int drm_fd, enum pipe pipe)
> +int get_num_scalers(igt_display_t *display, enum pipe pipe)
> {
> char buf[8120];
> char *start_loc1, *start_loc2;
> int dir, res;
> int num_scalers = 0;
> + int drm_fd = display->drm_fd;
> char dest[20] = ":pipe ";
>
> strcat(dest, kmstest_pipe_name(pipe));
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index e8582a45b53e..25ba509164e3 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -1223,6 +1223,6 @@ bool igt_parse_mode_string(const char *mode_string, drmModeModeInfo *mode);
> bool intel_pipe_output_combo_valid(igt_display_t *display);
> bool igt_check_output_is_dp_mst(igt_output_t *output);
> int igt_get_dp_mst_connector_id(igt_output_t *output);
> -int get_num_scalers(int drm_fd, enum pipe pipe);
> +int get_num_scalers(igt_display_t *display, enum pipe pipe);
>
> #endif /* __IGT_KMS_H__ */
> diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
> index 90bfb004773b..42eb67409899 100644
> --- a/tests/kms_plane_scaling.c
> +++ b/tests/kms_plane_scaling.c
> @@ -1080,8 +1080,8 @@ static void test_scaler_with_multi_pipe_plane(data_t *d)
> igt_output_set_pipe(output1, pipe1);
> igt_output_set_pipe(output2, pipe2);
>
> - igt_require(get_num_scalers(d->drm_fd, pipe1) >= 2);
> - igt_require(get_num_scalers(d->drm_fd, pipe2) >= 2);
> + igt_require(get_num_scalers(display, pipe1) >= 2);
> + igt_require(get_num_scalers(display, pipe2) >= 2);
>
> plane[0] = igt_output_get_plane(output1, 0);
> igt_require(plane[0]);
> @@ -1169,7 +1169,7 @@ static void invalid_parameter_tests(data_t *d)
> igt_output_set_pipe(output, pipe);
> plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
>
> - igt_require(get_num_scalers(d->drm_fd, pipe) >= 1);
> + igt_require(get_num_scalers(&d->display, pipe) >= 1);
>
> igt_create_fb(d->drm_fd, 256, 256,
> DRM_FORMAT_XRGB8888,
> @@ -1346,7 +1346,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> 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.drm_fd, pipe) < 1)
> + if (get_num_scalers(&data.display, pipe) < 1)
> continue;
>
> igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> @@ -1370,7 +1370,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> 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.drm_fd, pipe) < 1)
> + if (get_num_scalers(&data.display, pipe) < 1)
> continue;
>
> igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> @@ -1394,7 +1394,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> 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.drm_fd, pipe) < 1)
> + if (get_num_scalers(&data.display, pipe) < 1)
> continue;
>
> igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> @@ -1417,7 +1417,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> 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.drm_fd, pipe) < 1)
> + if (get_num_scalers(&data.display, pipe) < 1)
> continue;
>
> igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> @@ -1437,7 +1437,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> 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.drm_fd, pipe) < 1)
> + if (get_num_scalers(&data.display, pipe) < 1)
> continue;
>
> igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> @@ -1457,7 +1457,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> 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.drm_fd, pipe) < 1)
> + if (get_num_scalers(&data.display, pipe) < 1)
> continue;
>
> igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> @@ -1477,7 +1477,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> 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.drm_fd, pipe) < 2)
> + if (get_num_scalers(&data.display, pipe) < 2)
> continue;
>
> igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
> @@ -1502,7 +1502,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> for_each_valid_output_on_pipe(&data.display, pipe, output) {
> drmModeModeInfo *mode = NULL;
>
> - if (get_num_scalers(data.drm_fd, pipe) < 1)
> + if (get_num_scalers(&data.display, pipe) < 1)
> continue;
> /*
> * Need to find mode with lowest vrefresh else
> @@ -1527,7 +1527,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> for_each_pipe_with_valid_output(&data.display, pipe, output) {
> if (!pipe_output_combo_valid(&data.display, pipe, output))
> continue;
> - if (get_num_scalers(data.drm_fd, pipe) < 1)
> + if (get_num_scalers(&data.display, pipe) < 1)
> continue;
>
> igt_dynamic_f("pipe-%s-%s-invalid-num-scalers",
> --
> 2.46.0
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 1/2] tests/kms_plane_scaling: Pass display to get_num_scalers()
@ 2024-08-19 20:25 Rob Clark
2024-08-19 20:25 ` [PATCH 2/2] tests/kms_plane_scaling: Improve msm support Rob Clark
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Rob Clark @ 2024-08-19 20:25 UTC (permalink / raw)
To: igt-dev; +Cc: Rob Clark, Kamil Konieczny
From: Rob Clark <robdclark@chromium.org>
Prep for next patch. The next commit will need the display to figure
out the number of scalers. This commit has no functional change, just
plumbing the extra parameter everywhere.
Signed-off-by: Rob Clark <robdclark@chromium.org>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
lib/igt_kms.c | 5 +++--
lib/igt_kms.h | 2 +-
tests/kms_plane_scaling.c | 24 ++++++++++++------------
3 files changed, 16 insertions(+), 15 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index e030b35a6051..99cdeeb76033 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6650,17 +6650,18 @@ int igt_get_dp_mst_connector_id(igt_output_t *output)
/**
* get_num_scalers:
- * @drm_fd: drm file descriptor
+ * @display: the display
* @pipe: display pipe
*
* Returns: Number of scalers supported per pipe.
*/
-int get_num_scalers(int drm_fd, enum pipe pipe)
+int get_num_scalers(igt_display_t *display, enum pipe pipe)
{
char buf[8120];
char *start_loc1, *start_loc2;
int dir, res;
int num_scalers = 0;
+ int drm_fd = display->drm_fd;
char dest[20] = ":pipe ";
strcat(dest, kmstest_pipe_name(pipe));
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index e8582a45b53e..25ba509164e3 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1223,6 +1223,6 @@ bool igt_parse_mode_string(const char *mode_string, drmModeModeInfo *mode);
bool intel_pipe_output_combo_valid(igt_display_t *display);
bool igt_check_output_is_dp_mst(igt_output_t *output);
int igt_get_dp_mst_connector_id(igt_output_t *output);
-int get_num_scalers(int drm_fd, enum pipe pipe);
+int get_num_scalers(igt_display_t *display, enum pipe pipe);
#endif /* __IGT_KMS_H__ */
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 90bfb004773b..42eb67409899 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -1080,8 +1080,8 @@ static void test_scaler_with_multi_pipe_plane(data_t *d)
igt_output_set_pipe(output1, pipe1);
igt_output_set_pipe(output2, pipe2);
- igt_require(get_num_scalers(d->drm_fd, pipe1) >= 2);
- igt_require(get_num_scalers(d->drm_fd, pipe2) >= 2);
+ igt_require(get_num_scalers(display, pipe1) >= 2);
+ igt_require(get_num_scalers(display, pipe2) >= 2);
plane[0] = igt_output_get_plane(output1, 0);
igt_require(plane[0]);
@@ -1169,7 +1169,7 @@ static void invalid_parameter_tests(data_t *d)
igt_output_set_pipe(output, pipe);
plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
- igt_require(get_num_scalers(d->drm_fd, pipe) >= 1);
+ igt_require(get_num_scalers(&d->display, pipe) >= 1);
igt_create_fb(d->drm_fd, 256, 256,
DRM_FORMAT_XRGB8888,
@@ -1346,7 +1346,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
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.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1370,7 +1370,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
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.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1394,7 +1394,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
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.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1417,7 +1417,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
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.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1437,7 +1437,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
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.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1457,7 +1457,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
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.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1477,7 +1477,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
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.drm_fd, pipe) < 2)
+ if (get_num_scalers(&data.display, pipe) < 2)
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
@@ -1502,7 +1502,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_valid_output_on_pipe(&data.display, pipe, output) {
drmModeModeInfo *mode = NULL;
- if (get_num_scalers(data.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
/*
* Need to find mode with lowest vrefresh else
@@ -1527,7 +1527,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for_each_pipe_with_valid_output(&data.display, pipe, output) {
if (!pipe_output_combo_valid(&data.display, pipe, output))
continue;
- if (get_num_scalers(data.drm_fd, pipe) < 1)
+ if (get_num_scalers(&data.display, pipe) < 1)
continue;
igt_dynamic_f("pipe-%s-%s-invalid-num-scalers",
--
2.46.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/2] tests/kms_plane_scaling: Improve msm support
2024-08-19 20:25 [PATCH 1/2] tests/kms_plane_scaling: Pass display to get_num_scalers() Rob Clark
@ 2024-08-19 20:25 ` Rob Clark
2024-08-20 10:02 ` Kamil Konieczny
2024-08-19 22:28 ` ✓ CI.xeBAT: success for series starting with [1/2] tests/kms_plane_scaling: Pass display to get_num_scalers() Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Rob Clark @ 2024-08-19 20:25 UTC (permalink / raw)
To: igt-dev; +Cc: Rob Clark
From: Rob Clark <robdclark@chromium.org>
This may undercount number of scalars on hw with rgb pipes, but the
scaling on yuv and rgb pipes is functionally equivalent, so for test
coverage this is a good enough approximation.
Signed-off-by: Rob Clark <robdclark@chromium.org>
---
lib/igt_kms.c | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 99cdeeb76033..dd530dbabf89 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6682,6 +6682,25 @@ int get_num_scalers(igt_display_t *display, enum pipe pipe)
igt_assert(start_loc2 = strstr(start_loc1, "num_scalers="));
igt_assert_eq(sscanf(start_loc2, "num_scalers=%d", &num_scalers), 1);
}
+ } else if (is_msm_device(drm_fd)) {
+ igt_plane_t *plane;
+
+ /*
+ * msm devices have dma pipes (no csc, no scaling), rgb
+ * pipes (no csc, has scaling), and vid pipes (has csc,
+ * has scaling), but not all devices have rgb pipes.
+ * We can use the # of pipes that support YUV formats
+ * as a rough approximation of the # of scalars.. it may
+ * undercount on some hw, but it will not overcount
+ */
+ for_each_plane_on_pipe(display, pipe, plane) {
+ for (unsigned i = 0; i < plane->format_mod_count; i++) {
+ if (igt_format_is_yuv(plane->formats[i])) {
+ num_scalers++;
+ break;
+ }
+ }
+ }
}
return num_scalers;
--
2.46.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ CI.xeBAT: success for series starting with [1/2] tests/kms_plane_scaling: Pass display to get_num_scalers()
2024-08-19 20:25 [PATCH 1/2] tests/kms_plane_scaling: Pass display to get_num_scalers() Rob Clark
2024-08-19 20:25 ` [PATCH 2/2] tests/kms_plane_scaling: Improve msm support Rob Clark
@ 2024-08-19 22:28 ` Patchwork
2024-08-19 22:46 ` ✓ Fi.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-08-19 22:28 UTC (permalink / raw)
To: Rob Clark; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 904 bytes --]
== Series Details ==
Series: series starting with [1/2] tests/kms_plane_scaling: Pass display to get_num_scalers()
URL : https://patchwork.freedesktop.org/series/137474/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7978_BAT -> XEIGTPW_11597_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_7978 -> IGTPW_11597
IGTPW_11597: 11597
IGT_7978: 4083a9d8abc80c8a905ffdc20bc76383b1e07e79 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1798-4d24271792fac837e728f7bb6237a94ee46cc76e: 4d24271792fac837e728f7bb6237a94ee46cc76e
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/index.html
[-- Attachment #2: Type: text/html, Size: 1449 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [1/2] tests/kms_plane_scaling: Pass display to get_num_scalers()
2024-08-19 20:25 [PATCH 1/2] tests/kms_plane_scaling: Pass display to get_num_scalers() Rob Clark
2024-08-19 20:25 ` [PATCH 2/2] tests/kms_plane_scaling: Improve msm support Rob Clark
2024-08-19 22:28 ` ✓ CI.xeBAT: success for series starting with [1/2] tests/kms_plane_scaling: Pass display to get_num_scalers() Patchwork
@ 2024-08-19 22:46 ` Patchwork
2024-08-20 5:58 ` ✗ CI.xeFULL: failure " Patchwork
2024-08-20 11:26 ` ✗ Fi.CI.IGT: " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-08-19 22:46 UTC (permalink / raw)
To: Rob Clark; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3082 bytes --]
== Series Details ==
Series: series starting with [1/2] tests/kms_plane_scaling: Pass display to get_num_scalers()
URL : https://patchwork.freedesktop.org/series/137474/
State : success
== Summary ==
CI Bug Log - changes from IGT_7978 -> IGTPW_11597
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/index.html
Participating hosts (41 -> 41)
------------------------------
Additional (1): fi-kbl-8809g
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_11597 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-kbl-8809g: NOTRUN -> [SKIP][1] ([i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-8809g: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/fi-kbl-8809g/igt@gem_lmem_swapping@basic.html
* igt@i915_selftest@live@hangcheck:
- bat-arls-2: [PASS][3] -> [DMESG-WARN][4] ([i915#11349] / [i915#11378])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/bat-arls-2/igt@i915_selftest@live@hangcheck.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/bat-arls-2/igt@i915_selftest@live@hangcheck.html
* igt@kms_force_connector_basic@force-load-detect:
- fi-kbl-8809g: NOTRUN -> [SKIP][5] +30 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/fi-kbl-8809g/igt@kms_force_connector_basic@force-load-detect.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- bat-arls-1: [DMESG-WARN][6] ([i915#11349] / [i915#11378]) -> [PASS][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/bat-arls-1/igt@i915_selftest@live@hangcheck.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/bat-arls-1/igt@i915_selftest@live@hangcheck.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
[i915#11378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11378
[i915#11674]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11674
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7978 -> IGTPW_11597
CI-20190529: 20190529
CI_DRM_15263: 4d24271792fac837e728f7bb6237a94ee46cc76e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11597: 11597
IGT_7978: 4083a9d8abc80c8a905ffdc20bc76383b1e07e79 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/index.html
[-- Attachment #2: Type: text/html, Size: 3875 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ CI.xeFULL: failure for series starting with [1/2] tests/kms_plane_scaling: Pass display to get_num_scalers()
2024-08-19 20:25 [PATCH 1/2] tests/kms_plane_scaling: Pass display to get_num_scalers() Rob Clark
` (2 preceding siblings ...)
2024-08-19 22:46 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-08-20 5:58 ` Patchwork
2024-08-20 11:26 ` ✗ Fi.CI.IGT: " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-08-20 5:58 UTC (permalink / raw)
To: Rob Clark; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 68129 bytes --]
== Series Details ==
Series: series starting with [1/2] tests/kms_plane_scaling: Pass display to get_num_scalers()
URL : https://patchwork.freedesktop.org/series/137474/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7978_full -> XEIGTPW_11597_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11597_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11597_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_11597_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-lnl: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- {shard-bmg}: [SKIP][3] ([Intel XE#1124]) -> [SKIP][4] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs:
- {shard-bmg}: [SKIP][5] ([Intel XE#2251]) -> [SKIP][6] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_hpd@dp-hpd-after-hibernate:
- {shard-bmg}: NOTRUN -> [SKIP][7] +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- {shard-bmg}: [SKIP][8] ([Intel XE#2252]) -> [SKIP][9] +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-3/igt@kms_chamelium_hpd@vga-hpd-fast.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- {shard-bmg}: [FAIL][10] ([Intel XE#1178]) -> [INCOMPLETE][11] +1 other test incomplete
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-2/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-4/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- {shard-bmg}: [SKIP][12] ([Intel XE#2320]) -> [SKIP][13] +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-256x85.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_dsc@dsc-fractional-bpp:
- {shard-bmg}: [SKIP][14] ([Intel XE#2244]) -> [SKIP][15]
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-3/igt@kms_dsc@dsc-fractional-bpp.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- {shard-bmg}: [SKIP][16] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][17] +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
- {shard-bmg}: [FAIL][18] ([Intel XE#2333]) -> [SKIP][19] +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt:
- {shard-bmg}: [SKIP][20] ([Intel XE#2311]) -> [SKIP][21] +5 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw:
- {shard-bmg}: [SKIP][22] ([Intel XE#2313]) -> [SKIP][23] +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html
* igt@kms_plane_multiple@tiling-4@pipe-a-hdmi-a-3:
- {shard-bmg}: [PASS][24] -> [FAIL][25] +1 other test fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-4/igt@kms_plane_multiple@tiling-4@pipe-a-hdmi-a-3.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-1/igt@kms_plane_multiple@tiling-4@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- {shard-bmg}: [SKIP][26] ([Intel XE#2318]) -> [SKIP][27]
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- {shard-bmg}: [SKIP][28] ([Intel XE#2391]) -> [SKIP][29]
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- {shard-bmg}: [SKIP][30] ([Intel XE#2387]) -> [SKIP][31]
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-1/igt@kms_psr2_su@page_flip-xrgb8888.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@psr2-no-drrs:
- {shard-bmg}: [SKIP][32] ([Intel XE#2234]) -> [SKIP][33] +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-3/igt@kms_psr@psr2-no-drrs.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@kms_psr@psr2-no-drrs.html
* igt@kms_writeback@writeback-invalid-parameters:
- {shard-bmg}: [SKIP][34] ([Intel XE#756]) -> [SKIP][35]
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-1/igt@kms_writeback@writeback-invalid-parameters.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@kms_writeback@writeback-invalid-parameters.html
* igt@xe_exec_basic@many-execqueues-null:
- {shard-bmg}: [PASS][36] -> [SKIP][37] +43 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-5/igt@xe_exec_basic@many-execqueues-null.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@xe_exec_basic@many-execqueues-null.html
* igt@xe_exec_basic@multigpu-once-basic-defer-bind:
- {shard-bmg}: [SKIP][38] ([Intel XE#2322]) -> [SKIP][39] +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-3/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
* igt@xe_module_load@reload:
- {shard-bmg}: [WARN][40] ([Intel XE#2357]) -> [FAIL][41]
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-6/igt@xe_module_load@reload.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@xe_module_load@reload.html
Known issues
------------
Here are the changes found in XEIGTPW_11597_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-dg2-set2: [PASS][42] -> [FAIL][43] ([Intel XE#827]) +1 other test fail
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-433/igt@kms_async_flips@alternate-sync-async-flip.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1407])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_joiner@invalid-modeset:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#346])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-1/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#1201] / [Intel XE#367])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-435/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#1201] / [Intel XE#1252])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1399]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#787]) +6 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-a-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#373])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-435/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_content_protection@lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#599])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-5/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#1201] / [Intel XE#455]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#309])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1421])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-8/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-edp1:
- shard-lnl: [PASS][56] -> [FAIL][57] ([Intel XE#1901] / [Intel XE#2028]) +1 other test fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-6/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-1/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-edp1:
- shard-lnl: [PASS][58] -> [FAIL][59] ([Intel XE#1901])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-6/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-1/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1401] / [Intel XE#1745])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1401])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#651])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#656]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1201] / [Intel XE#653]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [PASS][65] -> [DMESG-WARN][66] ([Intel XE#1162])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4:
- shard-dg2-set2: [PASS][67] -> [DMESG-WARN][68] ([Intel XE#2019]) +1 other test dmesg-warn
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4.html
* igt@kms_plane@plane-position-covered:
- shard-lnl: [PASS][69] -> [DMESG-FAIL][70] ([Intel XE#324]) +2 other tests dmesg-fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-5/igt@kms_plane@plane-position-covered.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-5/igt@kms_plane@plane-position-covered.html
* igt@kms_plane@plane-position-covered@pipe-b-plane-1:
- shard-lnl: [PASS][71] -> [DMESG-WARN][72] ([Intel XE#324])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-b-plane-1.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-b-plane-1.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: [PASS][73] -> [SKIP][74] ([Intel XE#455])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-lnl: [PASS][75] -> [SKIP][76] ([Intel XE#870])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-5/igt@kms_pm_backlight@fade-with-suspend.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-3/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][77] -> [FAIL][78] ([Intel XE#718])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_psr@pr-cursor-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#1201] / [Intel XE#929])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-435/igt@kms_psr@pr-cursor-blt.html
* igt@kms_psr@psr2-cursor-plane-move@edp-1:
- shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#1649]) +1 other test fail
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-8/igt@kms_psr@psr2-cursor-plane-move@edp-1.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-3/igt@kms_psr@psr2-cursor-plane-move@edp-1.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-dg2-set2: [PASS][82] -> [FAIL][83] ([Intel XE#771] / [Intel XE#899])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6:
- shard-dg2-set2: [PASS][84] -> [FAIL][85] ([Intel XE#899])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-4:
- shard-dg2-set2: [PASS][86] -> [DMESG-WARN][87] ([Intel XE#1551]) +3 other tests dmesg-warn
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-466/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-4.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-463/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-4.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [PASS][88] -> [TIMEOUT][89] ([Intel XE#1473] / [Intel XE#402])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-beng-threads-large:
- shard-dg2-set2: [PASS][90] -> [INCOMPLETE][91] ([Intel XE#1195] / [Intel XE#1473]) +1 other test incomplete
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@xe_evict@evict-beng-threads-large.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-463/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-dg2-set2: [PASS][92] -> [TIMEOUT][93] ([Intel XE#1473])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-434/igt@xe_evict@evict-mixed-threads-large.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-434/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1392])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-4/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
* igt@xe_exec_compute_mode@once-userptr-invalidate:
- shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#1069])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-6/igt@xe_exec_compute_mode@once-userptr-invalidate.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-2/igt@xe_exec_compute_mode@once-userptr-invalidate.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-dg2-set2: [PASS][97] -> [SKIP][98] ([Intel XE#1192] / [Intel XE#1201])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@xe_live_ktest@xe_dma_buf.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-433/igt@xe_live_ktest@xe_dma_buf.html
- shard-lnl: [PASS][99] -> [SKIP][100] ([Intel XE#1192])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-5/igt@xe_live_ktest@xe_dma_buf.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-5/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_module_load@force-load:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#378])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-3/igt@xe_module_load@force-load.html
* igt@xe_oa@mmio-triggered-reports@rcs-0:
- shard-lnl: NOTRUN -> [FAIL][102] ([Intel XE#2249])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-2/igt@xe_oa@mmio-triggered-reports@rcs-0.html
* igt@xe_pm@s2idle-exec-after:
- shard-lnl: [PASS][103] -> [FAIL][104] ([Intel XE#2028]) +5 other tests fail
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-6/igt@xe_pm@s2idle-exec-after.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-1/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s4-basic-exec:
- shard-lnl: [PASS][105] -> [ABORT][106] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-3/igt@xe_pm@s4-basic-exec.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-2/igt@xe_pm@s4-basic-exec.html
#### Possible fixes ####
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-lnl: [FAIL][107] ([Intel XE#1701]) -> [PASS][108] +1 other test pass
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-5/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-5/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- {shard-bmg}: [FAIL][109] ([Intel XE#1426]) -> [PASS][110] +1 other test pass
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-6/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-lnl: [FAIL][111] ([Intel XE#1426]) -> [PASS][112] +3 other tests pass
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][113] ([Intel XE#1426]) -> [PASS][114] +1 other test pass
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-lnl: [FAIL][115] ([Intel XE#1659]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-d-dp-2:
- {shard-bmg}: [FAIL][117] ([Intel XE#2436]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-d-dp-2.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-d-dp-2.html
* igt@kms_cursor_crc@cursor-suspend:
- {shard-bmg}: [INCOMPLETE][119] -> [PASS][120] +5 other tests pass
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-6/igt@kms_cursor_crc@cursor-suspend.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-6/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- {shard-bmg}: [FAIL][121] -> [PASS][122] +1 other test pass
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-lnl: [FAIL][123] ([Intel XE#2028]) -> [PASS][124] +5 other tests pass
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_plane@pixel-format@pipe-b-plane-0:
- {shard-bmg}: [DMESG-WARN][125] ([Intel XE#877]) -> [PASS][126] +4 other tests pass
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-4/igt@kms_plane@pixel-format@pipe-b-plane-0.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-1/igt@kms_plane@pixel-format@pipe-b-plane-0.html
* igt@kms_plane@plane-position-hole@pipe-b-plane-1:
- shard-lnl: [DMESG-WARN][127] ([Intel XE#324]) -> [PASS][128] +3 other tests pass
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-4/igt@kms_plane@plane-position-hole@pipe-b-plane-1.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-8/igt@kms_plane@plane-position-hole@pipe-b-plane-1.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-lnl: [SKIP][129] ([Intel XE#870]) -> [PASS][130] +1 other test pass
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-5/igt@kms_pm_backlight@fade-with-dpms.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-2/igt@kms_pm_backlight@fade-with-dpms.html
* igt@xe_evict@evict-mixed-many-threads-small:
- {shard-bmg}: [TIMEOUT][131] ([Intel XE#1473]) -> [PASS][132] +1 other test pass
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_reset@parallel-gt-reset:
- {shard-bmg}: [TIMEOUT][133] ([Intel XE#2105]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-1/igt@xe_exec_reset@parallel-gt-reset.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-bmg-5/igt@xe_exec_reset@parallel-gt-reset.html
- shard-dg2-set2: [INCOMPLETE][135] ([Intel XE#2105]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@xe_exec_reset@parallel-gt-reset.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [SKIP][137] ([Intel XE#1192] / [Intel XE#1201]) -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@xe_live_ktest@xe_bo.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-466/igt@xe_live_ktest@xe_bo.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [DMESG-WARN][139] ([Intel XE#1551] / [Intel XE#569]) -> [PASS][140]
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-433/igt@xe_pm@s3-basic-exec.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-466/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: [ABORT][141] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][142]
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-lnl-5/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-dg2-set2: [DMESG-WARN][143] ([Intel XE#2019]) -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@xe_pm@s4-vm-bind-prefetch.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-435/igt@xe_pm@s4-vm-bind-prefetch.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: [SKIP][145] ([Intel XE#623]) -> [SKIP][146] ([Intel XE#1201] / [Intel XE#623])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-466/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: [SKIP][147] ([Intel XE#1201] / [Intel XE#801]) -> [SKIP][148] ([Intel XE#801]) +23 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2-set2: [SKIP][149] ([Intel XE#316]) -> [SKIP][150] ([Intel XE#1201] / [Intel XE#316])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-435/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][151] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][152] ([Intel XE#316]) +2 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][153] ([Intel XE#1201] / [Intel XE#619]) -> [SKIP][154] ([Intel XE#619])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: [SKIP][155] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][156] ([Intel XE#1124]) +9 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][157] ([Intel XE#1124]) -> [SKIP][158] ([Intel XE#1124] / [Intel XE#1201]) +7 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: [SKIP][159] ([Intel XE#2191]) -> [SKIP][160] ([Intel XE#1201] / [Intel XE#2191]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: [SKIP][161] ([Intel XE#1201] / [Intel XE#2191]) -> [SKIP][162] ([Intel XE#2191]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][163] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][164] ([Intel XE#367]) +4 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: [SKIP][165] ([Intel XE#367]) -> [SKIP][166] ([Intel XE#1201] / [Intel XE#367]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][167] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][168] ([Intel XE#787]) +69 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][169] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][170] ([Intel XE#455] / [Intel XE#787]) +19 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][171] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][172] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +21 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
- shard-dg2-set2: [SKIP][173] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][174] ([Intel XE#1252])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][175] ([Intel XE#787]) -> [SKIP][176] ([Intel XE#1201] / [Intel XE#787]) +76 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][177] ([Intel XE#314]) -> [SKIP][178] ([Intel XE#1201] / [Intel XE#314])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_cdclk@mode-transition-all-outputs.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2-set2: [SKIP][179] ([Intel XE#306]) -> [SKIP][180] ([Intel XE#1201] / [Intel XE#306])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_chamelium_color@ctm-green-to-red.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-434/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2-set2: [SKIP][181] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][182] ([Intel XE#306])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-434/igt@kms_chamelium_color@ctm-max.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-dg2-set2: [SKIP][183] ([Intel XE#373]) -> [SKIP][184] ([Intel XE#1201] / [Intel XE#373]) +8 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-435/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-dg2-set2: [SKIP][185] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][186] ([Intel XE#373]) +10 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2-set2: [SKIP][187] ([Intel XE#308]) -> [SKIP][188] ([Intel XE#1201] / [Intel XE#308])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][189] ([Intel XE#323]) -> [SKIP][190] ([Intel XE#1201] / [Intel XE#323]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][191] ([Intel XE#1201] / [i915#3804]) -> [SKIP][192] ([i915#3804])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: [SKIP][193] ([Intel XE#455]) -> [SKIP][194] ([Intel XE#1201] / [Intel XE#455]) +12 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-434/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][195] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][196] ([Intel XE#776])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][197] ([Intel XE#1135]) -> [SKIP][198] ([Intel XE#1135] / [Intel XE#1201])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_feature_discovery@psr1.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-466/igt@kms_feature_discovery@psr1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][199] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][200] ([Intel XE#455]) +18 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][201] ([Intel XE#651]) -> [SKIP][202] ([Intel XE#1201] / [Intel XE#651]) +21 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][203] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][204] ([Intel XE#651]) +29 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][205] ([Intel XE#1201] / [Intel XE#658]) -> [SKIP][206] ([Intel XE#658])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][207] ([Intel XE#653]) -> [SKIP][208] ([Intel XE#1201] / [Intel XE#653]) +19 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: [SKIP][209] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][210] ([Intel XE#653]) +29 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][211] ([Intel XE#498]) -> [SKIP][212] ([Intel XE#1201] / [Intel XE#498]) +5 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-6.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-6.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-set2: [SKIP][213] ([Intel XE#455] / [Intel XE#498]) -> [SKIP][214] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +3 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][215] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][216] ([Intel XE#2318] / [Intel XE#455]) +5 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][217] ([Intel XE#1201] / [Intel XE#2318]) -> [SKIP][218] ([Intel XE#2318]) +8 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: [SKIP][219] ([Intel XE#870]) -> [SKIP][220] ([Intel XE#1201] / [Intel XE#870])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_pm_backlight@fade.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-435/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: [SKIP][221] ([Intel XE#1122]) -> [SKIP][222] ([Intel XE#1122] / [Intel XE#1201]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_pm_dc@dc3co-vpb-simulation.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: [SKIP][223] ([Intel XE#1129]) -> [SKIP][224] ([Intel XE#1129] / [Intel XE#1201])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_pm_dc@dc5-psr.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: [SKIP][225] ([Intel XE#1201] / [Intel XE#908]) -> [SKIP][226] ([Intel XE#908])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-466/igt@kms_pm_dc@dc6-dpms.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][227] ([Intel XE#1489]) -> [SKIP][228] ([Intel XE#1201] / [Intel XE#1489]) +2 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-434/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][229] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][230] ([Intel XE#1489]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: [SKIP][231] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][232] ([Intel XE#929]) +15 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-render.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][233] ([Intel XE#929]) -> [SKIP][234] ([Intel XE#1201] / [Intel XE#929]) +9 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_psr@psr2-sprite-plane-move.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-434/igt@kms_psr@psr2-sprite-plane-move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: [SKIP][235] ([Intel XE#1149]) -> [SKIP][236] ([Intel XE#1149] / [Intel XE#1201])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-466/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: [SKIP][237] ([Intel XE#327]) -> [SKIP][238] ([Intel XE#1201] / [Intel XE#327]) +3 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_rotation_crc@bad-tiling.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-433/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][239] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][240] ([Intel XE#1127])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][241] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][242] ([Intel XE#327])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][243] ([Intel XE#330]) -> [SKIP][244] ([Intel XE#1201] / [Intel XE#330])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-435/igt@kms_tv_load_detect@load-detect.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][245] ([Intel XE#1091]) -> [SKIP][246] ([Intel XE#1091] / [Intel XE#1201]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: [SKIP][247] ([Intel XE#1123]) -> [SKIP][248] ([Intel XE#1123] / [Intel XE#1201])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][249] ([Intel XE#1041] / [Intel XE#1473]) -> [INCOMPLETE][250] ([Intel XE#1195] / [Intel XE#1473])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-cm-threads-large:
- shard-dg2-set2: [INCOMPLETE][251] ([Intel XE#1195] / [Intel XE#1473]) -> [TIMEOUT][252] ([Intel XE#1473])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@xe_evict@evict-cm-threads-large.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-433/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: [SKIP][253] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][254] ([Intel XE#288]) +25 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-433/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][255] ([Intel XE#288]) -> [SKIP][256] ([Intel XE#1201] / [Intel XE#288]) +21 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-466/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-dg2-set2: [SKIP][257] ([Intel XE#1201] / [Intel XE#2360]) -> [SKIP][258] ([Intel XE#2360])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: [SKIP][259] ([Intel XE#255]) -> [SKIP][260] ([Intel XE#1201] / [Intel XE#255])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@xe_huc_copy@huc_copy.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-463/igt@xe_huc_copy@huc_copy.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: [SKIP][261] ([Intel XE#1201] / [Intel XE#378]) -> [SKIP][262] ([Intel XE#378]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@xe_module_load@force-load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@xe_module_load@force-load.html
* igt@xe_oa@mi-rpc:
- shard-dg2-set2: [SKIP][263] ([Intel XE#1201] / [Intel XE#2541]) -> [SKIP][264] ([Intel XE#2541]) +5 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-434/igt@xe_oa@mi-rpc.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@xe_oa@mi-rpc.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: [SKIP][265] ([Intel XE#2541]) -> [SKIP][266] ([Intel XE#1201] / [Intel XE#2541]) +4 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@xe_oa@whitelisted-registers-userspace-config.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-466/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: [SKIP][267] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) -> [SKIP][268] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-434/igt@xe_pm@d3cold-basic-exec.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: [SKIP][269] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][270] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@xe_pm@d3cold-mmap-vram.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-466/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][271] ([Intel XE#1162] / [Intel XE#569]) -> [DMESG-WARN][272] ([Intel XE#1162] / [Intel XE#1941] / [Intel XE#569])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-433/igt@xe_pm@s3-vm-bind-unbind-all.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-466/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: [DMESG-WARN][273] ([Intel XE#1551] / [Intel XE#569]) -> [INCOMPLETE][274] ([Intel XE#1195] / [Intel XE#1551] / [Intel XE#569])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-466/igt@xe_pm@s3-vm-bind-userptr.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-434/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_query@multigpu-query-config:
- shard-dg2-set2: [SKIP][275] ([Intel XE#944]) -> [SKIP][276] ([Intel XE#1201] / [Intel XE#944]) +2 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@xe_query@multigpu-query-config.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-433/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: [SKIP][277] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][278] ([Intel XE#944]) +2 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@xe_query@multigpu-query-topology.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/shard-dg2-432/igt@xe_query@multigpu-query-topology.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
[Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[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#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[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#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#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#1901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1901
[Intel XE#1941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1941
[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#2028]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2028
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
[Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[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#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2429
[Intel XE#2436]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2436
[Intel XE#2455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2455
[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#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2559]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2559
[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#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[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#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_7978 -> IGTPW_11597
IGTPW_11597: 11597
IGT_7978: 4083a9d8abc80c8a905ffdc20bc76383b1e07e79 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1798-4d24271792fac837e728f7bb6237a94ee46cc76e: 4d24271792fac837e728f7bb6237a94ee46cc76e
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11597/index.html
[-- Attachment #2: Type: text/html, Size: 85747 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] tests/kms_plane_scaling: Improve msm support
2024-08-19 20:25 ` [PATCH 2/2] tests/kms_plane_scaling: Improve msm support Rob Clark
@ 2024-08-20 10:02 ` Kamil Konieczny
0 siblings, 0 replies; 9+ messages in thread
From: Kamil Konieczny @ 2024-08-20 10:02 UTC (permalink / raw)
To: igt-dev; +Cc: Rob Clark, Rob Clark
Hi Rob,
On 2024-08-19 at 13:25:46 -0700, Rob Clark wrote:
> From: Rob Clark <robdclark@chromium.org>
>
> This may undercount number of scalars on hw with rgb pipes, but the
> scaling on yuv and rgb pipes is functionally equivalent, so for test
Remove space from begin of line.
> coverage this is a good enough approximation.
>
> Signed-off-by: Rob Clark <robdclark@chromium.org>
Looks ok, I do not know msm so
Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> lib/igt_kms.c | 19 +++++++++++++++++++
> 1 file changed, 19 insertions(+)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index 99cdeeb76033..dd530dbabf89 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -6682,6 +6682,25 @@ int get_num_scalers(igt_display_t *display, enum pipe pipe)
> igt_assert(start_loc2 = strstr(start_loc1, "num_scalers="));
> igt_assert_eq(sscanf(start_loc2, "num_scalers=%d", &num_scalers), 1);
> }
> + } else if (is_msm_device(drm_fd)) {
> + igt_plane_t *plane;
> +
> + /*
> + * msm devices have dma pipes (no csc, no scaling), rgb
> + * pipes (no csc, has scaling), and vid pipes (has csc,
> + * has scaling), but not all devices have rgb pipes.
> + * We can use the # of pipes that support YUV formats
> + * as a rough approximation of the # of scalars.. it may
> + * undercount on some hw, but it will not overcount
> + */
> + for_each_plane_on_pipe(display, pipe, plane) {
> + for (unsigned i = 0; i < plane->format_mod_count; i++) {
> + if (igt_format_is_yuv(plane->formats[i])) {
> + num_scalers++;
> + break;
> + }
> + }
> + }
> }
>
> return num_scalers;
> --
> 2.46.0
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [1/2] tests/kms_plane_scaling: Pass display to get_num_scalers()
2024-08-19 20:25 [PATCH 1/2] tests/kms_plane_scaling: Pass display to get_num_scalers() Rob Clark
` (3 preceding siblings ...)
2024-08-20 5:58 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-08-20 11:26 ` Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-08-20 11:26 UTC (permalink / raw)
To: Rob Clark; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 98451 bytes --]
== Series Details ==
Series: series starting with [1/2] tests/kms_plane_scaling: Pass display to get_num_scalers()
URL : https://patchwork.freedesktop.org/series/137474/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7978_full -> IGTPW_11597_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11597_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11597_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_11597/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): shard-snb-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11597_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_multiple@tiling-x@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][1] +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@kms_plane_multiple@tiling-x@pipe-d-hdmi-a-3.html
Known issues
------------
Here are the changes found in IGTPW_11597_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][2] ([i915#8411])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][3] ([i915#11078])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#11078])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@all-busy-check-all:
- shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-1/igt@drm_fdinfo@all-busy-check-all.html
* igt@drm_fdinfo@virtual-busy-idle-all:
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-17/igt@drm_fdinfo@virtual-busy-idle-all.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#7697])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#9323]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-4/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-16/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-8/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#6335])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-7/igt@gem_create@create-ext-cpu-access-big.html
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#6335])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-8/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: NOTRUN -> [ABORT][14] ([i915#9846])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][15] ([i915#1099]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-snb7/igt@gem_ctx_persistence@engines-hostile-preempt.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8555])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#280]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-10/igt@gem_ctx_sseu@mmap-args.html
- shard-tglu: NOTRUN -> [SKIP][19] ([i915#280])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-8/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-dg1: [PASS][20] -> [ABORT][21] ([i915#7975] / [i915#8213])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg1-16/igt@gem_eio@hibernate.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-14/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#4812])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-2/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#4771])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#8555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-8/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][26] ([i915#6334])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-glk7/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][27] ([i915#11965]) +3 other tests fail
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-1/igt@gem_exec_capture@capture@vecs0-lmem0.html
- shard-dg1: NOTRUN -> [FAIL][28] ([i915#11965]) +1 other test fail
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-16/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_capture@capture@vecs0-smem:
- shard-mtlp: NOTRUN -> [FAIL][29] ([i915#11965])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-7/igt@gem_exec_capture@capture@vecs0-smem.html
* igt@gem_exec_fair@basic-flow:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4473] / [i915#4771])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-1/igt@gem_exec_fair@basic-flow.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][31] -> [FAIL][32] ([i915#2842])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [PASS][33] -> [FAIL][34] ([i915#2876])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-6/igt@gem_exec_fair@basic-pace@rcs0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-3/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-rkl: [PASS][35] -> [FAIL][36] ([i915#2842])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-6/igt@gem_exec_fair@basic-pace@vcs0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-3/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: NOTRUN -> [FAIL][37] ([i915#2842]) +1 other test fail
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html
- shard-rkl: NOTRUN -> [FAIL][38] ([i915#2842]) +1 other test fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-1/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_fence@submit:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#4812]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-16/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +8 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-16/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-11/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-cpu-wc:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +14 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-15/igt@gem_exec_reloc@basic-cpu-wc.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) +5 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-write-gtt:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +6 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-10/igt@gem_exec_reloc@basic-write-gtt.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) +5 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4537])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-7/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4860]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4860]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-y.html
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4860])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-4/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][51] ([i915#2190])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-glk8/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#4613]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-5/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#4613])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-7/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][55] -> [TIMEOUT][56] ([i915#5493])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][57] ([i915#4613]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-glk5/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#284])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-5/igt@gem_media_vme.html
* igt@gem_mmap@bad-offset:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@gem_mmap@bad-offset.html
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-6/igt@gem_mmap@bad-offset.html
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4077]) +13 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-14/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +7 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-10/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4077]) +7 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-6/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4083]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-11/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#3282]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-18/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#3282]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-5/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_pxp@create-regular-context-1:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#4270]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-5/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4270]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-tglu: NOTRUN -> [SKIP][69] ([i915#4270]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-10/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4270]) +4 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-15/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3282]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-3/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@y-tiled-ccs-to-linear:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#5190] / [i915#8428]) +5 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-linear.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8428]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4079])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#8411])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4885])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-14/igt@gem_softpin@evict-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4885])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-4/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#4079])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@gem_tiled_pread_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4079]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-6/igt@gem_tiled_pread_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4879])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-18/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][82] ([i915#3323])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-glk7/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-7/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#3281] / [i915#3297])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-4/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4958])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-4/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][87] +9 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-10/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-oversize:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#2527]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-14/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-7/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#2856]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-4/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-8/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_fb_tiling:
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#4881])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-16/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][94] -> [ABORT][95] ([i915#9820])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#6412])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-3/igt@i915_module_load@resize-bar.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#7091])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-11/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: NOTRUN -> [FAIL][98] ([i915#3591])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#11681] / [i915#6621])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-17/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#11681])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-5/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_selftest@mock@memory_region:
- shard-glk: NOTRUN -> [DMESG-WARN][101] ([i915#9311])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-glk6/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][102] ([i915#7443])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-6/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#7707])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#4212]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-15/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#4212])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-6/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#3826])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#8709]) +11 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#8709]) +7 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#8709]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#8709]) +7 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-18/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#8709]) +11 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#3555])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@modeset-transition@2x-outputs:
- shard-glk: NOTRUN -> [FAIL][113] ([i915#11859])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-glk8/igt@kms_atomic_transition@modeset-transition@2x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-glk: NOTRUN -> [SKIP][115] ([i915#1769]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5286]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-16/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#5286]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +4 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][120] +14 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-4/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#3638]) +5 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-16/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#3638]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#5190])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5190]) +6 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#4538]) +5 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_joiner@basic-force-joiner:
- shard-tglu: NOTRUN -> [SKIP][126] ([i915#10656])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-10/igt@kms_big_joiner@basic-force-joiner.html
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#10656])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-5/igt@kms_big_joiner@basic-force-joiner.html
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#10656])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-2/igt@kms_big_joiner@basic-force-joiner.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#10656])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#10434] / [i915#6095]) +6 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#6095]) +111 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#10307] / [i915#6095]) +168 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6095]) +27 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-5/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#6095]) +55 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-5/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#6095]) +51 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#3742])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#7213] / [i915#9010]) +3 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-1/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#11616] / [i915#7213]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#7828]) +10 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#7828]) +8 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-5/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#7828]) +8 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#7828]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#7828]) +5 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-5/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-3/igt@kms_content_protection@atomic-dpms.html
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#7116] / [i915#9424]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-18/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][146] ([i915#7173])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/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][147] ([i915#9424])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-15/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#3299])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-14/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#3116] / [i915#3299])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-10/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#6944] / [i915#9424]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-6/igt@kms_content_protection@lic-type-0.html
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#9424])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-4/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#9424])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-5/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#7118])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-1/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#7116])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-14/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#6944] / [i915#9424]) +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-4/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#3555]) +5 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3359])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#11453]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#11453]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#11453])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#3555]) +4 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3555] / [i915#8814]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#11453]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][164] +16 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#5354]) +26 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#4103] / [i915#4213])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#4103])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#4103] / [i915#4213]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#9809])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][170] ([i915#2346])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#4103])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#9833])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#9723])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_aux_dev:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#1257])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-18/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#3840])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats.html
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#3840])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-10/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#3469])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-4/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#3469])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-17/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#1839])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-11/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#1839])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-5/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#1839])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-3/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#9337])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-17/igt@kms_feature_discovery@dp-mst.html
* igt@kms_fence_pin_leak:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#4881])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-1/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#3637]) +7 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3637]) +5 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-5/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][187] -> [FAIL][188] ([i915#2122])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#9934]) +7 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#8381])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-14/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2:
- shard-rkl: [PASS][191] -> [FAIL][192] ([i915#11961])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-3/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-5/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2.html
* igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2:
- shard-rkl: [PASS][193] -> [FAIL][194] ([i915#11832])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-3/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-5/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#2672]) +4 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#2587] / [i915#2672]) +5 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#2672]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8810])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#2672])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#2587] / [i915#2672]) +5 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#8708]) +24 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#8708]) +12 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][203] +82 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][204] +44 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#3458]) +23 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#9766])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#3458]) +12 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#3023]) +17 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#8708]) +5 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#1825]) +20 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#1825]) +26 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-2/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8228]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-10/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#1839])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#6301])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-18/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_lowres@tiling-4:
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#3555]) +7 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-10/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][218] ([i915#8292])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][219] ([i915#8292])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#9423]) +11 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#9423]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#9728]) +4 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#5235] / [i915#9423]) +2 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#5235]) +2 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][225] ([i915#9728]) +7 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#9728]) +5 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#9423]) +28 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#5235]) +8 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#5235]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#9812])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-8/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#5354])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-17/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#10139])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-2/igt@kms_pm_dc@dc6-dpms.html
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#5978])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-11/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#3361])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-15/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#9685])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-3/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#9340])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#9519]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [PASS][238] -> [SKIP][239] ([i915#9519])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][240] -> [SKIP][241] ([i915#9519]) +2 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#9519]) +2 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#11520]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-3/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#11520]) +3 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-5/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-sf:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#11520]) +4 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-14/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#11520]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-4/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#9808]) +2 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-2/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#9683])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-17/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#4348])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#1072] / [i915#9732]) +15 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-1/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@fbc-pr-primary-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#9732]) +20 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-5/igt@kms_psr@fbc-pr-primary-mmap-cpu.html
* igt@kms_psr@fbc-psr2-cursor-blt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#9688]) +5 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-7/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][253] +338 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-glk6/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@pr-suspend:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#1072] / [i915#9732]) +24 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-16/igt@kms_psr@pr-suspend.html
* igt@kms_psr@psr-sprite-blt:
- shard-snb: NOTRUN -> [SKIP][255] +65 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-snb5/igt@kms_psr@psr-sprite-blt.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#1072] / [i915#9732]) +10 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-1/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#1072] / [i915#9673] / [i915#9732]) +3 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-11/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#9685])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-10/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#9685])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#5289]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#11131])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-8/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-dg2: [PASS][262] -> [FAIL][263] ([i915#5465]) +1 other test fail
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-8/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-4:
- shard-dg1: [PASS][264] -> [FAIL][265] ([i915#10187])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg1-16/igt@kms_setmode@basic@pipe-b-hdmi-a-4.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-18/igt@kms_setmode@basic@pipe-b-hdmi-a-4.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8809])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-8/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: NOTRUN -> [SKIP][267] ([i915#8623])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-6/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#8623])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#8623])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#8623])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-16/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][271] -> [FAIL][272] ([i915#9196])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2:
- shard-rkl: [PASS][273] -> [FAIL][274] ([i915#9196]) +1 other test fail
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2.html
* igt@kms_vrr@flip-basic:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8808])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-4/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-suspend:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#3555])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-3/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@negative-basic:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#9906])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#9906])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#9906]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-glk: NOTRUN -> [SKIP][280] ([i915#2437])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-glk8/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#2437] / [i915#9412])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-16/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#2437] / [i915#9412]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#2437] / [i915#9412]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-10/igt@kms_writeback@writeback-pixel-formats.html
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#2437] / [i915#9412])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-2/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@blocking@0-rcs0:
- shard-dg2: [PASS][285] -> [FAIL][286] ([i915#10538])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-1/igt@perf@blocking@0-rcs0.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-2/igt@perf@blocking@0-rcs0.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#2433])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-18/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][288] -> [FAIL][289] ([i915#4349]) +3 other tests fail
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#3291] / [i915#3708])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-10/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#3708] / [i915#4077])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-3/igt@prime_vgem@basic-gtt.html
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#3708] / [i915#4077]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@fence-write-hang:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#3708])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-4/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#9917]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#9917])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-15/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#9917])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-5/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-dg2: NOTRUN -> [FAIL][297] ([i915#9781])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-2/igt@syncobj_timeline@invalid-wait-zero-handles.html
- shard-glk: NOTRUN -> [FAIL][298] ([i915#9781])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-glk6/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#4818])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@drm_read@empty-block:
- shard-dg1: [DMESG-WARN][300] ([i915#4423]) -> [PASS][301]
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg1-16/igt@drm_read@empty-block.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-14/igt@drm_read@empty-block.html
* igt@gem_eio@reset-stress:
- shard-dg2: [FAIL][302] ([i915#5784]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-3/igt@gem_eio@reset-stress.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-8/igt@gem_eio@reset-stress.html
- shard-dg1: [FAIL][304] ([i915#5784]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg1-17/igt@gem_eio@reset-stress.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-17/igt@gem_eio@reset-stress.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: [ABORT][306] ([i915#5566]) -> [PASS][307]
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-glk8/igt@gen9_exec_parse@allowed-all.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-glk7/igt@gen9_exec_parse@allowed-all.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [ABORT][308] ([i915#9820]) -> [PASS][309]
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][310] ([i915#10131] / [i915#10887] / [i915#9820]) -> [PASS][311]
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [ABORT][312] ([i915#9820]) -> [PASS][313]
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-4/igt@i915_module_load@reload-with-fault-injection.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1:
- shard-mtlp: [FAIL][314] ([i915#11808] / [i915#5956]) -> [PASS][315]
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][316] ([i915#11808]) -> [PASS][317]
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-tglu-9/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][318] ([i915#2346]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@single-move@pipe-a:
- shard-rkl: [DMESG-WARN][320] ([i915#10166]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-4/igt@kms_cursor_legacy@single-move@pipe-a.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-1/igt@kms_cursor_legacy@single-move@pipe-a.html
* igt@kms_flip@flip-vs-wf_vblank-interruptible@a-hdmi-a3:
- shard-dg2: [FAIL][322] ([i915#10826]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-6/igt@kms_flip@flip-vs-wf_vblank-interruptible@a-hdmi-a3.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-1/igt@kms_flip@flip-vs-wf_vblank-interruptible@a-hdmi-a3.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-snb: [SKIP][324] -> [PASS][325] +1 other test pass
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-128:
- shard-mtlp: [DMESG-WARN][326] ([i915#1982]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-mtlp-2/igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-128.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-mtlp-5/igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-128.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][328] ([i915#4281]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][330] ([i915#9519]) -> [PASS][331] +1 other test pass
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][332] ([i915#9519]) -> [PASS][333] +2 other tests pass
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [FAIL][334] ([IGT#2]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-2/igt@kms_sysfs_edid_timing.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-11/igt@kms_sysfs_edid_timing.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [FAIL][336] ([i915#9196]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
#### Warnings ####
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-tglu: [ABORT][338] ([i915#10354]) -> [SKIP][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-tglu-3/igt@kms_big_fb@linear-8bpp-rotate-270.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-10/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: [SKIP][340] ([i915#9424]) -> [SKIP][341] ([i915#8063])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-1/igt@kms_content_protection@mei-interface.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-4/igt@kms_content_protection@mei-interface.html
- shard-dg1: [SKIP][342] ([i915#9424]) -> [SKIP][343] ([i915#9433])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg1-15/igt@kms_content_protection@mei-interface.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-13/igt@kms_content_protection@mei-interface.html
- shard-tglu: [SKIP][344] ([i915#6944] / [i915#9424]) -> [SKIP][345] ([i915#8063])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-tglu-9/igt@kms_content_protection@mei-interface.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-tglu-7/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][346] ([i915#7118] / [i915#9424]) -> [SKIP][347] ([i915#7118] / [i915#7162] / [i915#9424])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-1/igt@kms_content_protection@type1.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-11/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2: [SKIP][348] ([i915#11453] / [i915#3359]) -> [SKIP][349] ([i915#11453])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-512x512.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][350] ([i915#10433] / [i915#3458]) -> [SKIP][351] ([i915#3458]) +1 other test skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-dg1: [SKIP][352] ([i915#4423] / [i915#8708]) -> [SKIP][353] ([i915#8708])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][354] ([i915#3458]) -> [SKIP][355] ([i915#10433] / [i915#3458]) +2 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][356] ([i915#4816]) -> [SKIP][357] ([i915#4070] / [i915#4816])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][358] ([i915#3361]) -> [SKIP][359] ([i915#4281])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr@fbc-pr-sprite-blt:
- shard-dg1: [SKIP][360] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][361] ([i915#1072] / [i915#9732])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg1-16/igt@kms_psr@fbc-pr-sprite-blt.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg1-17/igt@kms_psr@fbc-pr-sprite-blt.html
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
- shard-dg2: [SKIP][362] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][363] ([i915#1072] / [i915#9732]) +12 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-1/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-dg2: [SKIP][364] ([i915#1072] / [i915#9732]) -> [SKIP][365] ([i915#1072] / [i915#9673] / [i915#9732]) +8 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-4/igt@kms_psr@pr-cursor-mmap-cpu.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-11/igt@kms_psr@pr-cursor-mmap-cpu.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: [SKIP][366] ([i915#11131] / [i915#4235]) -> [SKIP][367] ([i915#11131])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-11/igt@kms_rotation_crc@bad-tiling.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-10/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: [SKIP][368] ([i915#11131] / [i915#4235] / [i915#5190]) -> [SKIP][369] ([i915#11131] / [i915#5190])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10139]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10139
[i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166
[i915#10187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10187
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10354
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832
[i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859
[i915#11961]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11961
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#2876]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2876
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#7091]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7091
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8063]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8063
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9010]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9010
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7978 -> IGTPW_11597
CI-20190529: 20190529
CI_DRM_15263: 4d24271792fac837e728f7bb6237a94ee46cc76e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11597: 11597
IGT_7978: 4083a9d8abc80c8a905ffdc20bc76383b1e07e79 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11597/index.html
[-- Attachment #2: Type: text/html, Size: 123477 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-08-20 11:26 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-19 20:25 [PATCH 1/2] tests/kms_plane_scaling: Pass display to get_num_scalers() Rob Clark
2024-08-19 20:25 ` [PATCH 2/2] tests/kms_plane_scaling: Improve msm support Rob Clark
2024-08-20 10:02 ` Kamil Konieczny
2024-08-19 22:28 ` ✓ CI.xeBAT: success for series starting with [1/2] tests/kms_plane_scaling: Pass display to get_num_scalers() Patchwork
2024-08-19 22:46 ` ✓ Fi.CI.BAT: " Patchwork
2024-08-20 5:58 ` ✗ CI.xeFULL: failure " Patchwork
2024-08-20 11:26 ` ✗ Fi.CI.IGT: " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2024-08-14 18:53 [PATCH 1/2] " Rob Clark
2024-08-19 18:20 ` Kamil Konieczny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox