* [igt-dev] [v6 01/10] tests/i915/kms_dsc: add new test flag
2023-08-01 13:38 [igt-dev] [v6 00/10] DSC Fractional BPP Val Support Swati Sharma
@ 2023-08-01 13:38 ` Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 02/10] tests/i915/kms_dsc: use uint32_t " Swati Sharma
` (13 subsequent siblings)
14 siblings, 0 replies; 17+ messages in thread
From: Swati Sharma @ 2023-08-01 13:38 UTC (permalink / raw)
To: igt-dev
Add new test flag TEST_DSC_FORMAT. This flag is added to
differentiate the basic dsc test and the tests where we want to
change different plane pixel formats.
v2: -update commit message (Ankit)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/i915/kms_dsc.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 0a3e29924..23ccbca00 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -37,6 +37,7 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression");
enum dsc_test_type {
TEST_DSC_BASIC,
TEST_DSC_BPC,
+ TEST_DSC_FORMAT,
TEST_DSC_OUTPUT_FORMAT,
};
@@ -302,7 +303,7 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
"with default parameters and creating fb with diff formats");
igt_subtest_with_dynamic("dsc-with-formats") {
for (int k = 0; k < ARRAY_SIZE(format_list); k++)
- test_dsc(&data, TEST_DSC_BASIC, 0,
+ test_dsc(&data, TEST_DSC_FORMAT, 0,
format_list[k], DSC_FORMAT_RGB);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 17+ messages in thread* [igt-dev] [v6 02/10] tests/i915/kms_dsc: use uint32_t test flag
2023-08-01 13:38 [igt-dev] [v6 00/10] DSC Fractional BPP Val Support Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 01/10] tests/i915/kms_dsc: add new test flag Swati Sharma
@ 2023-08-01 13:38 ` Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 03/10] tests/i915/kms_dsc: use #define for default bpc Swati Sharma
` (12 subsequent siblings)
14 siblings, 0 replies; 17+ messages in thread
From: Swati Sharma @ 2023-08-01 13:38 UTC (permalink / raw)
To: igt-dev
Instead of using enum, use uinit32_t test flag. It is helpful,
if we need to implement feature combination tests.
v2: -use #define (Ankit)
-use 2D char array (Ankit)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/i915/kms_dsc.c | 50 +++++++++++++++++++++++++-------------------
1 file changed, 28 insertions(+), 22 deletions(-)
diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 23ccbca00..99d35a7ff 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -34,12 +34,12 @@
IGT_TEST_DESCRIPTION("Test to validate display stream compression");
-enum dsc_test_type {
- TEST_DSC_BASIC,
- TEST_DSC_BPC,
- TEST_DSC_FORMAT,
- TEST_DSC_OUTPUT_FORMAT,
-};
+#define LEN 20
+
+#define TEST_DSC_BASIC (0<<0)
+#define TEST_DSC_BPC (1<<0)
+#define TEST_DSC_FORMAT (1<<1)
+#define TEST_DSC_OUTPUT_FORMAT (1<<2)
typedef struct {
int drm_fd;
@@ -111,7 +111,7 @@ static void test_cleanup(data_t *data)
}
/* re-probe connectors and do a modeset with DSC */
-static void update_display(data_t *data, enum dsc_test_type test_type)
+static void update_display(data_t *data, uint32_t test_type)
{
int ret;
bool enabled;
@@ -130,12 +130,12 @@ static void update_display(data_t *data, enum dsc_test_type test_type)
save_force_dsc_en(data->drm_fd, data->output);
force_dsc_enable(data->drm_fd, data->output);
- if (test_type == TEST_DSC_BPC) {
+ if (test_type & TEST_DSC_BPC) {
igt_debug("Trying to set input BPC to %d\n", data->input_bpc);
force_dsc_enable_bpc(data->drm_fd, data->output, data->input_bpc);
}
- if (test_type == TEST_DSC_OUTPUT_FORMAT) {
+ if (test_type & TEST_DSC_OUTPUT_FORMAT) {
igt_debug("Trying to set DSC %s output format\n",
kmstest_dsc_output_format_str(data->output_format));
force_dsc_output_format(data->drm_fd, data->output, data->output_format);
@@ -214,13 +214,18 @@ reset:
igt_assert_eq(ret, 0);
}
-static void test_dsc(data_t *data, enum dsc_test_type test_type, int bpc,
- unsigned int plane_format, enum dsc_output_format output_format)
+static void test_dsc(data_t *data, uint32_t test_type, int bpc,
+ unsigned int plane_format,
+ enum dsc_output_format output_format)
{
igt_display_t *display = &data->display;
igt_output_t *output;
- char name[20];
enum pipe pipe;
+ char name[3][LEN] = {
+ {0},
+ {0},
+ {0},
+ };
for_each_pipe_with_valid_output(display, pipe, output) {
data->output_format = output_format;
@@ -242,15 +247,15 @@ static void test_dsc(data_t *data, enum dsc_test_type test_type, int bpc,
if (!check_gen11_bpc_constraint(data->drm_fd, data->output, data->input_bpc))
continue;
- if (test_type == TEST_DSC_BPC)
- snprintf(name, sizeof(name), "-%dbpc-%s", data->input_bpc, igt_format_str(data->plane_format));
- else if (test_type == TEST_DSC_OUTPUT_FORMAT)
- snprintf(name, sizeof(name), "-%s-%s", kmstest_dsc_output_format_str(data->output_format),
- igt_format_str(data->plane_format));
- else
- snprintf(name, sizeof(name), "-%s", igt_format_str(data->plane_format));
+ if (test_type & TEST_DSC_OUTPUT_FORMAT)
+ snprintf(&name[0][0], LEN, "-%s", kmstest_dsc_output_format_str(data->output_format));
+ if (test_type & TEST_DSC_FORMAT)
+ snprintf(&name[1][0], LEN, "-%s", igt_format_str(data->plane_format));
+ if (test_type & TEST_DSC_BPC)
+ snprintf(&name[2][0], LEN, "-%dbpc", data->input_bpc);
- igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(data->pipe), data->output->name, name)
+ igt_dynamic_f("pipe-%s-%s%s%s%s", kmstest_pipe_name(data->pipe), data->output->name,
+ &name[0][0], &name[1][0], &name[2][0])
update_display(data, test_type);
if (data->limited)
@@ -322,8 +327,9 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
igt_subtest_with_dynamic("dsc-with-bpc-formats") {
for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) {
for (int k = 0; k < ARRAY_SIZE(format_list); k++) {
- test_dsc(&data, TEST_DSC_BPC, bpc_list[j],
- format_list[k], DSC_FORMAT_RGB);
+ test_dsc(&data, TEST_DSC_BPC | TEST_DSC_FORMAT,
+ bpc_list[j], format_list[k],
+ DSC_FORMAT_RGB);
}
}
}
--
2.25.1
^ permalink raw reply related [flat|nested] 17+ messages in thread* [igt-dev] [v6 03/10] tests/i915/kms_dsc: use #define for default bpc
2023-08-01 13:38 [igt-dev] [v6 00/10] DSC Fractional BPP Val Support Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 01/10] tests/i915/kms_dsc: add new test flag Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 02/10] tests/i915/kms_dsc: use uint32_t " Swati Sharma
@ 2023-08-01 13:38 ` Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 04/10] tests/i915/kms_dsc: update if conditions Swati Sharma
` (11 subsequent siblings)
14 siblings, 0 replies; 17+ messages in thread
From: Swati Sharma @ 2023-08-01 13:38 UTC (permalink / raw)
To: igt-dev
For default bpc, use #define. By setting bpc as 0, means driver
will set its own value and we are not enforcing input bpc.
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/i915/kms_dsc.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 99d35a7ff..7b9bae91a 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -35,6 +35,7 @@
IGT_TEST_DESCRIPTION("Test to validate display stream compression");
#define LEN 20
+#define DEFAULT_BPC 0
#define TEST_DSC_BASIC (0<<0)
#define TEST_DSC_BPC (1<<0)
@@ -300,7 +301,7 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
"by a connector by forcing DSC on all connectors that support it "
"with default parameters");
igt_subtest_with_dynamic("dsc-basic")
- test_dsc(&data, TEST_DSC_BASIC, 0,
+ test_dsc(&data, TEST_DSC_BASIC, DEFAULT_BPC,
DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB);
igt_describe("Tests basic display stream compression functionality if supported "
@@ -308,7 +309,7 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
"with default parameters and creating fb with diff formats");
igt_subtest_with_dynamic("dsc-with-formats") {
for (int k = 0; k < ARRAY_SIZE(format_list); k++)
- test_dsc(&data, TEST_DSC_FORMAT, 0,
+ test_dsc(&data, TEST_DSC_FORMAT, DEFAULT_BPC,
format_list[k], DSC_FORMAT_RGB);
}
@@ -339,7 +340,8 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
"that support it");
igt_subtest_with_dynamic("dsc-with-output-formats") {
for (int k = 0; k < ARRAY_SIZE(output_format_list); k++)
- test_dsc(&data, TEST_DSC_OUTPUT_FORMAT, 0, DRM_FORMAT_XRGB8888,
+ test_dsc(&data, TEST_DSC_OUTPUT_FORMAT, DEFAULT_BPC,
+ DRM_FORMAT_XRGB8888,
output_format_list[k]);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 17+ messages in thread* [igt-dev] [v6 04/10] tests/i915/kms_dsc: update if conditions
2023-08-01 13:38 [igt-dev] [v6 00/10] DSC Fractional BPP Val Support Swati Sharma
` (2 preceding siblings ...)
2023-08-01 13:38 ` [igt-dev] [v6 03/10] tests/i915/kms_dsc: use #define for default bpc Swati Sharma
@ 2023-08-01 13:38 ` Swati Sharma
2023-08-02 9:48 ` Nautiyal, Ankit K
2023-08-01 13:38 ` [igt-dev] [v6 05/10] tests/i915/kms_dsc: use igt_get_pipe_current_bpc() Swati Sharma
` (10 subsequent siblings)
14 siblings, 1 reply; 17+ messages in thread
From: Swati Sharma @ 2023-08-01 13:38 UTC (permalink / raw)
To: igt-dev
Check is_dsc_output_format_supported() iff test flag is set to
OUTPUT_FORMAT. Also, combine is_dsc_supported_by_sink () and
gen11_dp_constraint() conditions together.
Move, bpc_constraint() out of loop since its independent of output.
v2: -fixed if() (CI)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/i915/kms_dsc.c | 16 +++++++---------
tests/i915/kms_dsc_helper.c | 2 +-
tests/i915/kms_dsc_helper.h | 2 +-
3 files changed, 9 insertions(+), 11 deletions(-)
diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 7b9bae91a..635fef1cd 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -228,6 +228,8 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc,
{0},
};
+ igt_require(check_gen11_bpc_constraint(data->drm_fd, data->input_bpc));
+
for_each_pipe_with_valid_output(display, pipe, output) {
data->output_format = output_format;
data->plane_format = plane_format;
@@ -235,17 +237,13 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc,
data->output = output;
data->pipe = pipe;
- if (!is_dsc_supported_by_sink(data->drm_fd, data->output))
- continue;
-
- if (!is_dsc_output_format_supported(data->drm_fd, data->disp_ver,
- data->output, data->output_format))
- continue;
-
- if (!check_gen11_dp_constraint(data->drm_fd, data->output, data->pipe))
+ if (!(is_dsc_supported_by_sink(data->drm_fd, data->output) &&
+ check_gen11_dp_constraint(data->drm_fd, data->output, data->pipe)))
continue;
- if (!check_gen11_bpc_constraint(data->drm_fd, data->output, data->input_bpc))
+ if ((test_type & TEST_DSC_OUTPUT_FORMAT) &&
+ (!is_dsc_output_format_supported(data->drm_fd, data->disp_ver,
+ data->output, data->output_format)))
continue;
if (test_type & TEST_DSC_OUTPUT_FORMAT)
diff --git a/tests/i915/kms_dsc_helper.c b/tests/i915/kms_dsc_helper.c
index 61f76ddee..ae59edb6b 100644
--- a/tests/i915/kms_dsc_helper.c
+++ b/tests/i915/kms_dsc_helper.c
@@ -96,7 +96,7 @@ bool check_gen11_dp_constraint(int drmfd, igt_output_t *output, enum pipe pipe)
}
/* Max DSC Input BPC for ICL is 10 and for TGL+ is 12 */
-bool check_gen11_bpc_constraint(int drmfd, igt_output_t *output, int input_bpc)
+bool check_gen11_bpc_constraint(int drmfd, int input_bpc)
{
uint32_t devid = intel_get_drm_devid(drmfd);
diff --git a/tests/i915/kms_dsc_helper.h b/tests/i915/kms_dsc_helper.h
index 2109bd767..28ed56d83 100644
--- a/tests/i915/kms_dsc_helper.h
+++ b/tests/i915/kms_dsc_helper.h
@@ -29,7 +29,7 @@ void kms_dsc_exit_handler(int sig);
bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output);
bool is_dsc_supported_by_source(int drmfd);
bool check_gen11_dp_constraint(int drmfd, igt_output_t *output, enum pipe pipe);
-bool check_gen11_bpc_constraint(int drmfd, igt_output_t *output, int input_bpc);
+bool check_gen11_bpc_constraint(int drmfd, int input_bpc);
void force_dsc_output_format(int drmfd, igt_output_t *output,
enum dsc_output_format output_format);
bool is_dsc_output_format_supported(int disp_ver, int drmfd, igt_output_t *output,
--
2.25.1
^ permalink raw reply related [flat|nested] 17+ messages in thread* Re: [igt-dev] [v6 04/10] tests/i915/kms_dsc: update if conditions
2023-08-01 13:38 ` [igt-dev] [v6 04/10] tests/i915/kms_dsc: update if conditions Swati Sharma
@ 2023-08-02 9:48 ` Nautiyal, Ankit K
0 siblings, 0 replies; 17+ messages in thread
From: Nautiyal, Ankit K @ 2023-08-02 9:48 UTC (permalink / raw)
To: Swati Sharma, igt-dev
LGTM.
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
On 8/1/2023 7:08 PM, Swati Sharma wrote:
> Check is_dsc_output_format_supported() iff test flag is set to
> OUTPUT_FORMAT. Also, combine is_dsc_supported_by_sink () and
> gen11_dp_constraint() conditions together.
> Move, bpc_constraint() out of loop since its independent of output.
>
> v2: -fixed if() (CI)
>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> ---
> tests/i915/kms_dsc.c | 16 +++++++---------
> tests/i915/kms_dsc_helper.c | 2 +-
> tests/i915/kms_dsc_helper.h | 2 +-
> 3 files changed, 9 insertions(+), 11 deletions(-)
>
> diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
> index 7b9bae91a..635fef1cd 100644
> --- a/tests/i915/kms_dsc.c
> +++ b/tests/i915/kms_dsc.c
> @@ -228,6 +228,8 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc,
> {0},
> };
>
> + igt_require(check_gen11_bpc_constraint(data->drm_fd, data->input_bpc));
> +
> for_each_pipe_with_valid_output(display, pipe, output) {
> data->output_format = output_format;
> data->plane_format = plane_format;
> @@ -235,17 +237,13 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc,
> data->output = output;
> data->pipe = pipe;
>
> - if (!is_dsc_supported_by_sink(data->drm_fd, data->output))
> - continue;
> -
> - if (!is_dsc_output_format_supported(data->drm_fd, data->disp_ver,
> - data->output, data->output_format))
> - continue;
> -
> - if (!check_gen11_dp_constraint(data->drm_fd, data->output, data->pipe))
> + if (!(is_dsc_supported_by_sink(data->drm_fd, data->output) &&
> + check_gen11_dp_constraint(data->drm_fd, data->output, data->pipe)))
> continue;
>
> - if (!check_gen11_bpc_constraint(data->drm_fd, data->output, data->input_bpc))
> + if ((test_type & TEST_DSC_OUTPUT_FORMAT) &&
> + (!is_dsc_output_format_supported(data->drm_fd, data->disp_ver,
> + data->output, data->output_format)))
> continue;
>
> if (test_type & TEST_DSC_OUTPUT_FORMAT)
> diff --git a/tests/i915/kms_dsc_helper.c b/tests/i915/kms_dsc_helper.c
> index 61f76ddee..ae59edb6b 100644
> --- a/tests/i915/kms_dsc_helper.c
> +++ b/tests/i915/kms_dsc_helper.c
> @@ -96,7 +96,7 @@ bool check_gen11_dp_constraint(int drmfd, igt_output_t *output, enum pipe pipe)
> }
>
> /* Max DSC Input BPC for ICL is 10 and for TGL+ is 12 */
> -bool check_gen11_bpc_constraint(int drmfd, igt_output_t *output, int input_bpc)
> +bool check_gen11_bpc_constraint(int drmfd, int input_bpc)
> {
> uint32_t devid = intel_get_drm_devid(drmfd);
>
> diff --git a/tests/i915/kms_dsc_helper.h b/tests/i915/kms_dsc_helper.h
> index 2109bd767..28ed56d83 100644
> --- a/tests/i915/kms_dsc_helper.h
> +++ b/tests/i915/kms_dsc_helper.h
> @@ -29,7 +29,7 @@ void kms_dsc_exit_handler(int sig);
> bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output);
> bool is_dsc_supported_by_source(int drmfd);
> bool check_gen11_dp_constraint(int drmfd, igt_output_t *output, enum pipe pipe);
> -bool check_gen11_bpc_constraint(int drmfd, igt_output_t *output, int input_bpc);
> +bool check_gen11_bpc_constraint(int drmfd, int input_bpc);
> void force_dsc_output_format(int drmfd, igt_output_t *output,
> enum dsc_output_format output_format);
> bool is_dsc_output_format_supported(int disp_ver, int drmfd, igt_output_t *output,
^ permalink raw reply [flat|nested] 17+ messages in thread
* [igt-dev] [v6 05/10] tests/i915/kms_dsc: use igt_get_pipe_current_bpc()
2023-08-01 13:38 [igt-dev] [v6 00/10] DSC Fractional BPP Val Support Swati Sharma
` (3 preceding siblings ...)
2023-08-01 13:38 ` [igt-dev] [v6 04/10] tests/i915/kms_dsc: update if conditions Swati Sharma
@ 2023-08-01 13:38 ` Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 06/10] tests/i915/kms_dsc: add test validating output formats with input bpc Swati Sharma
` (9 subsequent siblings)
14 siblings, 0 replies; 17+ messages in thread
From: Swati Sharma @ 2023-08-01 13:38 UTC (permalink / raw)
To: igt-dev
Use igt_get_pipe_current_bpc() to get current bpc when
TEST_DSC_BPC test flag is used. If input bpc is not equal to
current bpc, skip test.
v2: -use helper directly (Ankit)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/i915/kms_dsc.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 635fef1cd..49c0824c8 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -117,6 +117,7 @@ static void update_display(data_t *data, uint32_t test_type)
int ret;
bool enabled;
int index = 0;
+ int current_bpc = 0;
igt_plane_t *primary;
drmModeModeInfo *mode;
igt_output_t *output = data->output;
@@ -202,11 +203,17 @@ static void update_display(data_t *data, uint32_t test_type)
restore_force_dsc_en();
+ if (test_type & TEST_DSC_BPC) {
+ current_bpc = igt_get_pipe_current_bpc(data->drm_fd, data->pipe);
+ igt_skip_on_f(data->input_bpc != current_bpc,
+ "Input bpc = %d is not equal to current bpc = %d\n",
+ data->input_bpc, current_bpc);
+ }
+
igt_assert_f(enabled,
"Default DSC enable failed on connector: %s pipe: %s\n",
output->name,
kmstest_pipe_name(data->pipe));
-
reset:
test_reset(data);
--
2.25.1
^ permalink raw reply related [flat|nested] 17+ messages in thread* [igt-dev] [v6 06/10] tests/i915/kms_dsc: add test validating output formats with input bpc
2023-08-01 13:38 [igt-dev] [v6 00/10] DSC Fractional BPP Val Support Swati Sharma
` (4 preceding siblings ...)
2023-08-01 13:38 ` [igt-dev] [v6 05/10] tests/i915/kms_dsc: use igt_get_pipe_current_bpc() Swati Sharma
@ 2023-08-01 13:38 ` Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 07/10] tests/i915/kms_dsc: add test summary Swati Sharma
` (8 subsequent siblings)
14 siblings, 0 replies; 17+ messages in thread
From: Swati Sharma @ 2023-08-01 13:38 UTC (permalink / raw)
To: igt-dev
New subtest is added validating output format with different
input bpc.
v2: -update subject (Ankit)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/i915/kms_dsc.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 49c0824c8..f2eed7df0 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -350,6 +350,19 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
output_format_list[k]);
}
+ igt_describe("Tests basic display stream compression functionality if supported "
+ "by a connector by forcing DSC and output format on all connectors "
+ "that support it with certain input BPC for the connector");
+ igt_subtest_with_dynamic("dsc-with-output-formats-with-bpc") {
+ for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) {
+ for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) {
+ test_dsc(&data, TEST_DSC_OUTPUT_FORMAT | TEST_DSC_BPC,
+ bpc_list[j], DRM_FORMAT_XRGB8888,
+ output_format_list[k]);
+ }
+ }
+ }
+
igt_fixture {
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 17+ messages in thread* [igt-dev] [v6 07/10] tests/i915/kms_dsc: add test summary
2023-08-01 13:38 [igt-dev] [v6 00/10] DSC Fractional BPP Val Support Swati Sharma
` (5 preceding siblings ...)
2023-08-01 13:38 ` [igt-dev] [v6 06/10] tests/i915/kms_dsc: add test validating output formats with input bpc Swati Sharma
@ 2023-08-01 13:38 ` Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 08/10] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma
` (7 subsequent siblings)
14 siblings, 0 replies; 17+ messages in thread
From: Swati Sharma @ 2023-08-01 13:38 UTC (permalink / raw)
To: igt-dev
Add test summary giving overall summary of subtests.
v2: -drop DSC1.2 reference (Ankit)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/i915/kms_dsc.c | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index f2eed7df0..5bdac57e2 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -42,6 +42,24 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression");
#define TEST_DSC_FORMAT (1<<1)
#define TEST_DSC_OUTPUT_FORMAT (1<<2)
+/*
+ * Starting from gen11, intel driver supports DSC1.1. For validating
+ * DSC, the first step is to verify if the sink supports DSC.
+ * If the sink does support DSC, we will validate different
+ * scenarios by forcing dsc. Outline of the tests is as follows:
+ * (i) basic modeset (ii) input bpc (iii) pixel formats
+ * (iv) output formats
+ * In the basic subtest, we perform modeset with default parameters.
+ * Input bpc and pixel formats subtests, we perform modeset
+ * with different input bpc (12/10/8) and pixel formats (YUV/RGB),
+ * respectively. From MTL+, we can verify DSC YCBCR420 output format.
+ * The tests are executed with the RGB444 output format by default.
+ * However, in the output-format subtest, we verify different
+ * output formats (RGB/YCBCR444/YCBCR420). Also, test is added to
+ * validate output formats with different input bpc (12/10/8).
+ */
+
+
typedef struct {
int drm_fd;
uint32_t devid;
--
2.25.1
^ permalink raw reply related [flat|nested] 17+ messages in thread* [igt-dev] [v6 08/10] lib/dsc: add helpers for vdsc fractional bpp debugfs entry
2023-08-01 13:38 [igt-dev] [v6 00/10] DSC Fractional BPP Val Support Swati Sharma
` (6 preceding siblings ...)
2023-08-01 13:38 ` [igt-dev] [v6 07/10] tests/i915/kms_dsc: add test summary Swati Sharma
@ 2023-08-01 13:38 ` Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 09/10] tests/i915/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma
` (6 subsequent siblings)
14 siblings, 0 replies; 17+ messages in thread
From: Swati Sharma @ 2023-08-01 13:38 UTC (permalink / raw)
To: igt-dev
Helper functions are added for getting/setting VDSC Fractional BPP
debugfs entry.
v2: -improved func description (Ankit)
-increased buff size (Ankit)
-asserted bpp_prec (Ankit)
v3: -return 0 on success instead of 1 (Jouni)
v4: -rebase
v5: -alignment fixes (Ankit)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
lib/igt_dsc.c | 84 +++++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_dsc.h | 5 +++
2 files changed, 89 insertions(+)
diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c
index 76a420c10..6c3b70421 100644
--- a/lib/igt_dsc.c
+++ b/lib/igt_dsc.c
@@ -205,3 +205,87 @@ int igt_force_dsc_output_format(int drmfd, char *connector_name,
return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_output_format", buf);
}
+
+static
+bool check_dsc_fractional_bpp_debugfs(int drmfd, char *connector_name,
+ const char *check_str)
+{
+ char file_name[128] = {0};
+ char buf[512];
+
+ sprintf(file_name, "%s/i915_dsc_fractional_bpp", connector_name);
+
+ igt_debugfs_read(drmfd, file_name, buf);
+
+ return strstr(buf, check_str);
+}
+
+/*
+ * igt_get_dsc_fractional_bpp_supported:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: DSC BPP precision supported by the sink.
+ * Precision value of
+ * 16 => 1/16
+ * 8 => 1/8
+ * 1 => fractional bpp not supported
+ */
+int igt_get_dsc_fractional_bpp_supported(int drmfd, char *connector_name)
+{
+ char file_name[128] = {0};
+ char buf[512];
+ char *start_loc;
+ int bpp_prec;
+
+ sprintf(file_name, "%s/i915_dsc_fec_support", connector_name);
+ igt_debugfs_read(drmfd, file_name, buf);
+
+ igt_assert(start_loc = strstr(buf, "DSC_Sink_BPP_Precision: "));
+ igt_assert_eq(sscanf(start_loc, "DSC_Sink_BPP_Precision: %d", &bpp_prec), 1);
+ igt_assert(bpp_prec > 0);
+
+ return bpp_prec;
+}
+
+/*
+ * igt_is_force_dsc_fractional_bpp_enabled:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: True if DSC Fractional BPP is force enabled (via debugfs) for the given connector,
+ * false otherwise.
+ */
+bool igt_is_force_dsc_fractional_bpp_enabled(int drmfd, char *connector_name)
+{
+ return check_dsc_fractional_bpp_debugfs(drmfd, connector_name, "Force_DSC_Fractional_BPP_Enable: yes");
+}
+
+/*
+ * igt_force_dsc_fractional_bpp_enable:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: 0 on success or negative error code, in case of failure.
+ */
+int igt_force_dsc_fractional_bpp_enable(int drmfd, char *connector_name)
+{
+ return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_fractional_bpp", "1");
+}
+
+/*
+ * igt_get_dsc_fractional_bpp_debugfs_fd:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: fd of the DSC Fractional BPP debugfs for the given connector,
+ * else returns -1.
+ */
+int igt_get_dsc_fractional_bpp_debugfs_fd(int drmfd, char *connector_name)
+{
+ char file_name[128] = {0};
+
+ sprintf(file_name, "%s/i915_dsc_fractional_bpp", connector_name);
+
+ return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY);
+}
diff --git a/lib/igt_dsc.h b/lib/igt_dsc.h
index b58743b5f..5d918ea7a 100644
--- a/lib/igt_dsc.h
+++ b/lib/igt_dsc.h
@@ -8,6 +8,7 @@
#include "igt_fb.h"
#include "igt_kms.h"
+#include "igt_core.h"
bool igt_is_dsc_supported_by_source(int drmfd);
bool igt_is_dsc_supported_by_sink(int drmfd, char *connector_name);
@@ -21,5 +22,9 @@ bool igt_is_dsc_output_format_supported_by_sink(int drmfd, char *connector_name,
enum dsc_output_format output_format);
int igt_force_dsc_output_format(int drmfd, char *connector_name,
enum dsc_output_format output_format);
+int igt_get_dsc_fractional_bpp_supported(int drmfd, char *connector_name);
+bool igt_is_force_dsc_fractional_bpp_enabled(int drmfd, char *connector_name);
+int igt_force_dsc_fractional_bpp_enable(int drmfd, char *connector_name);
+int igt_get_dsc_fractional_bpp_debugfs_fd(int drmfd, char *connector_name);
#endif
--
2.25.1
^ permalink raw reply related [flat|nested] 17+ messages in thread* [igt-dev] [v6 09/10] tests/i915/kms_dsc: enable validation for vdsc fractional bpp
2023-08-01 13:38 [igt-dev] [v6 00/10] DSC Fractional BPP Val Support Swati Sharma
` (7 preceding siblings ...)
2023-08-01 13:38 ` [igt-dev] [v6 08/10] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma
@ 2023-08-01 13:38 ` Swati Sharma
2023-08-01 13:38 ` [igt-dev] [v6 10/10] tests/i915/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma
` (5 subsequent siblings)
14 siblings, 0 replies; 17+ messages in thread
From: Swati Sharma @ 2023-08-01 13:38 UTC (permalink / raw)
To: igt-dev
Intel hardware supports fractional bpp from display_ver >= 14.
To test fractional bpp, debugfs entry (force_dsc_fractional_bpp)
is introduced. From the IGT; we are setting this debugfs entry.
However, before setting this debugfs entry, we are checking
capability i.e. fractional bpp is supported by platform and sink
both. In driver, if force_dsc_fractional_bpp is set then while
iterating over output bpp with fractional step size we will
continue if output_bpp is computed as integer and allow DSC iff
compressed bpp is fractional.
v2: -change in igt_describe (Ankit)
v3: -rebase
v4: -add wrapper for source support of fractional bpp (Ankit)
v5: -fix if() condition (Ankit)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/i915/kms_dsc.c | 28 ++++++++++++++-
tests/i915/kms_dsc_helper.c | 71 +++++++++++++++++++++++++++++++++++++
tests/i915/kms_dsc_helper.h | 4 +++
3 files changed, 102 insertions(+), 1 deletion(-)
diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 5bdac57e2..0982cf325 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -41,6 +41,7 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression");
#define TEST_DSC_BPC (1<<0)
#define TEST_DSC_FORMAT (1<<1)
#define TEST_DSC_OUTPUT_FORMAT (1<<2)
+#define TEST_DSC_FRACTIONAL_BPP (1<<3)
/*
* Starting from gen11, intel driver supports DSC1.1. For validating
@@ -48,7 +49,7 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression");
* If the sink does support DSC, we will validate different
* scenarios by forcing dsc. Outline of the tests is as follows:
* (i) basic modeset (ii) input bpc (iii) pixel formats
- * (iv) output formats
+ * (iv) output formats (v) fractional bpp
* In the basic subtest, we perform modeset with default parameters.
* Input bpc and pixel formats subtests, we perform modeset
* with different input bpc (12/10/8) and pixel formats (YUV/RGB),
@@ -57,6 +58,9 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression");
* However, in the output-format subtest, we verify different
* output formats (RGB/YCBCR444/YCBCR420). Also, test is added to
* validate output formats with different input bpc (12/10/8).
+ * Lastly, fractional bpp is tested with default parameters.
+ * In this, driver will ignore integer compressed bpp value and
+ * will do modeset with fractional bpp only.
*/
@@ -161,6 +165,12 @@ static void update_display(data_t *data, uint32_t test_type)
force_dsc_output_format(data->drm_fd, data->output, data->output_format);
}
+ if (test_type & TEST_DSC_FRACTIONAL_BPP) {
+ igt_debug("DSC fractional bpp is supported on %s\n", data->output->name);
+ save_force_dsc_fractional_bpp_en(data->drm_fd, data->output);
+ force_dsc_fractional_bpp_enable(data->drm_fd, data->output);
+ }
+
igt_output_set_pipe(output, data->pipe);
primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
@@ -220,6 +230,7 @@ static void update_display(data_t *data, uint32_t test_type)
enabled ? "ON" : "OFF");
restore_force_dsc_en();
+ restore_force_dsc_fractional_bpp_en();
if (test_type & TEST_DSC_BPC) {
current_bpc = igt_get_pipe_current_bpc(data->drm_fd, data->pipe);
@@ -271,6 +282,11 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc,
data->output, data->output_format)))
continue;
+ if ((test_type & TEST_DSC_FRACTIONAL_BPP) &&
+ (!is_dsc_fractional_bpp_supported(data->disp_ver,
+ data->drm_fd, data->output)))
+ continue;
+
if (test_type & TEST_DSC_OUTPUT_FORMAT)
snprintf(&name[0][0], LEN, "-%s", kmstest_dsc_output_format_str(data->output_format));
if (test_type & TEST_DSC_FORMAT)
@@ -381,6 +397,16 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
}
}
+ igt_describe("Tests fractional compressed bpp functionality if supported "
+ "by a connector by forcing fractional_bpp on all connectors that support it "
+ "with default parameter. While finding the optimum compressed bpp, driver will "
+ "skip over the compressed bpps with integer values. It will go ahead with DSC, "
+ "iff compressed bpp is fractional, failing in which, it will fail the commit.");
+ igt_subtest_with_dynamic("dsc-fractional-bpp")
+ test_dsc(&data, TEST_DSC_FRACTIONAL_BPP,
+ DEFAULT_BPC, DRM_FORMAT_XRGB8888,
+ DSC_FORMAT_RGB);
+
igt_fixture {
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
diff --git a/tests/i915/kms_dsc_helper.c b/tests/i915/kms_dsc_helper.c
index ae59edb6b..a396a8489 100644
--- a/tests/i915/kms_dsc_helper.c
+++ b/tests/i915/kms_dsc_helper.c
@@ -6,7 +6,9 @@
#include "kms_dsc_helper.h"
static bool force_dsc_en_orig;
+static bool force_dsc_fractional_bpp_en_orig;
static int force_dsc_restore_fd = -1;
+static int force_dsc_fractional_bpp_restore_fd = -1;
void force_dsc_enable(int drmfd, igt_output_t *output)
{
@@ -51,6 +53,7 @@ void restore_force_dsc_en(void)
void kms_dsc_exit_handler(int sig)
{
restore_force_dsc_en();
+ restore_force_dsc_fractional_bpp_en();
}
bool is_dsc_supported_by_source(int drmfd)
@@ -143,3 +146,71 @@ bool is_dsc_output_format_supported(int drmfd, int disp_ver, igt_output_t *outpu
return true;
}
+
+void force_dsc_fractional_bpp_enable(int drmfd, igt_output_t *output)
+{
+ int ret;
+
+ igt_debug("Forcing DSC Fractional BPP on %s\n", output->name);
+ ret = igt_force_dsc_fractional_bpp_enable(drmfd, output->name);
+ igt_assert_f(ret == 0, "forcing dsc fractional bpp debugfs_write failed\n");
+}
+
+void save_force_dsc_fractional_bpp_en(int drmfd, igt_output_t *output)
+{
+ force_dsc_fractional_bpp_en_orig =
+ igt_is_force_dsc_fractional_bpp_enabled(drmfd, output->name);
+ force_dsc_fractional_bpp_restore_fd =
+ igt_get_dsc_fractional_bpp_debugfs_fd(drmfd, output->name);
+ igt_assert(force_dsc_fractional_bpp_restore_fd >= 0);
+}
+
+void restore_force_dsc_fractional_bpp_en(void)
+{
+ if (force_dsc_fractional_bpp_restore_fd < 0)
+ return;
+
+ igt_debug("Restoring DSC Fractional BPP enable\n");
+ igt_assert(write(force_dsc_fractional_bpp_restore_fd, force_dsc_fractional_bpp_en_orig ? "1" : "0", 1) == 1);
+
+ close(force_dsc_fractional_bpp_restore_fd);
+ force_dsc_fractional_bpp_restore_fd = -1;
+}
+
+static
+bool is_dsc_fractional_bpp_supported_by_sink(int drmfd, char *connector_name)
+{
+ int bpp_prec;
+
+ bpp_prec = igt_get_dsc_fractional_bpp_supported(drmfd, connector_name);
+
+ if (bpp_prec == 1)
+ return false;
+
+ return true;
+}
+
+static
+bool is_dsc_fractional_bpp_supported_by_source(int disp_ver)
+{
+ if (disp_ver < 14) {
+ igt_debug("DSC fractional bpp not supported on D13 and older platforms\n");
+ return false;
+ }
+
+ return true;
+}
+
+bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *output)
+{
+ if (is_dsc_fractional_bpp_supported_by_source(disp_ver)) {
+ if (!is_dsc_fractional_bpp_supported_by_sink(drmfd, output->name)) {
+ igt_debug("DSC fractional bpp not supported on connector %s\n",
+ output->name);
+ return false;
+ } else
+ return true;
+ }
+
+ return false;
+}
diff --git a/tests/i915/kms_dsc_helper.h b/tests/i915/kms_dsc_helper.h
index 28ed56d83..4dbd88fe7 100644
--- a/tests/i915/kms_dsc_helper.h
+++ b/tests/i915/kms_dsc_helper.h
@@ -34,5 +34,9 @@ void force_dsc_output_format(int drmfd, igt_output_t *output,
enum dsc_output_format output_format);
bool is_dsc_output_format_supported(int disp_ver, int drmfd, igt_output_t *output,
enum dsc_output_format output_format);
+void force_dsc_fractional_bpp_enable(int drmfd, igt_output_t *output);
+void save_force_dsc_fractional_bpp_en(int drmfd, igt_output_t *output);
+void restore_force_dsc_fractional_bpp_en(void);
+bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *output);
#endif
--
2.25.1
^ permalink raw reply related [flat|nested] 17+ messages in thread* [igt-dev] [v6 10/10] tests/i915/kms_dsc: add test to validate fractional bpp with input bpc
2023-08-01 13:38 [igt-dev] [v6 00/10] DSC Fractional BPP Val Support Swati Sharma
` (8 preceding siblings ...)
2023-08-01 13:38 ` [igt-dev] [v6 09/10] tests/i915/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma
@ 2023-08-01 13:38 ` Swati Sharma
2023-08-01 14:44 ` [igt-dev] ✓ Fi.CI.BAT: success for DSC Fractional BPP Val Support (rev8) Patchwork
` (4 subsequent siblings)
14 siblings, 0 replies; 17+ messages in thread
From: Swati Sharma @ 2023-08-01 13:38 UTC (permalink / raw)
To: igt-dev
New subtest is added to validate fractional bpp with different
input bpc.
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/i915/kms_dsc.c | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 0982cf325..40d3c636d 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -60,7 +60,8 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression");
* validate output formats with different input bpc (12/10/8).
* Lastly, fractional bpp is tested with default parameters.
* In this, driver will ignore integer compressed bpp value and
- * will do modeset with fractional bpp only.
+ * will do modeset with fractional bpp only. Test is added to
+ * validate fractional bpp with different input bpc (12/10/8).
*/
@@ -407,6 +408,16 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
DEFAULT_BPC, DRM_FORMAT_XRGB8888,
DSC_FORMAT_RGB);
+ igt_describe("Tests fractional compressed bpp functionality if supported "
+ "by a connector by forcing fractional_bpp on all connectors that support it "
+ "with certain input BPC for the connector.");
+ igt_subtest_with_dynamic("dsc-fractional-bpp-with-bpc") {
+ for (int j = 0; j < ARRAY_SIZE(bpc_list); j++)
+ test_dsc(&data, TEST_DSC_FRACTIONAL_BPP | TEST_DSC_BPC,
+ bpc_list[j], DRM_FORMAT_XRGB8888,
+ DSC_FORMAT_RGB);
+ }
+
igt_fixture {
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 17+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for DSC Fractional BPP Val Support (rev8)
2023-08-01 13:38 [igt-dev] [v6 00/10] DSC Fractional BPP Val Support Swati Sharma
` (9 preceding siblings ...)
2023-08-01 13:38 ` [igt-dev] [v6 10/10] tests/i915/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma
@ 2023-08-01 14:44 ` Patchwork
2023-08-01 14:45 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
` (3 subsequent siblings)
14 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2023-08-01 14:44 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 14889 bytes --]
== Series Details ==
Series: DSC Fractional BPP Val Support (rev8)
URL : https://patchwork.freedesktop.org/series/117493/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13455 -> IGTPW_9492
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/index.html
Participating hosts (40 -> 38)
------------------------------
Additional (1): bat-atsm-1
Missing (3): bat-dg2-14 bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9492 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-adlp-11: NOTRUN -> [SKIP][1] ([i915#7456])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-adlp-11/igt@debugfs_test@basic-hwmon.html
* igt@gem_exec_suspend@basic-s0@smem:
- bat-atsm-1: NOTRUN -> [DMESG-WARN][2] ([i915#8841]) +3 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_exec_suspend@basic-s3@lmem0:
- bat-atsm-1: NOTRUN -> [DMESG-WARN][3] ([i915#8504] / [i915#8841])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@gem_exec_suspend@basic-s3@lmem0.html
* igt@gem_mmap@basic:
- bat-atsm-1: NOTRUN -> [SKIP][4] ([i915#4083])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@gem_mmap@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-atsm-1: NOTRUN -> [SKIP][5] ([i915#4077]) +2 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-atsm-1: NOTRUN -> [SKIP][6] ([i915#4079]) +1 similar issue
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@gem_tiled_pread_basic.html
- bat-adlp-11: NOTRUN -> [SKIP][7] ([i915#3282])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-adlp-11/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-tgl-1115g4: [PASS][8] -> [FAIL][9] ([i915#7940])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@module-reload:
- fi-rkl-11600: [PASS][10] -> [FAIL][11] ([i915#7940])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-atsm-1: NOTRUN -> [SKIP][12] ([i915#6621])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@guc:
- bat-rpls-1: NOTRUN -> [DMESG-WARN][13] ([i915#7852])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-rpls-1/igt@i915_selftest@live@guc.html
* igt@i915_selftest@live@slpc:
- bat-rpls-1: NOTRUN -> [DMESG-WARN][14] ([i915#6367])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-rpls-1/igt@i915_selftest@live@slpc.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-atsm-1: NOTRUN -> [SKIP][15] ([i915#6645])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@i915_suspend@basic-s3-without-i915.html
- bat-rpls-1: NOTRUN -> [ABORT][16] ([i915#6687] / [i915#7978] / [i915#8668])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@size-max:
- bat-atsm-1: NOTRUN -> [SKIP][17] ([i915#6077]) +36 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@kms_addfb_basic@size-max.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- bat-adlp-11: NOTRUN -> [SKIP][18] ([i915#7828]) +7 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-adlp-11/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- bat-rpls-2: NOTRUN -> [SKIP][19] ([i915#7828])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-rpls-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adlp-11: NOTRUN -> [SKIP][20] ([i915#4103]) +1 similar issue
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- bat-atsm-1: NOTRUN -> [SKIP][21] ([i915#6078]) +19 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
- bat-adlp-11: NOTRUN -> [ABORT][22] ([i915#4423] / [i915#6868])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
* igt@kms_flip@basic-plain-flip:
- bat-atsm-1: NOTRUN -> [SKIP][23] ([i915#6166]) +3 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@kms_flip@basic-plain-flip.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-atsm-1: NOTRUN -> [SKIP][24] ([i915#6093]) +3 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- bat-atsm-1: NOTRUN -> [SKIP][25] ([i915#1836]) +7 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][26] ([i915#1845] / [i915#5354]) +3 similar issues
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- bat-rpls-2: NOTRUN -> [SKIP][27] ([i915#1845])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-rpls-2/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-3:
- bat-dg2-11: [PASS][28] -> [INCOMPLETE][29] ([i915#7908])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/bat-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-3.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-3.html
* igt@kms_prop_blob@basic:
- bat-atsm-1: NOTRUN -> [SKIP][30] ([i915#7357])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@kms_prop_blob@basic.html
* igt@kms_psr@sprite_plane_onoff:
- bat-atsm-1: NOTRUN -> [SKIP][31] ([i915#1072]) +3 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-atsm-1: NOTRUN -> [SKIP][32] ([i915#6094])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-atsm-1: NOTRUN -> [SKIP][33] ([fdo#109295] / [i915#6078])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-atsm-1: NOTRUN -> [SKIP][34] ([fdo#109295] / [i915#4077]) +1 similar issue
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-atsm-1: NOTRUN -> [SKIP][35] ([fdo#109295]) +2 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-atsm-1/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_module_load@load:
- bat-adlp-11: [ABORT][36] ([i915#4423]) -> [PASS][37]
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/bat-adlp-11/igt@i915_module_load@load.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-adlp-11/igt@i915_module_load@load.html
* igt@i915_pm_rpm@basic-rte:
- fi-tgl-1115g4: [FAIL][38] ([i915#7940]) -> [PASS][39]
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
* igt@i915_selftest@live@migrate:
- bat-dg2-11: [DMESG-WARN][40] ([i915#7699]) -> [PASS][41]
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/bat-dg2-11/igt@i915_selftest@live@migrate.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-dg2-11/igt@i915_selftest@live@migrate.html
* igt@i915_selftest@live@requests:
- bat-mtlp-8: [DMESG-FAIL][42] ([i915#8497]) -> [PASS][43]
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/bat-mtlp-8/igt@i915_selftest@live@requests.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-mtlp-8/igt@i915_selftest@live@requests.html
- bat-rpls-1: [ABORT][44] ([i915#4983] / [i915#7911] / [i915#7920]) -> [PASS][45]
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/bat-rpls-1/igt@i915_selftest@live@requests.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-rpls-1/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@slpc:
- bat-mtlp-8: [DMESG-WARN][46] ([i915#6367]) -> [PASS][47]
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/bat-mtlp-8/igt@i915_selftest@live@slpc.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-mtlp-8/igt@i915_selftest@live@slpc.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-rpls-2: [ABORT][48] ([i915#6687] / [i915#7978] / [i915#8668]) -> [PASS][49]
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/bat-rpls-2/igt@i915_suspend@basic-s3-without-i915.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-rpls-2/igt@i915_suspend@basic-s3-without-i915.html
#### Warnings ####
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-kbl-guc: [FAIL][50] ([i915#7940]) -> [SKIP][51] ([fdo#109271])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@basic-rte:
- fi-kbl-8809g: [FAIL][52] ([i915#7940]) -> [FAIL][53] ([i915#8843])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/fi-kbl-8809g/igt@i915_pm_rpm@basic-rte.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/fi-kbl-8809g/igt@i915_pm_rpm@basic-rte.html
* igt@kms_psr@cursor_plane_move:
- bat-rplp-1: [SKIP][54] ([i915#1072]) -> [ABORT][55] ([i915#8434] / [i915#8668])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/bat-rplp-1/igt@kms_psr@cursor_plane_move.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/bat-rplp-1/igt@kms_psr@cursor_plane_move.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077
[i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078
[i915#6093]: https://gitlab.freedesktop.org/drm/intel/issues/6093
[i915#6094]: https://gitlab.freedesktop.org/drm/intel/issues/6094
[i915#6166]: https://gitlab.freedesktop.org/drm/intel/issues/6166
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
[i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868
[i915#7357]: https://gitlab.freedesktop.org/drm/intel/issues/7357
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7852]: https://gitlab.freedesktop.org/drm/intel/issues/7852
[i915#7908]: https://gitlab.freedesktop.org/drm/intel/issues/7908
[i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911
[i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
[i915#8434]: https://gitlab.freedesktop.org/drm/intel/issues/8434
[i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497
[i915#8504]: https://gitlab.freedesktop.org/drm/intel/issues/8504
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8843]: https://gitlab.freedesktop.org/drm/intel/issues/8843
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7411 -> IGTPW_9492
CI-20190529: 20190529
CI_DRM_13455: 9a1dbae51db9a61173f3a613e406c15d9c990f7e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9492: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/index.html
IGT_7411: 7411
Testlist changes
----------------
+igt@kms_dsc@dsc-fractional-bpp
+igt@kms_dsc@dsc-fractional-bpp-with-bpc
+igt@kms_dsc@dsc-with-output-formats-with-bpc
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/index.html
[-- Attachment #2: Type: text/html, Size: 17735 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* [igt-dev] ○ CI.xeBAT: info for DSC Fractional BPP Val Support (rev8)
2023-08-01 13:38 [igt-dev] [v6 00/10] DSC Fractional BPP Val Support Swati Sharma
` (10 preceding siblings ...)
2023-08-01 14:44 ` [igt-dev] ✓ Fi.CI.BAT: success for DSC Fractional BPP Val Support (rev8) Patchwork
@ 2023-08-01 14:45 ` Patchwork
2023-08-01 18:15 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
` (2 subsequent siblings)
14 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2023-08-01 14:45 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 335 bytes --]
== Series Details ==
Series: DSC Fractional BPP Val Support (rev8)
URL : https://patchwork.freedesktop.org/series/117493/
State : info
== Summary ==
Participating hosts:
bat-pvc-2
bat-atsm-2
bat-dg2-oem2
bat-adlp-7
Missing hosts results[0]:
Results: [IGTPW_9492](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9492/index.html)
[-- Attachment #2: Type: text/html, Size: 851 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* [igt-dev] ✗ Fi.CI.IGT: failure for DSC Fractional BPP Val Support (rev8)
2023-08-01 13:38 [igt-dev] [v6 00/10] DSC Fractional BPP Val Support Swati Sharma
` (11 preceding siblings ...)
2023-08-01 14:45 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
@ 2023-08-01 18:15 ` Patchwork
2023-08-03 3:51 ` Patchwork
2023-08-03 4:14 ` Patchwork
14 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2023-08-01 18:15 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 83418 bytes --]
== Series Details ==
Series: DSC Fractional BPP Val Support (rev8)
URL : https://patchwork.freedesktop.org/series/117493/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13455_full -> IGTPW_9492_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9492_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9492_full, please notify your bug team 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_9492/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9492_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_dsc@dsc-fractional-bpp (NEW):
- shard-dg1: NOTRUN -> [SKIP][1] +2 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp.html
- shard-mtlp: NOTRUN -> [SKIP][2] +1 similar issue
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_dsc@dsc-fractional-bpp.html
* {igt@kms_dsc@dsc-fractional-bpp-with-bpc} (NEW):
- shard-dg2: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* {igt@kms_dsc@dsc-with-output-formats-with-bpc} (NEW):
- shard-rkl: NOTRUN -> [SKIP][4] +1 similar issue
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][5] +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a4:
- shard-dg1: [PASS][6] -> [FAIL][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-16/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a4.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-14/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a4.html
New tests
---------
New tests have been introduced between CI_DRM_13455_full and IGTPW_9492_full:
### New IGT tests (3) ###
* igt@kms_dsc@dsc-fractional-bpp:
- Statuses : 4 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_9492_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][9] ([i915#6122])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@api_intel_bb@render-ccs.html
* igt@drm_fdinfo@busy-hang@bcs0:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +4 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@drm_fdinfo@busy-hang@bcs0.html
* igt@drm_fdinfo@busy-hang@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +11 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@drm_fdinfo@busy-hang@rcs0.html
* igt@drm_fdinfo@busy@ccs0:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +20 similar issues
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@drm_fdinfo@busy@ccs0.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#3281]) +4 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@gem_bad_reloc@negative-reloc-lut.html
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3281]) +5 similar issues
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4873])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@gem_caching@read-writes.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#5325])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8555]) +1 similar issue
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@smoketest:
- shard-snb: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#1099]) +1 similar issue
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb2/igt@gem_ctx_persistence@smoketest.html
* igt@gem_eio@hibernate:
- shard-dg1: [PASS][21] -> [ABORT][22] ([i915#4391] / [i915#7975] / [i915#8213])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-12/igt@gem_eio@hibernate.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-14/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-snb: NOTRUN -> [FAIL][23] ([i915#8898])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb2/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][24] -> [FAIL][25] ([i915#5784])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-17/igt@gem_eio@unwedge-stress.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#4771])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#6334])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#6344])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][30] -> [FAIL][31] ([i915#2846])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [PASS][33] -> [FAIL][34] ([i915#2842]) +1 similar issue
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4473] / [i915#4771]) +1 similar issue
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@syncobj-backward-timeline-chain-engines:
- shard-snb: NOTRUN -> [SKIP][36] ([fdo#109271]) +238 similar issues
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb5/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +1 similar issue
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#7697]) +1 similar issue
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#3281]) +2 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +11 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4537] / [i915#4812]) +1 similar issue
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4613]) +1 similar issue
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-10/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#4613])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_media_vme:
- shard-tglu: NOTRUN -> [SKIP][46] ([i915#284])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-6/igt@gem_media_vme.html
* igt@gem_mmap@bad-size:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4083]) +4 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@gem_mmap@bad-size.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4077]) +13 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_gtt@flink-race:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4077]) +10 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_gtt@medium-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4077])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@gem_mmap_gtt@medium-copy-odd.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4083]) +4 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#3282]) +6 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@write:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#3282])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@gem_partial_pwrite_pread@write.html
* igt@gem_pwrite@basic-random:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3282]) +2 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4270])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4270]) +1 similar issue
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#4270]) +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-9/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#4270])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#8428]) +2 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4079])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4079])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4885])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3297])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3297] / [i915#4880])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3297]) +2 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#3297])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#3297] / [i915#4958])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#3297])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-8/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-dg2: NOTRUN -> [FAIL][69] ([fdo#103375])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen3_render_linear_blits:
- shard-dg2: NOTRUN -> [SKIP][70] ([fdo#109289]) +5 similar issues
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@gen3_render_linear_blits.html
* igt@gen9_exec_parse@allowed-all:
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#2527] / [i915#2856])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-6/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-apl: [PASS][72] -> [ABORT][73] ([i915#5566])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-apl4/igt@gen9_exec_parse@allowed-single.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-apl3/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#2856]) +3 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-out:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#2527])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#2856]) +1 similar issue
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@gen9_exec_parse@secure-batches.html
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#2527])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@gen9_exec_parse@secure-batches.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4881])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@i915_fb_tiling.html
* igt@i915_hangman@engine-engine-hang@vcs0:
- shard-mtlp: [PASS][79] -> [FAIL][80] ([i915#7069])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-6/igt@i915_hangman@engine-engine-hang@vcs0.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@i915_hangman@engine-engine-hang@vcs0.html
* igt@i915_module_load@load:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#6227])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@i915_module_load@load.html
* igt@i915_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][82] ([i915#7561])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-4/igt@i915_pm_backlight@fade-with-dpms.html
* igt@i915_pm_backlight@fade-with-suspend:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#5354] / [i915#7561])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@i915_pm_backlight@fade-with-suspend.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [PASS][84] -> [SKIP][85] ([fdo#109271])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-apl2/igt@i915_pm_dc@dc9-dpms.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-apl6/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: NOTRUN -> [SKIP][86] ([fdo#109289]) +1 similar issue
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- shard-dg1: [PASS][87] -> [FAIL][88] ([i915#7691])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@cursor-dpms:
- shard-tglu: [PASS][89] -> [FAIL][90] ([i915#7940]) +3 similar issues
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-tglu-3/igt@i915_pm_rpm@cursor-dpms.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-4/igt@i915_pm_rpm@cursor-dpms.html
- shard-dg1: [PASS][91] -> [FAIL][92] ([i915#7940])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-17/igt@i915_pm_rpm@cursor-dpms.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-15/igt@i915_pm_rpm@cursor-dpms.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][93] -> [SKIP][94] ([i915#1397])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
- shard-rkl: [PASS][95] -> [SKIP][96] ([i915#1397])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-4/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-dg1: [PASS][97] -> [SKIP][98] ([i915#1397])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#1397])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-pc8-residency-stress:
- shard-dg2: NOTRUN -> [SKIP][100] ([fdo#109506])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#6621])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#8925])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#8437])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#6188])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#6188])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_selftest@live@gt_mocs:
- shard-mtlp: [PASS][106] -> [DMESG-FAIL][107] ([i915#7059])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-5/igt@i915_selftest@live@gt_mocs.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@i915_selftest@live@gt_mocs.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#4212])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4212]) +2 similar issues
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#8502]) +7 similar issues
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][111] ([i915#8247]) +3 similar issues
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-b-vga-1:
- shard-snb: NOTRUN -> [FAIL][112] ([i915#8247]) +1 similar issue
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb6/igt@kms_async_flips@crc@pipe-b-vga-1.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][113] ([i915#8561]) +3 similar issues
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#6228])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#404])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#1769])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][117] ([fdo#111614]) +7 similar issues
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][118] ([fdo#111614]) +1 similar issue
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-8/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][120] -> [FAIL][121] ([i915#5138]) +1 similar issue
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: NOTRUN -> [FAIL][122] ([i915#3743]) +2 similar issues
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5286])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][124] ([fdo#111614] / [i915#3638])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: [PASS][125] -> [FAIL][126] ([i915#3743])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#5190]) +18 similar issues
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][128] ([fdo#111615]) +8 similar issues
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][130] ([fdo#110723]) +1 similar issue
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +5 similar issues
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][132] ([fdo#111615])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-15/igt@kms_big_fb@yf-tiled-addfb.html
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6187]) +1 similar issue
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#3689] / [i915#5354]) +26 similar issues
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#3886] / [i915#6095]) +6 similar issues
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#3689] / [i915#5354] / [i915#6095])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-7/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#5354]) +59 similar issues
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#3689] / [i915#5354] / [i915#6095])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-18/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#5354] / [i915#6095]) +5 similar issues
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#3689] / [i915#3886] / [i915#5354]) +14 similar issues
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-primary-basic-yf_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][141] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-9/igt@kms_ccs@pipe-c-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#5354] / [i915#6095]) +5 similar issues
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-4/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-16/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#5354]) +8 similar issues
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs_cc:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6095]) +20 similar issues
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#5354] / [i915#6095]) +3 similar issues
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][147] ([fdo#111827])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-mtlp: NOTRUN -> [SKIP][148] ([fdo#111827])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#7828]) +12 similar issues
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#7828])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#7828]) +4 similar issues
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#7828]) +1 similar issue
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-15/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@legacy:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#6944])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei_interface:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#8063])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_content_protection@mei_interface.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#7118])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#7116])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#7118])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][158] ([fdo#109279] / [i915#3359])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#8814]) +1 similar issue
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3359]) +1 similar issue
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#3555]) +2 similar issues
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#3359])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#3555]) +8 similar issues
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3546]) +1 similar issue
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][165] ([fdo#109274] / [i915#5354]) +5 similar issues
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][166] -> [FAIL][167] ([i915#2346])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#4103] / [i915#4213]) +1 similar issue
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#4213])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3804])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#8812])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-gtt.html
* {igt@kms_dsc@dsc-with-output-formats-with-bpc} (NEW):
- shard-glk: NOTRUN -> [SKIP][172] ([fdo#109271]) +3 similar issues
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-glk9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#3469])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3637]) +4 similar issues
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-snb: NOTRUN -> [SKIP][175] ([fdo#109271] / [fdo#111767])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-dg1: NOTRUN -> [SKIP][176] ([fdo#111825]) +4 similar issues
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-15/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-tglu: NOTRUN -> [SKIP][177] ([fdo#109274] / [i915#3637])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-6/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][178] ([fdo#109274]) +6 similar issues
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][179] ([fdo#111825]) +1 similar issue
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#8381]) +1 similar issue
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend@b-dp1:
- shard-apl: [PASS][181] -> [ABORT][182] ([i915#180])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-apl3/igt@kms_flip@flip-vs-suspend@b-dp1.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-apl2/igt@kms_flip@flip-vs-suspend@b-dp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#2587] / [i915#2672])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#2672]) +3 similar issues
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#8810]) +1 similar issue
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#2672]) +1 similar issue
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [PASS][187] -> [FAIL][188] ([i915#6880])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [FAIL][189] ([i915#6880])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#8708]) +14 similar issues
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#1825]) +23 similar issues
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#8708]) +2 similar issues
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][193] ([fdo#109280]) +4 similar issues
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#5460])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#3458]) +1 similar issue
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][196] ([fdo#111825] / [i915#1825]) +7 similar issues
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#8708])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#3458]) +22 similar issues
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#3023]) +4 similar issues
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8228]) +1 similar issue
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@static-toggle:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#8228])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-14/igt@kms_hdr@static-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8228])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#8228]) +3 similar issues
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#4816])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
- shard-snb: NOTRUN -> [DMESG-WARN][205] ([i915#8841]) +8 similar issues
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#8821])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-apl: NOTRUN -> [SKIP][207] ([fdo#109271]) +3 similar issues
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-apl1/igt@kms_plane_scaling@intel-max-src-size.html
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#6953])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#6953])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size.html
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#6953])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#5176]) +11 similar issues
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#5176]) +5 similar issues
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#5176]) +3 similar issues
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#5235]) +5 similar issues
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#5235]) +11 similar issues
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#5235]) +7 similar issues
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#5235]) +11 similar issues
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1.html
* igt@kms_prime@basic-crc-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#6524])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#658]) +2 similar issues
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
- shard-rkl: NOTRUN -> [SKIP][220] ([fdo#111068] / [i915#658])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#4348]) +1 similar issue
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg1: NOTRUN -> [SKIP][222] ([fdo#111068] / [i915#658])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@basic:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#1072]) +2 similar issues
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_psr@basic.html
* igt@kms_psr@psr2_sprite_render:
- shard-tglu: NOTRUN -> [SKIP][224] ([fdo#110189]) +3 similar issues
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-4/igt@kms_psr@psr2_sprite_render.html
* igt@kms_psr@sprite_blt:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#1072]) +7 similar issues
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_psr@sprite_blt.html
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#1072])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@kms_psr@sprite_blt.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#4235])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-rkl: [PASS][228] -> [ABORT][229] ([i915#7461])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-6/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#4235] / [i915#5190])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#3555]) +1 similar issue
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_selftest@drm_damage:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#8661]) +3 similar issues
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@kms_selftest@drm_damage.html
- shard-snb: NOTRUN -> [SKIP][233] ([fdo#109271] / [i915#8661])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb6/igt@kms_selftest@drm_damage.html
* igt@kms_selftest@drm_format:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#8661])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@kms_selftest@drm_format.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#8623])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@universal-plane-pipe-a-functional:
- shard-mtlp: [PASS][236] -> [DMESG-WARN][237] ([i915#2017] / [i915#5954])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-6/igt@kms_universal_plane@universal-plane-pipe-a-functional.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_universal_plane@universal-plane-pipe-a-functional.html
* igt@kms_vblank@pipe-c-wait-idle-hang:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#4070] / [i915#6768])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_vblank@pipe-c-wait-idle-hang.html
* igt@kms_vblank@pipe-d-query-idle-hang:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#4070] / [i915#533] / [i915#6768])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@kms_vblank@pipe-d-query-idle-hang.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#8808])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_vrr@flip-suspend.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#2437])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-mtlp: NOTRUN -> [SKIP][242] ([fdo#109289]) +3 similar issues
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#7387])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@perf@global-sseu-config-invalid.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#2433])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-mtlp: [PASS][245] -> [FAIL][246] ([i915#4349]) +2 similar issues
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-7/igt@perf_pmu@busy-double-start@vcs1.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@perf_pmu@busy-double-start@vcs1.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][247] -> [FAIL][248] ([i915#4349]) +1 similar issue
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][249] ([i915#5793] / [i915#6121])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6@runtime-pm-long-gt1:
- shard-mtlp: [PASS][250] -> [SKIP][251] ([i915#8537]) +2 similar issues
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-8/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][252] ([fdo#109291])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@prime_udl.html
- shard-rkl: NOTRUN -> [SKIP][253] ([fdo#109291])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@prime_udl.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#3708] / [i915#4077])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3708] / [i915#4077])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@coherency-blt:
- shard-mtlp: NOTRUN -> [FAIL][256] ([i915#8445])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@prime_vgem@coherency-blt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#3708])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@prime_vgem@fence-read-hang.html
* igt@v3d/v3d_get_param@get-bad-flags:
- shard-rkl: NOTRUN -> [SKIP][258] ([fdo#109315]) +4 similar issues
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@v3d/v3d_get_param@get-bad-flags.html
* igt@v3d/v3d_get_param@get-bad-param:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#2575]) +8 similar issues
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@v3d/v3d_get_param@get-bad-param.html
* igt@v3d/v3d_submit_csd@bad-multisync-in-sync:
- shard-tglu: NOTRUN -> [SKIP][260] ([fdo#109315] / [i915#2575])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-3/igt@v3d/v3d_submit_csd@bad-multisync-in-sync.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#2575]) +13 similar issues
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@vc4/vc4_label_bo@set-bad-name:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#7711])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@vc4/vc4_label_bo@set-bad-name.html
* igt@vc4/vc4_mmap@mmap-bo:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#7711]) +7 similar issues
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@vc4/vc4_mmap@mmap-bo.html
* igt@vc4/vc4_perfmon@create-single-perfmon:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#7711]) +4 similar issues
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@vc4/vc4_perfmon@create-single-perfmon.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#7711])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
* igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#2575])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-5/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][267] ([i915#7742]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][269] ([i915#6268]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][271] ([i915#5493]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
- shard-dg1: [TIMEOUT][273] ([i915#5493]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_hangman@detector@vcs0:
- shard-mtlp: [FAIL][275] ([i915#8456]) -> [PASS][276] +2 similar issues
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-7/igt@i915_hangman@detector@vcs0.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@i915_hangman@detector@vcs0.html
* igt@i915_hangman@gt-engine-hang@vcs0:
- shard-mtlp: [FAIL][277] ([i915#7069]) -> [PASS][278] +1 similar issue
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-7/igt@i915_hangman@gt-engine-hang@vcs0.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@i915_hangman@gt-engine-hang@vcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][279] ([i915#8489] / [i915#8668]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][281] ([i915#1397]) -> [PASS][282] +1 similar issue
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-17/igt@i915_pm_rpm@dpms-lpsp.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html
* igt@i915_pm_rpm@i2c:
- shard-dg2: [FAIL][283] ([i915#8717]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-2/igt@i915_pm_rpm@i2c.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@i915_pm_rpm@i2c.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][285] ([i915#1397]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][287] ([i915#6763]) -> [PASS][288]
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-5/igt@i915_selftest@live@workarounds.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@i915_selftest@perf@request:
- shard-mtlp: [DMESG-FAIL][289] ([i915#8573]) -> [PASS][290]
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-8/igt@i915_selftest@perf@request.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@i915_selftest@perf@request.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-glk: [FAIL][291] ([i915#72]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-glk3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-glk5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-mtlp: [FAIL][293] ([i915#8248]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-3/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][295] ([i915#2346]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@perf_pmu@busy-double-start@ccs3:
- shard-dg2: [FAIL][297] ([i915#4349]) -> [PASS][298] +3 similar issues
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-6/igt@perf_pmu@busy-double-start@ccs3.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@perf_pmu@busy-double-start@ccs3.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][299] ([i915#4349]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-7/igt@perf_pmu@busy-double-start@rcs0.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-dg1: [FAIL][301] ([i915#4349]) -> [PASS][302] +2 similar issues
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-18/igt@perf_pmu@busy-double-start@vcs1.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@perf_pmu@busy-double-start@vcs1.html
#### Warnings ####
* igt@gem_exec_whisper@basic-contexts-forked-all:
- shard-mtlp: [TIMEOUT][303] ([i915#7392] / [i915#8628]) -> [ABORT][304] ([i915#7392] / [i915#8131])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-forked-all.html
* igt@i915_pm_rpm@i2c:
- shard-dg1: [DMESG-WARN][305] ([i915#4391] / [i915#4423]) -> [DMESG-WARN][306] ([i915#4391])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-15/igt@i915_pm_rpm@i2c.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@i915_pm_rpm@i2c.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-mtlp: [DMESG-FAIL][307] ([i915#2017] / [i915#5954]) -> [FAIL][308] ([i915#2346])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][309] ([fdo#110189] / [i915#3955]) -> [SKIP][310] ([i915#3955])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: [SKIP][311] ([i915#1072]) -> [SKIP][312] ([i915#1072] / [i915#4078]) +1 similar issue
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-14/igt@kms_psr@cursor_plane_move.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-18/igt@kms_psr@cursor_plane_move.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [INCOMPLETE][313] ([i915#5493]) -> [CRASH][314] ([i915#7331])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-8/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
[i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
[i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063
[i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445
[i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456
[i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8537]: https://gitlab.freedesktop.org/drm/intel/issues/8537
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
[i915#8573]: https://gitlab.freedesktop.org/drm/intel/issues/8573
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7411 -> IGTPW_9492
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13455: 9a1dbae51db9a61173f3a613e406c15d9c990f7e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9492: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/index.html
IGT_7411: 7411
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/index.html
[-- Attachment #2: Type: text/html, Size: 101104 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* [igt-dev] ✗ Fi.CI.IGT: failure for DSC Fractional BPP Val Support (rev8)
2023-08-01 13:38 [igt-dev] [v6 00/10] DSC Fractional BPP Val Support Swati Sharma
` (12 preceding siblings ...)
2023-08-01 18:15 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-08-03 3:51 ` Patchwork
2023-08-03 4:14 ` Patchwork
14 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2023-08-03 3:51 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 83628 bytes --]
== Series Details ==
Series: DSC Fractional BPP Val Support (rev8)
URL : https://patchwork.freedesktop.org/series/117493/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13455_full -> IGTPW_9492_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9492_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9492_full, please notify your bug team 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_9492/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9492_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_dsc@dsc-fractional-bpp (NEW):
- shard-dg1: NOTRUN -> [SKIP][1] +2 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp.html
- shard-mtlp: NOTRUN -> [SKIP][2] +1 similar issue
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_dsc@dsc-fractional-bpp.html
* {igt@kms_dsc@dsc-fractional-bpp-with-bpc} (NEW):
- shard-dg2: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* {igt@kms_dsc@dsc-with-output-formats-with-bpc} (NEW):
- shard-rkl: NOTRUN -> [SKIP][4] +1 similar issue
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][5] +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a4:
- shard-dg1: [PASS][6] -> [FAIL][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-16/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a4.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-14/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a4.html
New tests
---------
New tests have been introduced between CI_DRM_13455_full and IGTPW_9492_full:
### New IGT tests (5) ###
* igt@kms_cursor_crc@cursor-dpms@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_cursor_crc@cursor-dpms@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-fractional-bpp:
- Statuses : 4 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_9492_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][9] ([i915#6122])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@api_intel_bb@render-ccs.html
* igt@drm_fdinfo@busy-hang@bcs0:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +4 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@drm_fdinfo@busy-hang@bcs0.html
* igt@drm_fdinfo@busy-hang@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +11 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@drm_fdinfo@busy-hang@rcs0.html
* igt@drm_fdinfo@busy@ccs0:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +20 similar issues
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@drm_fdinfo@busy@ccs0.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#3281]) +4 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@gem_bad_reloc@negative-reloc-lut.html
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3281]) +5 similar issues
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4873])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@gem_caching@read-writes.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#5325])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8555]) +1 similar issue
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@smoketest:
- shard-snb: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#1099]) +1 similar issue
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb2/igt@gem_ctx_persistence@smoketest.html
* igt@gem_eio@hibernate:
- shard-dg1: [PASS][21] -> [ABORT][22] ([i915#4391] / [i915#7975] / [i915#8213])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-12/igt@gem_eio@hibernate.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-14/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-snb: NOTRUN -> [FAIL][23] ([i915#8898])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb2/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][24] -> [FAIL][25] ([i915#5784])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-17/igt@gem_eio@unwedge-stress.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#4771])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#6334])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#6344])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][30] -> [FAIL][31] ([i915#2846])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [PASS][33] -> [FAIL][34] ([i915#2842]) +1 similar issue
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4473] / [i915#4771]) +1 similar issue
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@syncobj-backward-timeline-chain-engines:
- shard-snb: NOTRUN -> [SKIP][36] ([fdo#109271]) +238 similar issues
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb5/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +1 similar issue
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#7697]) +1 similar issue
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#3281]) +2 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +11 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4537] / [i915#4812]) +1 similar issue
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4613]) +1 similar issue
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-10/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#4613])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_media_vme:
- shard-tglu: NOTRUN -> [SKIP][46] ([i915#284])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-6/igt@gem_media_vme.html
* igt@gem_mmap@bad-size:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4083]) +4 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@gem_mmap@bad-size.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4077]) +13 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_gtt@flink-race:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4077]) +10 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_gtt@medium-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4077])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@gem_mmap_gtt@medium-copy-odd.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4083]) +4 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#3282]) +6 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@write:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#3282])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@gem_partial_pwrite_pread@write.html
* igt@gem_pwrite@basic-random:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3282]) +2 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4270])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4270]) +1 similar issue
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#4270]) +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-9/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#4270])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#8428]) +2 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4079])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4079])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4885])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3297])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3297] / [i915#4880])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3297]) +2 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#3297])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#3297] / [i915#4958])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#3297])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-8/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-dg2: NOTRUN -> [FAIL][69] ([fdo#103375])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen3_render_linear_blits:
- shard-dg2: NOTRUN -> [SKIP][70] ([fdo#109289]) +5 similar issues
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@gen3_render_linear_blits.html
* igt@gen9_exec_parse@allowed-all:
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#2527] / [i915#2856])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-6/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-apl: [PASS][72] -> [ABORT][73] ([i915#5566])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-apl4/igt@gen9_exec_parse@allowed-single.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-apl3/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#2856]) +3 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-out:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#2527])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#2856]) +1 similar issue
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@gen9_exec_parse@secure-batches.html
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#2527])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@gen9_exec_parse@secure-batches.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4881])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@i915_fb_tiling.html
* igt@i915_hangman@engine-engine-hang@vcs0:
- shard-mtlp: [PASS][79] -> [FAIL][80] ([i915#7069])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-6/igt@i915_hangman@engine-engine-hang@vcs0.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@i915_hangman@engine-engine-hang@vcs0.html
* igt@i915_module_load@load:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#6227])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@i915_module_load@load.html
* igt@i915_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][82] ([i915#7561])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-4/igt@i915_pm_backlight@fade-with-dpms.html
* igt@i915_pm_backlight@fade-with-suspend:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#5354] / [i915#7561])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@i915_pm_backlight@fade-with-suspend.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [PASS][84] -> [SKIP][85] ([fdo#109271])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-apl2/igt@i915_pm_dc@dc9-dpms.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-apl6/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: NOTRUN -> [SKIP][86] ([fdo#109289]) +1 similar issue
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- shard-dg1: [PASS][87] -> [FAIL][88] ([i915#7691])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@cursor-dpms:
- shard-tglu: [PASS][89] -> [FAIL][90] ([i915#7940]) +3 similar issues
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-tglu-3/igt@i915_pm_rpm@cursor-dpms.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-4/igt@i915_pm_rpm@cursor-dpms.html
- shard-dg1: [PASS][91] -> [FAIL][92] ([i915#7940])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-17/igt@i915_pm_rpm@cursor-dpms.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-15/igt@i915_pm_rpm@cursor-dpms.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][93] -> [SKIP][94] ([i915#1397])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
- shard-rkl: [PASS][95] -> [SKIP][96] ([i915#1397])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-4/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-dg1: [PASS][97] -> [SKIP][98] ([i915#1397])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#1397])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-pc8-residency-stress:
- shard-dg2: NOTRUN -> [SKIP][100] ([fdo#109506])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#6621])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#8925])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#8437])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#6188])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#6188])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_selftest@live@gt_mocs:
- shard-mtlp: [PASS][106] -> [DMESG-FAIL][107] ([i915#7059])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-5/igt@i915_selftest@live@gt_mocs.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@i915_selftest@live@gt_mocs.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#4212])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4212]) +2 similar issues
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#8502]) +7 similar issues
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][111] ([i915#8247]) +3 similar issues
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-b-vga-1:
- shard-snb: NOTRUN -> [FAIL][112] ([i915#8247]) +1 similar issue
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb6/igt@kms_async_flips@crc@pipe-b-vga-1.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][113] ([i915#8561]) +3 similar issues
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#6228])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#404])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#1769])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][117] ([fdo#111614]) +7 similar issues
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][118] ([fdo#111614]) +1 similar issue
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-8/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][120] -> [FAIL][121] ([i915#5138]) +1 similar issue
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: NOTRUN -> [FAIL][122] ([i915#3743]) +2 similar issues
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5286])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][124] ([fdo#111614] / [i915#3638])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: [PASS][125] -> [FAIL][126] ([i915#3743])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#5190]) +18 similar issues
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][128] ([fdo#111615]) +8 similar issues
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][130] ([fdo#110723]) +1 similar issue
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +5 similar issues
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][132] ([fdo#111615])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-15/igt@kms_big_fb@yf-tiled-addfb.html
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6187]) +1 similar issue
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#3689] / [i915#5354]) +26 similar issues
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#3886] / [i915#6095]) +6 similar issues
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#3689] / [i915#5354] / [i915#6095])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-7/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#5354]) +59 similar issues
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#3689] / [i915#5354] / [i915#6095])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-18/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#5354] / [i915#6095]) +5 similar issues
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#3689] / [i915#3886] / [i915#5354]) +14 similar issues
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-primary-basic-yf_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][141] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-9/igt@kms_ccs@pipe-c-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#5354] / [i915#6095]) +5 similar issues
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-4/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-16/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#5354]) +8 similar issues
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs_cc:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6095]) +20 similar issues
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#5354] / [i915#6095]) +3 similar issues
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][147] ([fdo#111827])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-mtlp: NOTRUN -> [SKIP][148] ([fdo#111827])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#7828]) +12 similar issues
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#7828])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#7828]) +4 similar issues
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#7828]) +1 similar issue
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-15/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@legacy:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#6944])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei_interface:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#8063])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_content_protection@mei_interface.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#7118])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#7116])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#7118])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][158] ([fdo#109279] / [i915#3359])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#8814]) +1 similar issue
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3359]) +1 similar issue
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#3555]) +2 similar issues
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#3359])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#3555]) +8 similar issues
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3546]) +1 similar issue
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][165] ([fdo#109274] / [i915#5354]) +5 similar issues
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][166] -> [FAIL][167] ([i915#2346])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#4103] / [i915#4213]) +1 similar issue
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#4213])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3804])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#8812])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-gtt.html
* {igt@kms_dsc@dsc-with-output-formats-with-bpc} (NEW):
- shard-glk: NOTRUN -> [SKIP][172] ([fdo#109271]) +3 similar issues
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-glk9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#3469])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3637]) +4 similar issues
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-snb: NOTRUN -> [SKIP][175] ([fdo#109271] / [fdo#111767])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-dg1: NOTRUN -> [SKIP][176] ([fdo#111825]) +4 similar issues
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-15/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-tglu: NOTRUN -> [SKIP][177] ([fdo#109274] / [i915#3637])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-6/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][178] ([fdo#109274]) +6 similar issues
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][179] ([fdo#111825]) +1 similar issue
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#8381]) +1 similar issue
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend@b-dp1:
- shard-apl: [PASS][181] -> [ABORT][182] ([i915#180])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-apl3/igt@kms_flip@flip-vs-suspend@b-dp1.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-apl2/igt@kms_flip@flip-vs-suspend@b-dp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#2587] / [i915#2672])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#2672]) +3 similar issues
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#8810]) +1 similar issue
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#2672]) +1 similar issue
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [PASS][187] -> [FAIL][188] ([i915#6880])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [FAIL][189] ([i915#6880])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#8708]) +14 similar issues
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#1825]) +23 similar issues
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#8708]) +2 similar issues
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][193] ([fdo#109280]) +4 similar issues
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#5460])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#3458]) +1 similar issue
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][196] ([fdo#111825] / [i915#1825]) +7 similar issues
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#8708])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#3458]) +22 similar issues
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#3023]) +4 similar issues
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8228]) +1 similar issue
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@static-toggle:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#8228])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-14/igt@kms_hdr@static-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8228])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#8228]) +3 similar issues
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#4816])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
- shard-snb: NOTRUN -> [DMESG-WARN][205] ([i915#8841]) +8 similar issues
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#8821])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-apl: NOTRUN -> [SKIP][207] ([fdo#109271]) +3 similar issues
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-apl1/igt@kms_plane_scaling@intel-max-src-size.html
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#6953])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#6953])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size.html
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#6953])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#5176]) +11 similar issues
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#5176]) +5 similar issues
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#5176]) +3 similar issues
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#5235]) +5 similar issues
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#5235]) +11 similar issues
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#5235]) +7 similar issues
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#5235]) +11 similar issues
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1.html
* igt@kms_prime@basic-crc-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#6524])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#658]) +2 similar issues
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
- shard-rkl: NOTRUN -> [SKIP][220] ([fdo#111068] / [i915#658])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#4348]) +1 similar issue
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg1: NOTRUN -> [SKIP][222] ([fdo#111068] / [i915#658])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@basic:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#1072]) +2 similar issues
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_psr@basic.html
* igt@kms_psr@psr2_sprite_render:
- shard-tglu: NOTRUN -> [SKIP][224] ([fdo#110189]) +3 similar issues
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-4/igt@kms_psr@psr2_sprite_render.html
* igt@kms_psr@sprite_blt:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#1072]) +7 similar issues
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_psr@sprite_blt.html
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#1072])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@kms_psr@sprite_blt.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#4235])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-rkl: [PASS][228] -> [ABORT][229] ([i915#7461])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-6/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#4235] / [i915#5190])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#3555]) +1 similar issue
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_selftest@drm_damage:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#8661]) +3 similar issues
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@kms_selftest@drm_damage.html
- shard-snb: NOTRUN -> [SKIP][233] ([fdo#109271] / [i915#8661])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb6/igt@kms_selftest@drm_damage.html
* igt@kms_selftest@drm_format:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#8661])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@kms_selftest@drm_format.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#8623])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@universal-plane-pipe-a-functional:
- shard-mtlp: [PASS][236] -> [DMESG-WARN][237] ([i915#2017] / [i915#5954])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-6/igt@kms_universal_plane@universal-plane-pipe-a-functional.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_universal_plane@universal-plane-pipe-a-functional.html
* igt@kms_vblank@pipe-c-wait-idle-hang:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#4070] / [i915#6768])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_vblank@pipe-c-wait-idle-hang.html
* igt@kms_vblank@pipe-d-query-idle-hang:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#4070] / [i915#533] / [i915#6768])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@kms_vblank@pipe-d-query-idle-hang.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#8808])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_vrr@flip-suspend.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#2437])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-mtlp: NOTRUN -> [SKIP][242] ([fdo#109289]) +3 similar issues
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#7387])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@perf@global-sseu-config-invalid.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#2433])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-mtlp: [PASS][245] -> [FAIL][246] ([i915#4349]) +2 similar issues
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-7/igt@perf_pmu@busy-double-start@vcs1.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@perf_pmu@busy-double-start@vcs1.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][247] -> [FAIL][248] ([i915#4349]) +1 similar issue
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][249] ([i915#5793] / [i915#6121])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6@runtime-pm-long-gt1:
- shard-mtlp: [PASS][250] -> [SKIP][251] ([i915#8537]) +2 similar issues
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-8/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][252] ([fdo#109291])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@prime_udl.html
- shard-rkl: NOTRUN -> [SKIP][253] ([fdo#109291])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@prime_udl.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#3708] / [i915#4077])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3708] / [i915#4077])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@coherency-blt:
- shard-mtlp: NOTRUN -> [FAIL][256] ([i915#8445])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@prime_vgem@coherency-blt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#3708])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@prime_vgem@fence-read-hang.html
* igt@v3d/v3d_get_param@get-bad-flags:
- shard-rkl: NOTRUN -> [SKIP][258] ([fdo#109315]) +4 similar issues
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@v3d/v3d_get_param@get-bad-flags.html
* igt@v3d/v3d_get_param@get-bad-param:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#2575]) +8 similar issues
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@v3d/v3d_get_param@get-bad-param.html
* igt@v3d/v3d_submit_csd@bad-multisync-in-sync:
- shard-tglu: NOTRUN -> [SKIP][260] ([fdo#109315] / [i915#2575])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-3/igt@v3d/v3d_submit_csd@bad-multisync-in-sync.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#2575]) +13 similar issues
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@vc4/vc4_label_bo@set-bad-name:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#7711])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@vc4/vc4_label_bo@set-bad-name.html
* igt@vc4/vc4_mmap@mmap-bo:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#7711]) +7 similar issues
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@vc4/vc4_mmap@mmap-bo.html
* igt@vc4/vc4_perfmon@create-single-perfmon:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#7711]) +4 similar issues
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@vc4/vc4_perfmon@create-single-perfmon.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#7711])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
* igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#2575])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-5/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][267] ([i915#7742]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][269] ([i915#6268]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][271] ([i915#5493]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
- shard-dg1: [TIMEOUT][273] ([i915#5493]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_hangman@detector@vcs0:
- shard-mtlp: [FAIL][275] ([i915#8456]) -> [PASS][276] +2 similar issues
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-7/igt@i915_hangman@detector@vcs0.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@i915_hangman@detector@vcs0.html
* igt@i915_hangman@gt-engine-hang@vcs0:
- shard-mtlp: [FAIL][277] ([i915#7069]) -> [PASS][278] +1 similar issue
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-7/igt@i915_hangman@gt-engine-hang@vcs0.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@i915_hangman@gt-engine-hang@vcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][279] ([i915#8489] / [i915#8668]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][281] ([i915#1397]) -> [PASS][282] +1 similar issue
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-17/igt@i915_pm_rpm@dpms-lpsp.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html
* igt@i915_pm_rpm@i2c:
- shard-dg2: [FAIL][283] ([i915#8717]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-2/igt@i915_pm_rpm@i2c.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@i915_pm_rpm@i2c.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][285] ([i915#1397]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][287] ([i915#6763]) -> [PASS][288]
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-5/igt@i915_selftest@live@workarounds.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@i915_selftest@perf@request:
- shard-mtlp: [DMESG-FAIL][289] ([i915#8573]) -> [PASS][290]
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-8/igt@i915_selftest@perf@request.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@i915_selftest@perf@request.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-glk: [FAIL][291] ([i915#72]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-glk3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-glk5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-mtlp: [FAIL][293] ([i915#8248]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-3/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][295] ([i915#2346]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@perf_pmu@busy-double-start@ccs3:
- shard-dg2: [FAIL][297] ([i915#4349]) -> [PASS][298] +3 similar issues
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-6/igt@perf_pmu@busy-double-start@ccs3.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@perf_pmu@busy-double-start@ccs3.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][299] ([i915#4349]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-7/igt@perf_pmu@busy-double-start@rcs0.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-dg1: [FAIL][301] ([i915#4349]) -> [PASS][302] +2 similar issues
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-18/igt@perf_pmu@busy-double-start@vcs1.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@perf_pmu@busy-double-start@vcs1.html
#### Warnings ####
* igt@gem_exec_whisper@basic-contexts-forked-all:
- shard-mtlp: [TIMEOUT][303] ([i915#7392] / [i915#8628]) -> [ABORT][304] ([i915#7392] / [i915#8131])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-forked-all.html
* igt@i915_pm_rpm@i2c:
- shard-dg1: [DMESG-WARN][305] ([i915#4391] / [i915#4423]) -> [DMESG-WARN][306] ([i915#4391])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-15/igt@i915_pm_rpm@i2c.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@i915_pm_rpm@i2c.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-mtlp: [DMESG-FAIL][307] ([i915#2017] / [i915#5954]) -> [FAIL][308] ([i915#2346])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][309] ([fdo#110189] / [i915#3955]) -> [SKIP][310] ([i915#3955])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: [SKIP][311] ([i915#1072]) -> [SKIP][312] ([i915#1072] / [i915#4078]) +1 similar issue
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-14/igt@kms_psr@cursor_plane_move.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-18/igt@kms_psr@cursor_plane_move.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [INCOMPLETE][313] ([i915#5493]) -> [CRASH][314] ([i915#7331])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-8/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
[i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
[i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063
[i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445
[i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456
[i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8537]: https://gitlab.freedesktop.org/drm/intel/issues/8537
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
[i915#8573]: https://gitlab.freedesktop.org/drm/intel/issues/8573
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7411 -> IGTPW_9492
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13455: 9a1dbae51db9a61173f3a613e406c15d9c990f7e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9492: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/index.html
IGT_7411: 7411
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/index.html
[-- Attachment #2: Type: text/html, Size: 101374 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* [igt-dev] ✗ Fi.CI.IGT: failure for DSC Fractional BPP Val Support (rev8)
2023-08-01 13:38 [igt-dev] [v6 00/10] DSC Fractional BPP Val Support Swati Sharma
` (13 preceding siblings ...)
2023-08-03 3:51 ` Patchwork
@ 2023-08-03 4:14 ` Patchwork
14 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2023-08-03 4:14 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 83704 bytes --]
== Series Details ==
Series: DSC Fractional BPP Val Support (rev8)
URL : https://patchwork.freedesktop.org/series/117493/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13455_full -> IGTPW_9492_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9492_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9492_full, please notify your bug team 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_9492/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9492_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_dsc@dsc-fractional-bpp (NEW):
- shard-dg1: NOTRUN -> [SKIP][1] +2 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp.html
- shard-mtlp: NOTRUN -> [SKIP][2] +1 similar issue
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_dsc@dsc-fractional-bpp.html
* {igt@kms_dsc@dsc-fractional-bpp-with-bpc} (NEW):
- shard-dg2: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* {igt@kms_dsc@dsc-with-output-formats-with-bpc} (NEW):
- shard-rkl: NOTRUN -> [SKIP][4] +1 similar issue
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][5] +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
New tests
---------
New tests have been introduced between CI_DRM_13455_full and IGTPW_9492_full:
### New IGT tests (5) ###
* igt@kms_cursor_crc@cursor-dpms@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_cursor_crc@cursor-dpms@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-fractional-bpp:
- Statuses : 4 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_9492_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][7] ([i915#6122])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@api_intel_bb@render-ccs.html
* igt@drm_fdinfo@busy-hang@bcs0:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +4 similar issues
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@drm_fdinfo@busy-hang@bcs0.html
* igt@drm_fdinfo@busy-hang@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +11 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@drm_fdinfo@busy-hang@rcs0.html
* igt@drm_fdinfo@busy@ccs0:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +20 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@drm_fdinfo@busy@ccs0.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#3281]) +4 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@gem_bad_reloc@negative-reloc-lut.html
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#3281]) +5 similar issues
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#4873])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@gem_caching@read-writes.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#5325])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8555]) +1 similar issue
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8555])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@smoketest:
- shard-snb: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#1099]) +1 similar issue
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb2/igt@gem_ctx_persistence@smoketest.html
* igt@gem_eio@hibernate:
- shard-dg1: [PASS][19] -> [ABORT][20] ([i915#4391] / [i915#7975] / [i915#8213])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-12/igt@gem_eio@hibernate.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-14/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-snb: NOTRUN -> [FAIL][21] ([i915#8898])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb2/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][22] -> [FAIL][23] ([i915#5784])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-17/igt@gem_eio@unwedge-stress.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#4771])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#4812])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#6334])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#6344])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][28] -> [FAIL][29] ([i915#2846])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [PASS][31] -> [FAIL][32] ([i915#2842]) +1 similar issue
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4473] / [i915#4771]) +1 similar issue
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@syncobj-backward-timeline-chain-engines:
- shard-snb: NOTRUN -> [SKIP][34] ([fdo#109271]) +238 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb5/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +1 similar issue
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#7697]) +1 similar issue
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#3281]) +2 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3281]) +11 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812]) +1 similar issue
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4860])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4613]) +1 similar issue
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][42] ([i915#4613])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-10/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#4613])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_media_vme:
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#284])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-6/igt@gem_media_vme.html
* igt@gem_mmap@bad-size:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4083]) +4 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@gem_mmap@bad-size.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4077]) +13 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_gtt@flink-race:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4077]) +10 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_gtt@medium-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4077])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@gem_mmap_gtt@medium-copy-odd.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4083]) +4 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3282]) +6 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@write:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#3282])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@gem_partial_pwrite_pread@write.html
* igt@gem_pwrite@basic-random:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3282]) +2 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4270])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4270]) +1 similar issue
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-tglu: NOTRUN -> [SKIP][55] ([i915#4270]) +1 similar issue
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-9/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#4270])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#8428]) +2 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4079])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4079])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4885])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#3297])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#3297] / [i915#4880])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3297]) +2 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#3297])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#3297] / [i915#4958])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#3297])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-8/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-dg2: NOTRUN -> [FAIL][67] ([fdo#103375])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen3_render_linear_blits:
- shard-dg2: NOTRUN -> [SKIP][68] ([fdo#109289]) +5 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@gen3_render_linear_blits.html
* igt@gen9_exec_parse@allowed-all:
- shard-tglu: NOTRUN -> [SKIP][69] ([i915#2527] / [i915#2856])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-6/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-apl: [PASS][70] -> [ABORT][71] ([i915#5566])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-apl4/igt@gen9_exec_parse@allowed-single.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-apl3/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#2856]) +3 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-out:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#2527])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#2856]) +1 similar issue
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@gen9_exec_parse@secure-batches.html
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#2527])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@gen9_exec_parse@secure-batches.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4881])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@i915_fb_tiling.html
* igt@i915_hangman@engine-engine-hang@vcs0:
- shard-mtlp: [PASS][77] -> [FAIL][78] ([i915#7069])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-6/igt@i915_hangman@engine-engine-hang@vcs0.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@i915_hangman@engine-engine-hang@vcs0.html
* igt@i915_module_load@load:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#6227])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@i915_module_load@load.html
* igt@i915_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#7561])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-4/igt@i915_pm_backlight@fade-with-dpms.html
* igt@i915_pm_backlight@fade-with-suspend:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#5354] / [i915#7561])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@i915_pm_backlight@fade-with-suspend.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [PASS][82] -> [SKIP][83] ([fdo#109271])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-apl2/igt@i915_pm_dc@dc9-dpms.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-apl6/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: NOTRUN -> [SKIP][84] ([fdo#109289]) +1 similar issue
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- shard-dg1: [PASS][85] -> [FAIL][86] ([i915#7691])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@cursor-dpms:
- shard-tglu: [PASS][87] -> [FAIL][88] ([i915#7940]) +3 similar issues
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-tglu-3/igt@i915_pm_rpm@cursor-dpms.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-4/igt@i915_pm_rpm@cursor-dpms.html
- shard-dg1: [PASS][89] -> [FAIL][90] ([i915#7940])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-17/igt@i915_pm_rpm@cursor-dpms.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-15/igt@i915_pm_rpm@cursor-dpms.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][91] -> [SKIP][92] ([i915#1397])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
- shard-rkl: [PASS][93] -> [SKIP][94] ([i915#1397])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-4/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-dg1: [PASS][95] -> [SKIP][96] ([i915#1397])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#1397])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-pc8-residency-stress:
- shard-dg2: NOTRUN -> [SKIP][98] ([fdo#109506])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#6621])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#8925])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#8437])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#6188])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#6188])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_selftest@live@gt_mocs:
- shard-mtlp: [PASS][104] -> [DMESG-FAIL][105] ([i915#7059])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-5/igt@i915_selftest@live@gt_mocs.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@i915_selftest@live@gt_mocs.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#4212])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#4212]) +2 similar issues
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#8502]) +7 similar issues
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][109] ([i915#8247]) +3 similar issues
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-b-vga-1:
- shard-snb: NOTRUN -> [FAIL][110] ([i915#8247]) +1 similar issue
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb6/igt@kms_async_flips@crc@pipe-b-vga-1.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][111] ([i915#8561]) +3 similar issues
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#6228])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#404])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#1769])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][115] ([fdo#111614]) +7 similar issues
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][116] ([fdo#111614]) +1 similar issue
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#5286])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-8/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][118] -> [FAIL][119] ([i915#5138]) +1 similar issue
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: NOTRUN -> [FAIL][120] ([i915#3743]) +2 similar issues
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5286])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][122] ([fdo#111614] / [i915#3638])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: [PASS][123] -> [FAIL][124] ([i915#3743])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#5190]) +18 similar issues
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][126] ([fdo#111615]) +8 similar issues
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][128] ([fdo#110723]) +1 similar issue
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +5 similar issues
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][130] ([fdo#111615])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-15/igt@kms_big_fb@yf-tiled-addfb.html
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#6187]) +1 similar issue
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#3689] / [i915#5354]) +26 similar issues
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#3886] / [i915#6095]) +6 similar issues
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#3689] / [i915#5354] / [i915#6095])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-7/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#5354]) +59 similar issues
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#3689] / [i915#5354] / [i915#6095])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-18/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#5354] / [i915#6095]) +5 similar issues
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#3689] / [i915#3886] / [i915#5354]) +14 similar issues
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-primary-basic-yf_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][139] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-9/igt@kms_ccs@pipe-c-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#5354] / [i915#6095]) +5 similar issues
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-4/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-16/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#5354]) +8 similar issues
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs_cc:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6095]) +20 similar issues
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#5354] / [i915#6095]) +3 similar issues
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][145] ([fdo#111827])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-mtlp: NOTRUN -> [SKIP][146] ([fdo#111827])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#7828]) +12 similar issues
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#7828])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#7828]) +4 similar issues
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#7828]) +1 similar issue
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-15/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@legacy:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#6944])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei_interface:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#8063])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_content_protection@mei_interface.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#7118])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#7116])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#7118])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][156] ([fdo#109279] / [i915#3359])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#8814]) +1 similar issue
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3359]) +1 similar issue
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#3555]) +2 similar issues
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#3359])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#3555]) +8 similar issues
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3546]) +1 similar issue
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][163] ([fdo#109274] / [i915#5354]) +5 similar issues
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][164] -> [FAIL][165] ([i915#2346])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#4103] / [i915#4213]) +1 similar issue
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#4213])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#3804])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#8812])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-gtt.html
* {igt@kms_dsc@dsc-with-output-formats-with-bpc} (NEW):
- shard-glk: NOTRUN -> [SKIP][170] ([fdo#109271]) +3 similar issues
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-glk9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#3469])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3637]) +4 similar issues
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-snb: NOTRUN -> [SKIP][173] ([fdo#109271] / [fdo#111767])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-dg1: NOTRUN -> [SKIP][174] ([fdo#111825]) +4 similar issues
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-15/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-tglu: NOTRUN -> [SKIP][175] ([fdo#109274] / [i915#3637])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-6/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][176] ([fdo#109274]) +6 similar issues
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][177] ([fdo#111825]) +1 similar issue
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a4:
- shard-dg1: [PASS][178] -> [FAIL][179] ([i915#79])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-16/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a4.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-14/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a4.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#8381]) +1 similar issue
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend@b-dp1:
- shard-apl: [PASS][181] -> [ABORT][182] ([i915#180])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-apl3/igt@kms_flip@flip-vs-suspend@b-dp1.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-apl2/igt@kms_flip@flip-vs-suspend@b-dp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#2587] / [i915#2672])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#2672]) +3 similar issues
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#8810]) +1 similar issue
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#2672]) +1 similar issue
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [PASS][187] -> [FAIL][188] ([i915#6880])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [FAIL][189] ([i915#6880])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#8708]) +14 similar issues
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#1825]) +23 similar issues
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#8708]) +2 similar issues
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][193] ([fdo#109280]) +4 similar issues
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#5460])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#3458]) +1 similar issue
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][196] ([fdo#111825] / [i915#1825]) +7 similar issues
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#8708])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#3458]) +22 similar issues
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#3023]) +4 similar issues
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8228]) +1 similar issue
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@static-toggle:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#8228])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-14/igt@kms_hdr@static-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8228])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#8228]) +3 similar issues
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#4816])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
- shard-snb: NOTRUN -> [DMESG-WARN][205] ([i915#8841]) +8 similar issues
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#8821])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-apl: NOTRUN -> [SKIP][207] ([fdo#109271]) +3 similar issues
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-apl1/igt@kms_plane_scaling@intel-max-src-size.html
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#6953])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#6953])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size.html
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#6953])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#5176]) +11 similar issues
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#5176]) +5 similar issues
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#5176]) +3 similar issues
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#5235]) +5 similar issues
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#5235]) +11 similar issues
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#5235]) +7 similar issues
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#5235]) +11 similar issues
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1.html
* igt@kms_prime@basic-crc-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#6524])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#658]) +2 similar issues
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
- shard-rkl: NOTRUN -> [SKIP][220] ([fdo#111068] / [i915#658])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#4348]) +1 similar issue
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg1: NOTRUN -> [SKIP][222] ([fdo#111068] / [i915#658])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@basic:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#1072]) +2 similar issues
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-17/igt@kms_psr@basic.html
* igt@kms_psr@psr2_sprite_render:
- shard-tglu: NOTRUN -> [SKIP][224] ([fdo#110189]) +3 similar issues
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-4/igt@kms_psr@psr2_sprite_render.html
* igt@kms_psr@sprite_blt:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#1072]) +7 similar issues
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_psr@sprite_blt.html
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#1072])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@kms_psr@sprite_blt.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#4235])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-rkl: [PASS][228] -> [ABORT][229] ([i915#7461])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-6/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#4235] / [i915#5190])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#3555]) +1 similar issue
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_selftest@drm_damage:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#8661]) +3 similar issues
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-3/igt@kms_selftest@drm_damage.html
- shard-snb: NOTRUN -> [SKIP][233] ([fdo#109271] / [i915#8661])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-snb6/igt@kms_selftest@drm_damage.html
* igt@kms_selftest@drm_format:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#8661])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@kms_selftest@drm_format.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#8623])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@universal-plane-pipe-a-functional:
- shard-mtlp: [PASS][236] -> [DMESG-WARN][237] ([i915#2017] / [i915#5954])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-6/igt@kms_universal_plane@universal-plane-pipe-a-functional.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_universal_plane@universal-plane-pipe-a-functional.html
* igt@kms_vblank@pipe-c-wait-idle-hang:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#4070] / [i915#6768])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_vblank@pipe-c-wait-idle-hang.html
* igt@kms_vblank@pipe-d-query-idle-hang:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#4070] / [i915#533] / [i915#6768])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@kms_vblank@pipe-d-query-idle-hang.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#8808])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-4/igt@kms_vrr@flip-suspend.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#2437])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-mtlp: NOTRUN -> [SKIP][242] ([fdo#109289]) +3 similar issues
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#7387])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@perf@global-sseu-config-invalid.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#2433])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-mtlp: [PASS][245] -> [FAIL][246] ([i915#4349]) +2 similar issues
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-7/igt@perf_pmu@busy-double-start@vcs1.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@perf_pmu@busy-double-start@vcs1.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][247] -> [FAIL][248] ([i915#4349]) +1 similar issue
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][249] ([i915#5793] / [i915#6121])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6@runtime-pm-long-gt1:
- shard-mtlp: [PASS][250] -> [SKIP][251] ([i915#8537]) +2 similar issues
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-8/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][252] ([fdo#109291])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@prime_udl.html
- shard-rkl: NOTRUN -> [SKIP][253] ([fdo#109291])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-1/igt@prime_udl.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#3708] / [i915#4077])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-5/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3708] / [i915#4077])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@coherency-blt:
- shard-mtlp: NOTRUN -> [FAIL][256] ([i915#8445])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@prime_vgem@coherency-blt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#3708])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@prime_vgem@fence-read-hang.html
* igt@v3d/v3d_get_param@get-bad-flags:
- shard-rkl: NOTRUN -> [SKIP][258] ([fdo#109315]) +4 similar issues
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-2/igt@v3d/v3d_get_param@get-bad-flags.html
* igt@v3d/v3d_get_param@get-bad-param:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#2575]) +8 similar issues
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@v3d/v3d_get_param@get-bad-param.html
* igt@v3d/v3d_submit_csd@bad-multisync-in-sync:
- shard-tglu: NOTRUN -> [SKIP][260] ([fdo#109315] / [i915#2575])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-3/igt@v3d/v3d_submit_csd@bad-multisync-in-sync.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#2575]) +13 similar issues
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@vc4/vc4_label_bo@set-bad-name:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#7711])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@vc4/vc4_label_bo@set-bad-name.html
* igt@vc4/vc4_mmap@mmap-bo:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#7711]) +7 similar issues
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-10/igt@vc4/vc4_mmap@mmap-bo.html
* igt@vc4/vc4_perfmon@create-single-perfmon:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#7711]) +4 similar issues
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-7/igt@vc4/vc4_perfmon@create-single-perfmon.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#7711])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-6/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
* igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#2575])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-tglu-5/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][267] ([i915#7742]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][269] ([i915#6268]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][271] ([i915#5493]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
- shard-dg1: [TIMEOUT][273] ([i915#5493]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_hangman@detector@vcs0:
- shard-mtlp: [FAIL][275] ([i915#8456]) -> [PASS][276] +2 similar issues
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-7/igt@i915_hangman@detector@vcs0.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@i915_hangman@detector@vcs0.html
* igt@i915_hangman@gt-engine-hang@vcs0:
- shard-mtlp: [FAIL][277] ([i915#7069]) -> [PASS][278] +1 similar issue
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-7/igt@i915_hangman@gt-engine-hang@vcs0.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-2/igt@i915_hangman@gt-engine-hang@vcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][279] ([i915#8489] / [i915#8668]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][281] ([i915#1397]) -> [PASS][282] +1 similar issue
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-17/igt@i915_pm_rpm@dpms-lpsp.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html
* igt@i915_pm_rpm@i2c:
- shard-dg2: [FAIL][283] ([i915#8717]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-2/igt@i915_pm_rpm@i2c.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-6/igt@i915_pm_rpm@i2c.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][285] ([i915#1397]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-4/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][287] ([i915#6763]) -> [PASS][288]
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-5/igt@i915_selftest@live@workarounds.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@i915_selftest@perf@request:
- shard-mtlp: [DMESG-FAIL][289] ([i915#8573]) -> [PASS][290]
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-8/igt@i915_selftest@perf@request.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-6/igt@i915_selftest@perf@request.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-glk: [FAIL][291] ([i915#72]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-glk3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-glk5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-mtlp: [FAIL][293] ([i915#8248]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-3/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-8/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][295] ([i915#2346]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@perf_pmu@busy-double-start@ccs3:
- shard-dg2: [FAIL][297] ([i915#4349]) -> [PASS][298] +3 similar issues
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-6/igt@perf_pmu@busy-double-start@ccs3.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-8/igt@perf_pmu@busy-double-start@ccs3.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][299] ([i915#4349]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-7/igt@perf_pmu@busy-double-start@rcs0.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-dg1: [FAIL][301] ([i915#4349]) -> [PASS][302] +2 similar issues
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-18/igt@perf_pmu@busy-double-start@vcs1.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-12/igt@perf_pmu@busy-double-start@vcs1.html
#### Warnings ####
* igt@gem_exec_whisper@basic-contexts-forked-all:
- shard-mtlp: [TIMEOUT][303] ([i915#7392] / [i915#8628]) -> [ABORT][304] ([i915#7392] / [i915#8131])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-forked-all.html
* igt@i915_pm_rpm@i2c:
- shard-dg1: [DMESG-WARN][305] ([i915#4391] / [i915#4423]) -> [DMESG-WARN][306] ([i915#4391])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-15/igt@i915_pm_rpm@i2c.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-19/igt@i915_pm_rpm@i2c.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-mtlp: [DMESG-FAIL][307] ([i915#2017] / [i915#5954]) -> [FAIL][308] ([i915#2346])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][309] ([fdo#110189] / [i915#3955]) -> [SKIP][310] ([i915#3955])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: [SKIP][311] ([i915#1072]) -> [SKIP][312] ([i915#1072] / [i915#4078]) +1 similar issue
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg1-14/igt@kms_psr@cursor_plane_move.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg1-18/igt@kms_psr@cursor_plane_move.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [INCOMPLETE][313] ([i915#5493]) -> [CRASH][314] ([i915#7331])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13455/shard-dg2-8/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
[i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
[i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063
[i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445
[i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456
[i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8537]: https://gitlab.freedesktop.org/drm/intel/issues/8537
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
[i915#8573]: https://gitlab.freedesktop.org/drm/intel/issues/8573
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7411 -> IGTPW_9492
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13455: 9a1dbae51db9a61173f3a613e406c15d9c990f7e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9492: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/index.html
IGT_7411: 7411
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9492/index.html
[-- Attachment #2: Type: text/html, Size: 101449 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread