* [PATCH i-g-t] tests/intel/kms_joiner: Add a new test to validate non-joiner mode
@ 2025-01-26 18:19 Jeevan B
2025-01-27 5:50 ` B, Jeevan
2025-01-28 6:30 ` Sharma, Swati2
0 siblings, 2 replies; 9+ messages in thread
From: Jeevan B @ 2025-01-26 18:19 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, Jeevan B
We need to ensure that the system does not use a joiner for modes that do
not require it. This test will validate that the correct non-joiner mode
is selected, and then forcing a modeset and flip on the last pipe. If the
joiner is mistakenly enabled for a non-joiner mode, the test should fail.
otherwise, the commit should proceed as expected.
v2: Fix nonjoiner_mode_found to find the required case(6K@30).
Remove clk sort and minor fixes. (Karthik)
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/intel/kms_joiner.c | 78 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 78 insertions(+)
diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c
index 086cfeb71..3d9fa095b 100644
--- a/tests/intel/kms_joiner.c
+++ b/tests/intel/kms_joiner.c
@@ -74,6 +74,9 @@
*
* SUBTEST: switch-modeset-ultra-joiner-big-joiner
* Description: Verify switching between ultra joiner and big joiner modeset.
+ *
+ * SUBTEST: basic-non-joiner
+ * Description: Vefiry basic non-joiner mode across all pipes.
*/
IGT_TEST_DESCRIPTION("Test joiner / force joiner");
@@ -85,6 +88,7 @@ typedef struct {
int ultra_joiner_output_count;
int non_big_joiner_output_count;
int non_ultra_joiner_output_count;
+ int nonjoiner_output_count;
int mixed_output_count;
int output_count;
int n_pipes;
@@ -94,6 +98,7 @@ typedef struct {
igt_output_t *non_big_joiner_output[IGT_MAX_PIPES];
igt_output_t *non_ultra_joiner_output[IGT_MAX_PIPES];
igt_output_t *mixed_output[IGT_MAX_PIPES];
+ igt_output_t *nonjoiner_output[IGT_MAX_PIPES];
enum pipe pipe_seq[IGT_MAX_PIPES];
igt_display_t display;
} data_t;
@@ -164,6 +169,23 @@ static enum pipe setup_pipe(data_t *data, igt_output_t *output, enum pipe pipe,
return master_pipe;
}
+static bool nonjoiner_mode_found(int drm_fd, drmModeConnector *connector,
+ drmModeModeInfo *mode)
+{
+ igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc);
+
+ for (int i = 0; i < connector->count_modes; i++) {
+ drmModeModeInfo *current_mode = &connector->modes[i];
+
+ if ((current_mode->hdisplay == 6144 && current_mode->vrefresh == 30) ||
+ mode->clock < max_dotclock) {
+ *mode = *current_mode;
+ return true;
+ }
+ }
+ return false;
+}
+
static void set_joiner_mode(data_t *data, igt_output_t *output, drmModeModeInfo *mode)
{
igt_plane_t *primary;
@@ -491,6 +513,48 @@ static void test_ultra_joiner(data_t *data, bool invalid_pipe, bool two_display,
}
}
+static void test_single_non_joiner(data_t *data)
+{
+ int count;
+ igt_output_t **outputs, *output;
+ igt_fb_t fb;
+ igt_plane_t *primary;
+ drmModeModeInfo mode;
+ drmModeConnector *con;
+
+ count = data->nonjoiner_output_count;
+ outputs = data->nonjoiner_output;
+ igt_display_reset(&data->display);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ for (int i = 0; i < count; i++) {
+ output = outputs[i];
+ con = output->config.connector;
+
+ if (nonjoiner_mode_found(data->drm_fd, con, &mode)) {
+ igt_output_override_mode(output, &mode);
+ igt_info("Assigning pipe %s to %s with mode %dx%d@%d\n",
+ kmstest_pipe_name(data->pipe_seq[data->n_pipes - 1]),
+ igt_output_name(output), mode.hdisplay,
+ mode.vdisplay, mode.vrefresh);
+
+ igt_output_set_pipe(output, data->pipe_seq[data->n_pipes - 1]);
+
+ primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+
+ igt_create_pattern_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, &fb);
+
+ igt_plane_set_fb(primary, &fb);
+ igt_assert(igt_display_try_commit2(&data->display, COMMIT_ATOMIC));
+ igt_plane_set_fb(primary, NULL);
+ igt_remove_fb(data->drm_fd, &fb);
+ } else {
+ igt_warn("No valid non-joiner mode found for output %s\n", igt_output_name(output));
+ }
+ }
+}
+
igt_main
{
bool ultra_joiner_supported, is_dgfx;
@@ -505,6 +569,7 @@ igt_main
data.ultra_joiner_output_count = 0;
data.non_big_joiner_output_count = 0;
data.non_ultra_joiner_output_count = 0;
+ data.nonjoiner_output_count = 0;
data.mixed_output_count = 0;
data.output_count = 0;
j = 0;
@@ -523,6 +588,7 @@ igt_main
for_each_connected_output(&data.display, output) {
bool ultrajoiner_found = false, bigjoiner_found = false, force_joiner_supported = false;
+ bool nonjoiner_found = false;
drmModeConnector *connector = output->config.connector;
/*
@@ -533,6 +599,7 @@ igt_main
*/
bigjoiner_found = bigjoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
ultrajoiner_found = ultrajoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
+ nonjoiner_found = nonjoiner_mode_found(data.drm_fd, connector, &mode);
if (igt_has_force_joiner_debugfs(data.drm_fd, output->name))
force_joiner_supported = true;
@@ -548,6 +615,9 @@ igt_main
else if (force_joiner_supported)
data.non_big_joiner_output[data.non_big_joiner_output_count++] = output;
+ if (nonjoiner_found)
+ data.nonjoiner_output[data.nonjoiner_output_count++] = output;
+
data.output_count++;
}
if (data.big_joiner_output_count == 1 && data.non_big_joiner_output_count >= 1) {
@@ -713,6 +783,14 @@ igt_main
}
}
+ igt_describe("Verify the basic modeset on big joiner mode on all pipes");
+ igt_subtest_with_dynamic("basic-non-joiner") {
+ igt_require_f(data.n_pipes >= 1,
+ "Minimum of 1 pipes are required\n");
+ igt_dynamic_f("non-joiner")
+ test_single_non_joiner(&data);
+ }
+
igt_fixture {
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* RE: [PATCH i-g-t] tests/intel/kms_joiner: Add a new test to validate non-joiner mode
2025-01-26 18:19 [PATCH i-g-t] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
@ 2025-01-27 5:50 ` B, Jeevan
2025-01-27 8:56 ` Karthik B S
2025-01-28 6:30 ` Sharma, Swati2
1 sibling, 1 reply; 9+ messages in thread
From: B, Jeevan @ 2025-01-27 5:50 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org; +Cc: B S, Karthik
Hi Karthik,
I have addressed couple of comments you had given me regarding sorting can mode selection.
But for validation method apart from commit failure I was trying to find alternate methods but couldn't find any lead, I have couple of opens. 1. Is there any debugfs entry where we get to know joiner is enabled or not. 2. Is it possible to get pipe active status after modeset/commit. Based on this we can validate.
Thanks
Jeevan B
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t] tests/intel/kms_joiner: Add a new test to validate non-joiner mode
2025-01-27 5:50 ` B, Jeevan
@ 2025-01-27 8:56 ` Karthik B S
0 siblings, 0 replies; 9+ messages in thread
From: Karthik B S @ 2025-01-27 8:56 UTC (permalink / raw)
To: B, Jeevan, igt-dev@lists.freedesktop.org
Hi Jeevan,
There is no specific debugfs entry at a pipe level to confirm joiner is
enabled, but I found an entry in display info which shows joiner is
enabled. "Linked to <> pipes as a (master|slave)". We should be able to
parse this from display_info to confirm if joiner is enabled for a
particular mode.
Thanks,
Karthik.B.S
On 1/27/2025 11:20 AM, B, Jeevan wrote:
> Hi Karthik,
>
> I have addressed couple of comments you had given me regarding sorting can mode selection.
> But for validation method apart from commit failure I was trying to find alternate methods but couldn't find any lead, I have couple of opens. 1. Is there any debugfs entry where we get to know joiner is enabled or not. 2. Is it possible to get pipe active status after modeset/commit. Based on this we can validate.
>
> Thanks
> Jeevan B
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t] tests/intel/kms_joiner: Add a new test to validate non-joiner mode
2025-01-26 18:19 [PATCH i-g-t] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
2025-01-27 5:50 ` B, Jeevan
@ 2025-01-28 6:30 ` Sharma, Swati2
1 sibling, 0 replies; 9+ messages in thread
From: Sharma, Swati2 @ 2025-01-28 6:30 UTC (permalink / raw)
To: Jeevan B, igt-dev; +Cc: karthik.b.s
Hi Jeevan,
PFB few review comments.
On 26-01-2025 11:49 pm, Jeevan B wrote:
> We need to ensure that the system does not use a joiner for modes that do
> not require it. This test will validate that the correct non-joiner mode
> is selected, and then forcing a modeset and flip on the last pipe. If the
> joiner is mistakenly enabled for a non-joiner mode, the test should fail.
> otherwise, the commit should proceed as expected.
>
> v2: Fix nonjoiner_mode_found to find the required case(6K@30).
> Remove clk sort and minor fixes. (Karthik)
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
> tests/intel/kms_joiner.c | 78 ++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 78 insertions(+)
>
> diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c
> index 086cfeb71..3d9fa095b 100644
> --- a/tests/intel/kms_joiner.c
> +++ b/tests/intel/kms_joiner.c
> @@ -74,6 +74,9 @@
> *
> * SUBTEST: switch-modeset-ultra-joiner-big-joiner
> * Description: Verify switching between ultra joiner and big joiner modeset.
> + *
> + * SUBTEST: basic-non-joiner
> + * Description: Vefiry basic non-joiner mode across all pipes.
> */
> IGT_TEST_DESCRIPTION("Test joiner / force joiner");
>
> @@ -85,6 +88,7 @@ typedef struct {
> int ultra_joiner_output_count;
> int non_big_joiner_output_count;
> int non_ultra_joiner_output_count;
> + int nonjoiner_output_count;
Rename variable as non_joiner_output_count. Make similar change at other
places too.
> int mixed_output_count;
> int output_count;
> int n_pipes;
> @@ -94,6 +98,7 @@ typedef struct {
> igt_output_t *non_big_joiner_output[IGT_MAX_PIPES];
> igt_output_t *non_ultra_joiner_output[IGT_MAX_PIPES];
> igt_output_t *mixed_output[IGT_MAX_PIPES];
> + igt_output_t *nonjoiner_output[IGT_MAX_PIPES];
> enum pipe pipe_seq[IGT_MAX_PIPES];
> igt_display_t display;
> } data_t;
> @@ -164,6 +169,23 @@ static enum pipe setup_pipe(data_t *data, igt_output_t *output, enum pipe pipe,
> return master_pipe;
> }
>
> +static bool nonjoiner_mode_found(int drm_fd, drmModeConnector *connector,
> + drmModeModeInfo *mode)
Fix indentation here.
> +{
> + igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc);
> +
> + for (int i = 0; i < connector->count_modes; i++) {
> + drmModeModeInfo *current_mode = &connector->modes[i];
> +
> + if ((current_mode->hdisplay == 6144 && current_mode->vrefresh == 30) ||
> + mode->clock < max_dotclock) {
> + *mode = *current_mode;
> + return true;
> + }
> + }
> + return false;
> +}
> +
> static void set_joiner_mode(data_t *data, igt_output_t *output, drmModeModeInfo *mode)
> {
> igt_plane_t *primary;
> @@ -491,6 +513,48 @@ static void test_ultra_joiner(data_t *data, bool invalid_pipe, bool two_display,
> }
> }
>
> +static void test_single_non_joiner(data_t *data)
> +{
> + int count;
> + igt_output_t **outputs, *output;
> + igt_fb_t fb;
> + igt_plane_t *primary;
> + drmModeModeInfo mode;
> + drmModeConnector *con;
> +
> + count = data->nonjoiner_output_count;
> + outputs = data->nonjoiner_output;
> + igt_display_reset(&data->display);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
Do we need this commit here?
> +
> + for (int i = 0; i < count; i++) {
> + output = outputs[i];
> + con = output->config.connector;
> +
> + if (nonjoiner_mode_found(data->drm_fd, con, &mode)) {
> + igt_output_override_mode(output, &mode);
> + igt_info("Assigning pipe %s to %s with mode %dx%d@%d\n",
> + kmstest_pipe_name(data->pipe_seq[data->n_pipes - 1]),
> + igt_output_name(output), mode.hdisplay,
> + mode.vdisplay, mode.vrefresh);
> +
> + igt_output_set_pipe(output, data->pipe_seq[data->n_pipes - 1]);
> +
> + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> +
> + igt_create_pattern_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, DRM_FORMAT_XRGB8888,
> + DRM_FORMAT_MOD_LINEAR, &fb);
> +
> + igt_plane_set_fb(primary, &fb);
> + igt_assert(igt_display_try_commit2(&data->display, COMMIT_ATOMIC));
> + igt_plane_set_fb(primary, NULL);
> + igt_remove_fb(data->drm_fd, &fb);
> + } else {
> + igt_warn("No valid non-joiner mode found for output %s\n", igt_output_name(output));
> + }
> + }
> +}
> +
> igt_main
> {
> bool ultra_joiner_supported, is_dgfx;
> @@ -505,6 +569,7 @@ igt_main
> data.ultra_joiner_output_count = 0;
> data.non_big_joiner_output_count = 0;
> data.non_ultra_joiner_output_count = 0;
> + data.nonjoiner_output_count = 0;
> data.mixed_output_count = 0;
> data.output_count = 0;
> j = 0;
> @@ -523,6 +588,7 @@ igt_main
>
> for_each_connected_output(&data.display, output) {
> bool ultrajoiner_found = false, bigjoiner_found = false, force_joiner_supported = false;
> + bool nonjoiner_found = false;
> drmModeConnector *connector = output->config.connector;
>
> /*
> @@ -533,6 +599,7 @@ igt_main
> */
> bigjoiner_found = bigjoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
> ultrajoiner_found = ultrajoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
> + nonjoiner_found = nonjoiner_mode_found(data.drm_fd, connector, &mode);
>
> if (igt_has_force_joiner_debugfs(data.drm_fd, output->name))
> force_joiner_supported = true;
> @@ -548,6 +615,9 @@ igt_main
> else if (force_joiner_supported)
> data.non_big_joiner_output[data.non_big_joiner_output_count++] = output;
>
> + if (nonjoiner_found)
> + data.nonjoiner_output[data.nonjoiner_output_count++] = output;
> +
> data.output_count++;
> }
> if (data.big_joiner_output_count == 1 && data.non_big_joiner_output_count >= 1) {
> @@ -713,6 +783,14 @@ igt_main
> }
> }
>
> + igt_describe("Verify the basic modeset on big joiner mode on all pipes");
> + igt_subtest_with_dynamic("basic-non-joiner") {
> + igt_require_f(data.n_pipes >= 1,
> + "Minimum of 1 pipes are required\n");
Fix : Minimum of 1 pipe is required.
> + igt_dynamic_f("non-joiner")
> + test_single_non_joiner(&data);
> + }
> +
> igt_fixture {
> igt_display_fini(&data.display);
> drm_close_driver(data.drm_fd);
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t] tests/intel/kms_joiner: Add a new test to validate non-joiner mode
@ 2025-01-29 17:17 Jeevan B
2025-01-29 19:12 ` ✓ Xe.CI.BAT: success for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev2) Patchwork
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Jeevan B @ 2025-01-29 17:17 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, karthik.b.s, Jeevan B
We need to ensure that the system does not use a joiner for modes that do
not require it. This test will validate that the correct non-joiner mode
is selected, and then forcing a modeset and flip on the last pipe. If the
joiner is mistakenly enabled for a non-joiner mode, the test should fail.
otherwise, the commit should proceed as expected.
v2: Fix nonjoiner_mode_found to find the required case(6K@30).
Remove clk sort and minor fixes. (Karthik)
v3: Rename nonjoiner to non_joiner and minor modifications. (Swati)
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/intel/kms_joiner.c | 77 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 77 insertions(+)
diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c
index 086cfeb71..a174d1872 100644
--- a/tests/intel/kms_joiner.c
+++ b/tests/intel/kms_joiner.c
@@ -74,6 +74,9 @@
*
* SUBTEST: switch-modeset-ultra-joiner-big-joiner
* Description: Verify switching between ultra joiner and big joiner modeset.
+ *
+ * SUBTEST: basic-non-joiner
+ * Description: Vefiry basic non-joiner mode across all pipes.
*/
IGT_TEST_DESCRIPTION("Test joiner / force joiner");
@@ -85,6 +88,7 @@ typedef struct {
int ultra_joiner_output_count;
int non_big_joiner_output_count;
int non_ultra_joiner_output_count;
+ int non_joiner_output_count;
int mixed_output_count;
int output_count;
int n_pipes;
@@ -94,6 +98,7 @@ typedef struct {
igt_output_t *non_big_joiner_output[IGT_MAX_PIPES];
igt_output_t *non_ultra_joiner_output[IGT_MAX_PIPES];
igt_output_t *mixed_output[IGT_MAX_PIPES];
+ igt_output_t *non_joiner_output[IGT_MAX_PIPES];
enum pipe pipe_seq[IGT_MAX_PIPES];
igt_display_t display;
} data_t;
@@ -164,6 +169,23 @@ static enum pipe setup_pipe(data_t *data, igt_output_t *output, enum pipe pipe,
return master_pipe;
}
+static bool non_joiner_mode_found(int drm_fd, drmModeConnector *connector,
+ drmModeModeInfo *mode)
+{
+ igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc);
+
+ for (int i = 0; i < connector->count_modes; i++) {
+ drmModeModeInfo *current_mode = &connector->modes[i];
+
+ if ((current_mode->hdisplay == 6144 && current_mode->vrefresh == 30) ||
+ mode->clock < max_dotclock) {
+ *mode = *current_mode;
+ return true;
+ }
+ }
+ return false;
+}
+
static void set_joiner_mode(data_t *data, igt_output_t *output, drmModeModeInfo *mode)
{
igt_plane_t *primary;
@@ -491,6 +513,47 @@ static void test_ultra_joiner(data_t *data, bool invalid_pipe, bool two_display,
}
}
+static void test_single_non_joiner(data_t *data)
+{
+ int count;
+ igt_output_t **outputs, *output;
+ igt_fb_t fb;
+ igt_plane_t *primary;
+ drmModeModeInfo mode;
+ drmModeConnector *con;
+
+ count = data->non_joiner_output_count;
+ outputs = data->non_joiner_output;
+ igt_display_reset(&data->display);
+
+ for (int i = 0; i < count; i++) {
+ output = outputs[i];
+ con = output->config.connector;
+
+ if (non_joiner_mode_found(data->drm_fd, con, &mode)) {
+ igt_output_override_mode(output, &mode);
+ igt_info("Assigning pipe %s to %s with mode %dx%d@%d\n",
+ kmstest_pipe_name(data->pipe_seq[data->n_pipes - 1]),
+ igt_output_name(output), mode.hdisplay,
+ mode.vdisplay, mode.vrefresh);
+
+ igt_output_set_pipe(output, data->pipe_seq[data->n_pipes - 1]);
+
+ primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+
+ igt_create_pattern_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, &fb);
+
+ igt_plane_set_fb(primary, &fb);
+ igt_assert(igt_display_try_commit2(&data->display, COMMIT_ATOMIC));
+ igt_plane_set_fb(primary, NULL);
+ igt_remove_fb(data->drm_fd, &fb);
+ } else {
+ igt_warn("No valid non-joiner mode found for output %s\n", igt_output_name(output));
+ }
+ }
+}
+
igt_main
{
bool ultra_joiner_supported, is_dgfx;
@@ -505,6 +568,7 @@ igt_main
data.ultra_joiner_output_count = 0;
data.non_big_joiner_output_count = 0;
data.non_ultra_joiner_output_count = 0;
+ data.non_joiner_output_count = 0;
data.mixed_output_count = 0;
data.output_count = 0;
j = 0;
@@ -523,6 +587,7 @@ igt_main
for_each_connected_output(&data.display, output) {
bool ultrajoiner_found = false, bigjoiner_found = false, force_joiner_supported = false;
+ bool non_joiner_found = false;
drmModeConnector *connector = output->config.connector;
/*
@@ -533,6 +598,7 @@ igt_main
*/
bigjoiner_found = bigjoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
ultrajoiner_found = ultrajoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode);
+ non_joiner_found = non_joiner_mode_found(data.drm_fd, connector, &mode);
if (igt_has_force_joiner_debugfs(data.drm_fd, output->name))
force_joiner_supported = true;
@@ -548,6 +614,9 @@ igt_main
else if (force_joiner_supported)
data.non_big_joiner_output[data.non_big_joiner_output_count++] = output;
+ if (non_joiner_found)
+ data.non_joiner_output[data.non_joiner_output_count++] = output;
+
data.output_count++;
}
if (data.big_joiner_output_count == 1 && data.non_big_joiner_output_count >= 1) {
@@ -713,6 +782,14 @@ igt_main
}
}
+ igt_describe("Verify the basic modeset on big joiner mode on all pipes");
+ igt_subtest_with_dynamic("basic-non-joiner") {
+ igt_require_f(data.n_pipes >= 1,
+ "Minimum of 1 pipe is required.\n");
+ igt_dynamic_f("non-joiner")
+ test_single_non_joiner(&data);
+ }
+
igt_fixture {
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev2)
2025-01-29 17:17 [PATCH i-g-t] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
@ 2025-01-29 19:12 ` Patchwork
2025-01-29 19:25 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-29 19:12 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6590 bytes --]
== Series Details ==
Series: tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev2)
URL : https://patchwork.freedesktop.org/series/143972/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8214_BAT -> XEIGTPW_12513_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (7 -> 8)
------------------------------
Additional (1): bat-bmg-2
Known issues
------------
Here are the changes found in XEIGTPW_12513_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@nullptr:
- bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/bat-bmg-2/igt@fbdev@nullptr.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2233])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2482]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_frontbuffer_tracking@basic:
- bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2229])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-vf: [PASS][9] -> [SKIP][10] ([Intel XE#1192]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
* igt@xe_pat@pat-index-xehpc:
- bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#1420])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: NOTRUN -> [SKIP][12] ([Intel XE#2245])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelp@render:
- bat-adlp-vf: [PASS][13] -> [DMESG-WARN][14] ([Intel XE#3970] / [Intel XE#4078]) +1 other test dmesg-warn
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html
* igt@xe_pat@pat-index-xelpg:
- bat-bmg-2: NOTRUN -> [SKIP][15] ([Intel XE#2236])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-bmg-2: NOTRUN -> [SKIP][16] ([Intel XE#3342])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/bat-bmg-2/igt@xe_sriov_flr@flr-vf1-clear.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-adlp-vf: [SKIP][17] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][18] ([Intel XE#1192])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_8214 -> IGTPW_12513
* Linux: xe-2568-486bb0f2805b5fcc43e7cc609b9dd59ef1ffcd79 -> xe-2570-bdfc862a5c719d934efbdedb050ef891b9feef15
IGTPW_12513: 12513
IGT_8214: 7a8a3744466fbb89127201077f030033c72df948 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2568-486bb0f2805b5fcc43e7cc609b9dd59ef1ffcd79: 486bb0f2805b5fcc43e7cc609b9dd59ef1ffcd79
xe-2570-bdfc862a5c719d934efbdedb050ef891b9feef15: bdfc862a5c719d934efbdedb050ef891b9feef15
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/index.html
[-- Attachment #2: Type: text/html, Size: 7596 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev2)
2025-01-29 17:17 [PATCH i-g-t] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
2025-01-29 19:12 ` ✓ Xe.CI.BAT: success for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev2) Patchwork
@ 2025-01-29 19:25 ` Patchwork
2025-01-29 21:07 ` ✗ i915.CI.Full: failure " Patchwork
2025-01-30 1:14 ` ✗ Xe.CI.Full: " Patchwork
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-29 19:25 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6972 bytes --]
== Series Details ==
Series: tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev2)
URL : https://patchwork.freedesktop.org/series/143972/
State : success
== Summary ==
CI Bug Log - changes from IGT_8214 -> IGTPW_12513
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/index.html
Participating hosts (43 -> 43)
------------------------------
Additional (2): fi-cfl-8109u bat-adls-6
Missing (2): fi-glk-j4005 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12513 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-adls-6: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/bat-adls-6/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- fi-cfl-8109u: NOTRUN -> [SKIP][2] ([i915#2190])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@verify-random:
- fi-cfl-8109u: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html
* igt@gem_tiled_pread_basic:
- bat-adls-6: NOTRUN -> [SKIP][5] ([i915#3282])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/bat-adls-6/igt@gem_tiled_pread_basic.html
* igt@i915_selftest@live@active:
- fi-bsw-nick: [PASS][6] -> [DMESG-FAIL][7] ([i915#12435]) +1 other test dmesg-fail
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8214/fi-bsw-nick/igt@i915_selftest@live@active.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/fi-bsw-nick/igt@i915_selftest@live@active.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][8] -> [DMESG-FAIL][9] ([i915#12061]) +1 other test dmesg-fail
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8214/bat-arls-5/igt@i915_selftest@live@workarounds.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-mtlp-6: [PASS][10] -> [DMESG-FAIL][11] ([i915#12061]) +1 other test dmesg-fail
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8214/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][12] ([i915#4103]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- fi-cfl-8109u: NOTRUN -> [SKIP][13] +11 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/fi-cfl-8109u/igt@kms_dsc@dsc-basic.html
- bat-adls-6: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#3840])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][15]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][16] ([i915#5354])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][17] ([i915#1072] / [i915#9732]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][18] ([i915#3555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][19] ([i915#3291]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/bat-adls-6/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@kms_chamelium_frames@dp-crc-fast:
- bat-dg2-13: [FAIL][20] ([i915#12440]) -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8214/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435
[i915#12440]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12440
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13577]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13577
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8214 -> IGTPW_12513
* Linux: CI_DRM_16037 -> CI_DRM_16039
CI-20190529: 20190529
CI_DRM_16037: 486bb0f2805b5fcc43e7cc609b9dd59ef1ffcd79 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16039: bdfc862a5c719d934efbdedb050ef891b9feef15 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12513: 12513
IGT_8214: 7a8a3744466fbb89127201077f030033c72df948 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/index.html
[-- Attachment #2: Type: text/html, Size: 8044 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev2)
2025-01-29 17:17 [PATCH i-g-t] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
2025-01-29 19:12 ` ✓ Xe.CI.BAT: success for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev2) Patchwork
2025-01-29 19:25 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-01-29 21:07 ` Patchwork
2025-01-30 1:14 ` ✗ Xe.CI.Full: " Patchwork
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-29 21:07 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100293 bytes --]
== Series Details ==
Series: tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev2)
URL : https://patchwork.freedesktop.org/series/143972/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16039_full -> IGTPW_12513_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12513_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12513_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/index.html
Participating hosts (11 -> 10)
------------------------------
Missing (1): shard-glk-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12513_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_eio@in-flight-internal-10ms:
- shard-mtlp: NOTRUN -> [ABORT][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-7/igt@gem_eio@in-flight-internal-10ms.html
* igt@gem_eio@in-flight-suspend:
- shard-mtlp: [PASS][2] -> [ABORT][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-mtlp-4/igt@gem_eio@in-flight-suspend.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-7/igt@gem_eio@in-flight-suspend.html
* igt@i915_suspend@sysfs-reader:
- shard-dg1: NOTRUN -> [ABORT][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-17/igt@i915_suspend@sysfs-reader.html
* igt@kms_joiner@basic-non-joiner@non-joiner (NEW):
- shard-dg2: NOTRUN -> [FAIL][5] +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-6/igt@kms_joiner@basic-non-joiner@non-joiner.html
- shard-rkl: NOTRUN -> [FAIL][6] +1 other test fail
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-4/igt@kms_joiner@basic-non-joiner@non-joiner.html
- shard-tglu: NOTRUN -> [WARN][7] +1 other test warn
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-4/igt@kms_joiner@basic-non-joiner@non-joiner.html
- shard-glk: NOTRUN -> [WARN][8] +1 other test warn
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk2/igt@kms_joiner@basic-non-joiner@non-joiner.html
- shard-mtlp: NOTRUN -> [FAIL][9] +1 other test fail
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-4/igt@kms_joiner@basic-non-joiner@non-joiner.html
* igt@perf_pmu@module-unload:
- shard-dg1: NOTRUN -> [INCOMPLETE][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-12/igt@perf_pmu@module-unload.html
New tests
---------
New tests have been introduced between CI_DRM_16039_full and IGTPW_12513_full:
### New IGT tests (2) ###
* igt@kms_joiner@basic-non-joiner:
- Statuses : 3 fail(s) 1 pass(s) 2 warn(s)
- Exec time: [0.00, 1.11] s
* igt@kms_joiner@basic-non-joiner@non-joiner:
- Statuses : 3 fail(s) 1 pass(s) 2 warn(s)
- Exec time: [0.0, 1.11] s
Known issues
------------
Here are the changes found in IGTPW_12513_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8411]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-1/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#8411])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#6230])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-1/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#6230])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-2/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#8411]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8411])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-6/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#11078])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#11078])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-17/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#11078])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-10/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#8414]) +6 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-17/igt@drm_fdinfo@isolation@vecs0.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8414]) +8 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-1/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@drm_fdinfo@most-busy-check-all@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#8414]) +13 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-6/igt@drm_fdinfo@most-busy-check-all@vcs0.html
* igt@gem_ccs@block-copy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-5/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#3555] / [i915#9323]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-5/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][25] ([i915#3555] / [i915#9323])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-5/igt@gem_ccs@ctrl-surf-copy.html
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#3555] / [i915#9323])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-12/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-tglu: NOTRUN -> [SKIP][27] ([i915#9323])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][28] -> [INCOMPLETE][29] ([i915#7297])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-dg2-8/igt@gem_ccs@suspend-resume.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-6/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][30] -> [INCOMPLETE][31] ([i915#12392] / [i915#7297])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-dg2-8/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-6/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#7697])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-1/igt@gem_close_race@multigpu-basic-process.html
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#7697])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-1/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#7697])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-5/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-set-pat:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#8562])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@engines-queued:
- shard-snb: NOTRUN -> [SKIP][36] ([i915#1099]) +5 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-snb7/igt@gem_ctx_persistence@engines-queued.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#8555])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-hang.html
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#8555])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#8555])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#280])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-3/igt@gem_ctx_sseu@invalid-args.html
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#280])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-3/igt@gem_ctx_sseu@invalid-args.html
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#280])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-12/igt@gem_ctx_sseu@invalid-args.html
- shard-tglu: NOTRUN -> [SKIP][43] ([i915#280])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-5/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#280]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-5/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@kms:
- shard-mtlp: [PASS][45] -> [ABORT][46] ([i915#13193]) +1 other test abort
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-mtlp-8/igt@gem_eio@kms.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-7/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][47] -> [FAIL][48] ([i915#12543] / [i915#5784])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-dg1-12/igt@gem_eio@reset-stress.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-14/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4771])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-10/igt@gem_exec_balancer@bonded-dual.html
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4771])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-17/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4812]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-12/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@bonded-sync:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4771])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-2/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4036])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-6/igt@gem_exec_balancer@invalid-bonds.html
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4036])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-tglu: NOTRUN -> [SKIP][55] ([i915#4525])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-10/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_big@single:
- shard-tglu: NOTRUN -> [ABORT][56] ([i915#11713])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-3/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#6344])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-7/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][58] ([i915#11965]) +4 other tests fail
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-1/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4812])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-6/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3539] / [i915#4852]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-7/igt@gem_exec_flush@basic-uc-pro-default.html
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#3539] / [i915#4852]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-17/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3281]) +5 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#3281]) +12 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-8/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#3281]) +15 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-2/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#3281]) +16 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_schedule@semaphore-power:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4537] / [i915#4812])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-2/igt@gem_exec_schedule@semaphore-power.html
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4537] / [i915#4812])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-7/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4860]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4860]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#4613] / [i915#7582])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-2/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4613]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-8/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][72] ([i915#4613]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-tglu: NOTRUN -> [SKIP][73] ([i915#4613]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-7/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#4613]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][75] ([i915#4613]) +5 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk4/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#12193]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4565]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8289])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-3/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#4077]) +15 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-12/igt@gem_mmap_gtt@basic-small-copy.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4077]) +8 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-1/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4077]) +14 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-3/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4083]) +4 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-6/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4083]) +8 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-17/igt@gem_mmap_wc@write-read.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#3282]) +7 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#3282]) +5 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3282]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-8/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4270]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [TIMEOUT][88] ([i915#12917] / [i915#12964]) +4 other tests timeout
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#4270]) +5 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_readwrite@read-bad-handle:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3282]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-7/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#5190] / [i915#8428]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#8428]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-3/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#4079]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#4079])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#4079]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#4885]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@gem_softpin@evict-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#4885])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-8/igt@gem_softpin@evict-snoop.html
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#4885])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-4/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: NOTRUN -> [FAIL][99] ([i915#12941])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-5/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@access-control:
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#3297]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-4/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#3297]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][102] ([i915#3323])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk2/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#4880])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#3297] / [i915#4880])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#3281] / [i915#3297])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-2/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#3297]) +3 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-7/igt@gem_userptr_blits@unsync-unmap.html
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#3297]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-17/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#2527] / [i915#2856]) +4 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-3/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#2856]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#2527]) +3 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#2527]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-14/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-param:
- shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#2527] / [i915#2856]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#2856]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-10/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4881])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-7/igt@i915_fb_tiling.html
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#4881])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: NOTRUN -> [ABORT][116] ([i915#9820])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#8399])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-4/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#8399])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-1/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][119] -> [INCOMPLETE][120] ([i915#12455]) +1 other test incomplete
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu-1: NOTRUN -> [WARN][121] ([i915#2681]) +1 other test warn
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][122] ([i915#12797])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk7/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#11681] / [i915#6621])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-2/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#11681])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-8/igt@i915_pm_rps@thresholds.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#11681])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-7/igt@i915_pm_rps@thresholds-park.html
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#11681])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@i915_pm_rps@thresholds-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#4387])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#6245])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@i915_query@hwconfig_table.html
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#6245])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-2/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#6188])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-3/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#5723])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-1/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock:
- shard-mtlp: NOTRUN -> [DMESG-WARN][132] ([i915#9311]) +1 other test dmesg-warn
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-8/igt@i915_selftest@mock.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [PASS][133] -> [INCOMPLETE][134] ([i915#4817])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
- shard-glk: NOTRUN -> [INCOMPLETE][135] ([i915#4817])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk8/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#7707])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-2/igt@intel_hwmon@hwmon-write.html
- shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#7707])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#4212])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#4215] / [i915#5190])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-4/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#4212]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#4212])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-7/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-4-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#8709]) +7 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-4-4-mc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#8709]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#8709]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#8709]) +3 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-8/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#8709]) +7 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#12967] / [i915#6228])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-1/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#12967])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-6/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#9531])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#9531])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#9531])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@modeset-transition-fencing:
- shard-glk: [PASS][152] -> [FAIL][153] ([i915#12238])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-glk9/igt@kms_atomic_transition@modeset-transition-fencing.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk8/igt@kms_atomic_transition@modeset-transition-fencing.html
* igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs:
- shard-glk: [PASS][154] -> [FAIL][155] ([i915#11859])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-glk9/igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk8/igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg1: NOTRUN -> [FAIL][156] ([i915#5956]) +1 other test fail
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#1769] / [i915#3555])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#1769] / [i915#3555])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][159] ([i915#1769])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#4538] / [i915#5286]) +6 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-17/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#5286])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#5286]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#5286]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][164] -> [FAIL][165] ([i915#5138])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-8/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-tglu-1: NOTRUN -> [SKIP][166] ([i915#5286]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#3638]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][168] +13 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#3638]) +5 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#6187])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#4538] / [i915#5190]) +12 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-10/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#4538]) +11 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#6095]) +14 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-3/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-edp-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#12313])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#12313]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#6095]) +169 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][177] +418 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#10307] / [i915#6095]) +163 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-6/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#12313])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#6095]) +54 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#12313]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#12313])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#6095]) +24 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#12805])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#12805])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#12805]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#12805])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#12805]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#12805])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#6095]) +16 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][191] ([i915#12796]) +1 other test incomplete
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#12313]) +4 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#6095]) +88 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-2/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#7213] / [i915#9010]) +4 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-3/igt@kms_cdclk@mode-transition.html
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#3742])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-5/igt@kms_cdclk@mode-transition.html
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#3742])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-3/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#3742])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#4087]) +3 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#11151] / [i915#7828]) +7 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-8/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#11151] / [i915#7828]) +5 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-3/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#11151] / [i915#7828]) +7 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#11151] / [i915#7828]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-5/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#11151] / [i915#7828]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#11151] / [i915#7828]) +9 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-10/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content-type-change:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#9424])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-12/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#3116])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#3299])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#6944] / [i915#9424]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-4/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#9424])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-5/igt@kms_content_protection@mei-interface.html
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#9424]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-6/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#6944] / [i915#7116] / [i915#7118])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][214] ([i915#1339] / [i915#7173])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-10/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#13049])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-rkl: [PASS][216] -> [FAIL][217] ([i915#13566]) +2 other tests fail
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#13049])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#13049]) +2 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#13049])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8814])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#13049]) +2 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#8814])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-tglu: [PASS][224] -> [FAIL][225] ([i915#13566]) +3 other tests fail
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][226] ([i915#13566]) +2 other tests fail
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#13046] / [i915#5354]) +4 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#4213]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#4103])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#4103]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#4103] / [i915#4213]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
- shard-glk: [PASS][232] -> [FAIL][233] ([i915#2346])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-glk3/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk8/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-snb: [PASS][234] -> [SKIP][235] +5 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#9809]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#9067])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#4103])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-snb: NOTRUN -> [FAIL][239] ([i915#12170])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][240] ([i915#11968])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#3555]) +8 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#3555]) +6 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#12402])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#3840]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#3840])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#3840]) +2 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-8/igt@kms_dsc@dsc-with-output-formats.html
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#3840])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-14/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#3840] / [i915#9053])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#3840] / [i915#9053])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#3840] / [i915#9053])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][251] ([i915#9878])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk1/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#1839])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#3637]) +2 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][254] ([i915#3637]) +9 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3637]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-1/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#9934]) +11 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-4/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#9934]) +12 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#9934]) +6 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-8/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-rkl: [PASS][259] -> [FAIL][260] ([i915#11989])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-5/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][261] ([i915#11989])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-5/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2.html
* igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][262] ([i915#11832] / [i915#11989])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-5/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html
* igt@kms_flip@plain-flip-ts-check@b-hdmi-a2:
- shard-rkl: NOTRUN -> [DMESG-WARN][263] ([i915#12964]) +17 other tests dmesg-warn
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-1/igt@kms_flip@plain-flip-ts-check@b-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#2672] / [i915#3555]) +3 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#2672] / [i915#3555]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][267] ([i915#2587] / [i915#2672] / [i915#3555])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#2672]) +3 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#2672] / [i915#3555])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#2587] / [i915#2672])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#2587] / [i915#2672]) +4 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#2672] / [i915#8813]) +2 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8810] / [i915#8813])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8810])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#2672] / [i915#3555]) +7 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#2672] / [i915#3555]) +6 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#2672]) +7 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#2587] / [i915#2672]) +6 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: [PASS][280] -> [FAIL][281] ([i915#6880]) +2 other tests fail
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#5354]) +31 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][283] +49 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [PASS][284] -> [DMESG-FAIL][285] ([i915#12964]) +1 other test dmesg-fail
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][286] ([i915#10056] / [i915#13353])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk2/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#5439])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#5439])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#3458]) +17 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][290] +37 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][291] +22 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#8708]) +19 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#8708]) +22 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#3023]) +35 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#1825]) +13 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#1825]) +49 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#8708]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#3458]) +18 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][299] +72 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdr@bpc-switch:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#8228]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-7/igt@kms_hdr@bpc-switch.html
- shard-dg2: [PASS][301] -> [SKIP][302] ([i915#3555] / [i915#8228])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-dg2-10/igt@kms_hdr@bpc-switch.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-5/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#8228]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-swap:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#3555] / [i915#8228]) +2 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-14/igt@kms_hdr@static-swap.html
* igt@kms_joiner@basic-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#10656])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#10656])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-3/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#12394] / [i915#13522]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-14/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][308] ([i915#12339])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-5/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#10656])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-7/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#12339])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#13522])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][312] ([i915#4816])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#4816])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#1839])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-14/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#1839])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#6301])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-8/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#6301])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-6/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-dg2: NOTRUN -> [SKIP][318] +11 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-7/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: [PASS][319] -> [INCOMPLETE][320] ([i915#12756])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-glk7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#3555] / [i915#8821])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-1/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#6953] / [i915#9423])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-7/igt@kms_plane_scaling@intel-max-src-size.html
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#6953])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#6953])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#12247] / [i915#9423])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#12247]) +3 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][327] ([i915#12247]) +13 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][328] ([i915#12247]) +9 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][329] ([i915#12247]) +14 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#12247]) +4 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][331] ([i915#12247]) +8 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-tglu: NOTRUN -> [SKIP][332] ([i915#12247] / [i915#3555])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-rkl: NOTRUN -> [SKIP][333] ([i915#12247] / [i915#3555])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#12247] / [i915#6953]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
- shard-mtlp: NOTRUN -> [SKIP][335] ([i915#12247] / [i915#6953])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg1: NOTRUN -> [SKIP][336] ([i915#5354])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-14/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#9685]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-rkl: [PASS][338] -> [DMESG-WARN][339] ([i915#12964]) +37 other tests dmesg-warn
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-rkl-4/igt@kms_pm_dc@dc5-dpms-negative.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-6/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: NOTRUN -> [FAIL][340] ([i915#12913])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-4/igt@kms_pm_dc@dc6-dpms.html
- shard-dg2: NOTRUN -> [SKIP][341] ([i915#5978])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-3/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu-1: NOTRUN -> [FAIL][342] ([i915#9295])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [FAIL][343] ([i915#12912])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#3361]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#9519]) +2 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][346] ([i915#9519])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][347] ([i915#9519]) +1 other test skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-8/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][348] ([i915#9519])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: NOTRUN -> [INCOMPLETE][349] ([i915#10553])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk3/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][350] ([i915#6524]) +1 other test skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-dg1: NOTRUN -> [SKIP][351] ([i915#6524])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@kms_prime@d3hot.html
- shard-tglu: NOTRUN -> [SKIP][352] ([i915#6524])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-4/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][353] ([i915#11520]) +7 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-17/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#11520]) +2 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][355] ([i915#12316])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-4/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][356] ([i915#11520]) +9 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][357] ([i915#11520]) +7 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][358] ([i915#11520]) +8 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk8/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][359] ([i915#11520]) +7 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-snb: NOTRUN -> [SKIP][360] ([i915#11520]) +13 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-snb1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-tglu-1: NOTRUN -> [SKIP][361] ([i915#9683])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][362] ([i915#9683]) +1 other test skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-6/igt@kms_psr2_su@page_flip-p010.html
- shard-rkl: NOTRUN -> [SKIP][363] ([i915#9683]) +1 other test skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][364] ([i915#9683]) +1 other test skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-10/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][365] ([i915#4348]) +1 other test skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-1/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][366] ([i915#9683])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@pr-primary-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#9688]) +9 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-4/igt@kms_psr@pr-primary-mmap-cpu.html
* igt@kms_psr@pr-sprite-render:
- shard-tglu-1: NOTRUN -> [SKIP][368] ([i915#9732]) +10 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr-primary-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][369] ([i915#1072] / [i915#9732]) +17 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-5/igt@kms_psr@psr-primary-mmap-cpu.html
* igt@kms_psr@psr-primary-render:
- shard-tglu: NOTRUN -> [SKIP][370] ([i915#9732]) +15 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-9/igt@kms_psr@psr-primary-render.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][371] ([i915#1072] / [i915#9732]) +27 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr2-primary-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][372] ([i915#1072] / [i915#9732]) +24 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-14/igt@kms_psr@psr2-primary-mmap-cpu.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu: NOTRUN -> [SKIP][373] ([i915#9685]) +1 other test skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][374] ([i915#9685])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][375] ([i915#4884])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][376] ([i915#5289])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][377] ([i915#5289]) +1 other test skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg1: NOTRUN -> [SKIP][378] ([i915#5289]) +1 other test skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-14/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][379] ([i915#3555]) +5 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-14/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][380] ([i915#3555]) +6 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][381] ([i915#13179]) +1 other test abort
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-4/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_setmode@basic:
- shard-snb: NOTRUN -> [FAIL][382] ([i915#5465]) +1 other test fail
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-snb1/igt@kms_setmode@basic.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][383] ([IGT#160])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-3/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][384] ([i915#8623])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@kms_tiled_display@basic-test-pattern.html
- shard-glk: NOTRUN -> [FAIL][385] ([i915#10959])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][386] ([i915#8623])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-snb: NOTRUN -> [SKIP][387] +406 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-snb7/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-basic:
- shard-tglu-1: NOTRUN -> [SKIP][388] ([i915#3555]) +1 other test skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: NOTRUN -> [SKIP][389] ([i915#9906])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-1/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-rkl: NOTRUN -> [SKIP][390] ([i915#11920])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-5/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][391] ([i915#3555] / [i915#9906])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-7/igt@kms_vrr@negative-basic.html
- shard-dg1: NOTRUN -> [SKIP][392] ([i915#3555] / [i915#9906])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg1: NOTRUN -> [SKIP][393] ([i915#9906])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][394] ([i915#2437] / [i915#9412])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][395] ([i915#2437]) +2 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-glk4/igt@kms_writeback@writeback-fb-id.html
- shard-rkl: NOTRUN -> [SKIP][396] ([i915#2437])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-4/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][397] ([i915#2437] / [i915#9412])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-rkl: NOTRUN -> [SKIP][398] ([i915#2437] / [i915#9412]) +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-tglu-1: NOTRUN -> [SKIP][399] ([i915#2437] / [i915#9412])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][400] ([i915#2437] / [i915#9412])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][401] ([i915#2437] / [i915#9412])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][402] ([i915#2437])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-14/igt@kms_writeback@writeback-invalid-parameters.html
- shard-tglu: NOTRUN -> [SKIP][403] ([i915#2437])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-3/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@global-sseu-config:
- shard-dg2: NOTRUN -> [SKIP][404] ([i915#7387])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-10/igt@perf@global-sseu-config.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][405] ([i915#7387])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-2/igt@perf@global-sseu-config-invalid.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][406] ([i915#2434])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-5/igt@perf@mi-rpc.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][407] ([i915#2435])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-2/igt@perf@per-context-mode-unprivileged.html
- shard-dg1: NOTRUN -> [SKIP][408] ([i915#2433])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-18/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@frequency@gt0:
- shard-dg1: NOTRUN -> [FAIL][409] ([i915#12549] / [i915#6806]) +1 other test fail
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-14/igt@perf_pmu@frequency@gt0.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg2: NOTRUN -> [SKIP][410] ([i915#3708])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg2-3/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-read:
- shard-rkl: NOTRUN -> [SKIP][411] ([i915#3291] / [i915#3708])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- shard-dg1: NOTRUN -> [SKIP][412] ([i915#3708]) +1 other test skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-dg1-13/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][413] ([i915#3708])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-5/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random:
- shard-tglu: NOTRUN -> [FAIL][414] ([i915#12910]) +8 other tests fail
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-tglu-3/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html
#### Possible fixes ####
* igt@drm_fdinfo@memory-info-resident:
- shard-rkl: [DMESG-WARN][415] ([i915#12964]) -> [PASS][416] +45 other tests pass
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-rkl-4/igt@drm_fdinfo@memory-info-resident.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-rkl-7/igt@drm_fdinfo@memory-info-resident.html
* igt@gem_eio@banned:
- shard-mtlp: [ABORT][417] -> [PASS][418]
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-mtlp-4/igt@gem_eio@banned.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-1/igt@gem_eio@banned.html
* igt@gem_eio@in-flight-contexts-10ms:
- shard-mtlp: [ABORT][419] ([i915#13193]) -> [PASS][420] +1 other test pass
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16039/shard-mtlp-7/igt@gem_eio@in-flight-contexts-10ms.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/shard-mtlp-8/igt@gem_eio@in-flight-contexts-10ms.html
* igt@gem_exec_whisper@basic-contexts-priority:
- shard-dg2: [FAIL][421] -> [PASS][422]
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12513/index.html
[-- Attachment #2: Type: text/html, Size: 109913 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev2)
2025-01-29 17:17 [PATCH i-g-t] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
` (2 preceding siblings ...)
2025-01-29 21:07 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-01-30 1:14 ` Patchwork
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-30 1:14 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 158662 bytes --]
== Series Details ==
Series: tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev2)
URL : https://patchwork.freedesktop.org/series/143972/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8214_full -> XEIGTPW_12513_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12513_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12513_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12513_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [TIMEOUT][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@xe_spin_batch@spin-timestamp-check@engine-drm_xe_engine_class_video_enhance:
- shard-bmg: [PASS][2] -> [DMESG-WARN][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-1/igt@xe_spin_batch@spin-timestamp-check@engine-drm_xe_engine_class_video_enhance.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-2/igt@xe_spin_batch@spin-timestamp-check@engine-drm_xe_engine_class_video_enhance.html
#### Warnings ####
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][4] ([Intel XE#2341]) -> [TIMEOUT][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_content_protection@lic-type-0.html
New tests
---------
New tests have been introduced between XEIGT_8214_full and XEIGTPW_12513_full:
### New IGT tests (2) ###
* igt@kms_joiner@basic-non-joiner:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@kms_joiner@basic-non-joiner@non-joiner:
- Statuses : 3 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_12513_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getstats:
- shard-dg2-set2: [PASS][6] -> [SKIP][7] ([Intel XE#2423]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@core_getstats.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@core_getstats.html
* igt@core_getversion@basic:
- shard-dg2-set2: [PASS][8] -> [FAIL][9] ([Intel XE#3440])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-432/igt@core_getversion@basic.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@core_getversion@basic.html
* igt@core_hotunplug@hotunplug-rescan:
- shard-lnl: NOTRUN -> [ABORT][10] ([Intel XE#3914])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-4/igt@core_hotunplug@hotunplug-rescan.html
* igt@fbdev@eof:
- shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#2134])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-1/igt@fbdev@eof.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@fbdev@eof.html
* igt@fbdev@write:
- shard-dg2-set2: [PASS][13] -> [SKIP][14] ([Intel XE#2134]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@fbdev@write.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@fbdev@write.html
* igt@kms_addfb_basic@bad-pitch-999:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2423]) +11 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_addfb_basic@bad-pitch-999.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-2-4-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#2550] / [Intel XE#3767]) +15 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-2-4-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#873])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-invalid-params-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2423] / [i915#2575]) +34 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_atomic@plane-invalid-params-fence.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#2136]) +45 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1407]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-180:
- shard-bmg: [PASS][21] -> [SKIP][22] ([Intel XE#2136]) +14 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-2/igt@kms_big_fb@linear-16bpp-rotate-180.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_big_fb@linear-16bpp-rotate-180.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2327])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-8/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#316])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +5 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#610])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2191])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#367])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1512])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-5/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#787]) +160 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#3432])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2887])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#455] / [Intel XE#787]) +26 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#1152]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#306]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@degamma:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#306])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-6/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#373]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-8/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#373]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2252]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_color@ctm-0-50@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [DMESG-WARN][43] ([Intel XE#4172]) +5 other tests dmesg-warn
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-2/igt@kms_color@ctm-0-50@pipe-d-hdmi-a-3.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][44] ([Intel XE#1178]) +2 other tests fail
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][45] ([Intel XE#1178]) +1 other test fail
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#3304])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#455]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#3278])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2320]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1424]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2286])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#2291]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#309])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][55] ([Intel XE#3226])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1340])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#2244])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-4/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2372])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-4/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#703])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][60] ([Intel XE#1033]) +7 other tests dmesg-warn
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1421]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-1/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#2316]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@busy-flip:
- shard-dg2-set2: [PASS][64] -> [SKIP][65] ([Intel XE#2423] / [i915#2575]) +90 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-436/igt@kms_flip@busy-flip.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_flip@busy-flip.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
- shard-bmg: NOTRUN -> [FAIL][66] ([Intel XE#3321])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][67] ([Intel XE#301] / [Intel XE#3321]) +3 other tests fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [FAIL][68] ([Intel XE#301]) +1 other test fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-lnl: [PASS][69] -> [FAIL][70] ([Intel XE#886]) +1 other test fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1401]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2293]) +5 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/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:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1397] / [Intel XE#1745])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1397])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2293] / [Intel XE#2380])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#651]) +9 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#651]) +6 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2136]) +5 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
- shard-dg2-set2: [PASS][80] -> [SKIP][81] ([Intel XE#2136]) +18 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#4141]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [PASS][83] -> [SKIP][84] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#2136] / [Intel XE#2351]) +12 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2311]) +5 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#656]) +12 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#653]) +15 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2313]) +10 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [ABORT][90] ([Intel XE#2625] / [Intel XE#4048])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2.html
* igt@kms_hdr@static-toggle:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1503])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-7/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#2927])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-d-dp-2:
- shard-bmg: [PASS][93] -> [DMESG-WARN][94] ([Intel XE#4172]) +33 other tests dmesg-warn
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-8/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-d-dp-2.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-2/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-d-dp-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2763]) +11 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20:
- shard-bmg: [PASS][96] -> [DMESG-WARN][97] ([Intel XE#2566] / [Intel XE#4172]) +1 other test dmesg-warn
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#2763]) +7 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2763] / [Intel XE#455]) +6 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2763]) +7 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#870])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: NOTRUN -> [FAIL][102] ([Intel XE#718])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#3309])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-8/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@i2c:
- shard-bmg: [PASS][104] -> [SKIP][105] ([Intel XE#2446]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-7/igt@kms_pm_rpm@i2c.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_pm_rpm@i2c.html
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2446])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2-set2: [PASS][107] -> [DMESG-WARN][108] ([Intel XE#1033]) +11 other tests dmesg-warn
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2-set2: [PASS][109] -> [SKIP][110] ([Intel XE#2446]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-436/igt@kms_pm_rpm@modeset-non-lpsp.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_properties@connector-properties-legacy:
- shard-bmg: [PASS][111] -> [SKIP][112] ([Intel XE#2423]) +83 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-7/igt@kms_properties@connector-properties-legacy.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_properties@connector-properties-legacy.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#2893])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#1489])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#1489]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-8/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@pr-primary-page-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2234])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2414])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#3414])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#3414] / [Intel XE#3904])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic:
- shard-bmg: [PASS][122] -> [FAIL][123] ([Intel XE#2883]) +1 other test fail
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-7/igt@kms_setmode@basic.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_setmode@basic.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#756])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@kms_writeback@writeback-pixel-formats.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#1123])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_eudebug@basic-read-event:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2905]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug@basic-vm-access-parameters-userptr:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#3889])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-3/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2905]) +5 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#2905]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-4/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html
* igt@xe_evict@evict-beng-small-external:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][131] ([Intel XE#1033] / [Intel XE#1473])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@xe_evict@evict-beng-small-external.html
* igt@xe_evict@evict-beng-small-multi-vm:
- shard-bmg: [PASS][132] -> [DMESG-WARN][133] ([Intel XE#1473] / [Intel XE#4172])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-5/igt@xe_evict@evict-beng-small-multi-vm.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-2/igt@xe_evict@evict-beng-small-multi-vm.html
* igt@xe_evict@evict-large-external-cm:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#688]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-3/igt@xe_evict@evict-large-external-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#1392]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2322]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-8/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html
* igt@xe_exec_basic@once-userptr-invalidate-race:
- shard-dg2-set2: [PASS][137] -> [SKIP][138] ([Intel XE#1130]) +149 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-463/igt@xe_exec_basic@once-userptr-invalidate-race.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_exec_basic@once-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-invalid-userptr-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#288]) +7 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@xe_exec_fault_mode@many-invalid-userptr-fault.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2360])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1130]) +72 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
* igt@xe_gt_freq@freq_suspend:
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#584]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-8/igt@xe_gt_freq@freq_suspend.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][143] ([Intel XE#1999]) +2 other tests fail
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168]) -> ([PASS][169], [SKIP][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194]) ([Intel XE#378])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-1/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-4/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-4/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-5/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-3/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-7/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-7/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-7/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-4/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-3/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-7/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-2/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-2/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-6/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-6/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-6/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-8/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-5/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-5/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-8/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-1/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-3/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-3/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-8/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-1/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-4/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-4/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-1/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-4/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-4/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-3/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-2/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-6/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-6/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-8/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-5/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-7/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-7/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-2/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-7/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-2/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-3/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-1/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-8/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-6/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-6/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-8/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-3/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-5/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-5/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-1/igt@xe_module_load@load.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [PASS][195] -> [FAIL][196] ([Intel XE#3546])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-2/igt@xe_module_load@reload-no-display.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@mmio-triggered-reports:
- shard-dg2-set2: NOTRUN -> [SKIP][197] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][198] ([Intel XE#2427])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@xe_peer2peer@write.html
- shard-dg2-set2: NOTRUN -> [SKIP][199] ([Intel XE#1061])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_peer2peer@write.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-dg2-set2: [PASS][200] -> [ABORT][201] ([Intel XE#1358]) +1 other test abort
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-466/igt@xe_pm@s2idle-multiple-execs.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s3-exec-after:
- shard-bmg: [PASS][202] -> [DMESG-WARN][203] ([Intel XE#4172] / [Intel XE#569])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-7/igt@xe_pm@s3-exec-after.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-lnl: [PASS][204] -> [ABORT][205] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-5/igt@xe_pm@s4-vm-bind-prefetch.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-bmg: [PASS][206] -> [DMESG-WARN][207] ([Intel XE#2280] / [Intel XE#4172])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@xe_pm@s4-vm-bind-unbind-all.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: NOTRUN -> [SKIP][208] ([Intel XE#944])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][209] ([Intel XE#944])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_query@multigpu-query-oa-units:
- shard-lnl: NOTRUN -> [SKIP][210] ([Intel XE#944]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-1/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_query@query-gt-list:
- shard-bmg: [PASS][211] -> [SKIP][212] ([Intel XE#1130]) +188 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-1/igt@xe_query@query-gt-list.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@xe_query@query-gt-list.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: NOTRUN -> [SKIP][213] ([Intel XE#3342])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_vm@mixed-userptr-misaligned-binds-3145728:
- shard-bmg: NOTRUN -> [SKIP][214] ([Intel XE#1130]) +12 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@xe_vm@mixed-userptr-misaligned-binds-3145728.html
#### Possible fixes ####
* igt@core_getclient:
- shard-dg2-set2: [SKIP][215] ([Intel XE#2423]) -> [PASS][216]
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@core_getclient.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@core_getclient.html
* igt@fbdev@unaligned-write:
- shard-dg2-set2: [SKIP][217] ([Intel XE#2134]) -> [PASS][218] +1 other test pass
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@fbdev@unaligned-write.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@fbdev@unaligned-write.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-lnl: [FAIL][219] ([Intel XE#3908]) -> [PASS][220] +3 other tests pass
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][221] ([Intel XE#2136]) -> [PASS][222] +20 other tests pass
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][223] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][224] +4 other tests pass
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_big_fb@x-tiled-addfb-size-offset-overflow.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_big_fb@x-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][225] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][226]
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-dg2-set2: [SKIP][227] ([Intel XE#2423] / [i915#2575]) -> [PASS][228] +81 other tests pass
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-64x64.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: [DMESG-WARN][229] ([Intel XE#4172]) -> [PASS][230] +5 other tests pass
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-5/igt@kms_cursor_crc@cursor-suspend.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [SKIP][231] ([Intel XE#2291]) -> [PASS][232] +1 other test pass
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@forked-bo:
- shard-bmg: [INCOMPLETE][233] ([Intel XE#3226]) -> [PASS][234] +1 other test pass
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-4/igt@kms_cursor_legacy@forked-bo.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-8/igt@kms_cursor_legacy@forked-bo.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][235] ([Intel XE#2425]) -> [PASS][236]
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [SKIP][237] ([Intel XE#2423]) -> [PASS][238] +84 other tests pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-bmg: [SKIP][239] ([Intel XE#2316]) -> [PASS][240] +1 other test pass
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-8/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-panning@a-dp4:
- shard-dg2-set2: [INCOMPLETE][241] ([Intel XE#2049]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@kms_flip@flip-vs-panning@a-dp4.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_flip@flip-vs-panning@a-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [SKIP][243] ([Intel XE#2136]) -> [PASS][244] +23 other tests pass
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][245] ([Intel XE#2571]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_dc@dc5-dpms:
- shard-dg2-set2: [DMESG-WARN][247] ([Intel XE#1033]) -> [PASS][248] +3 other tests pass
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@kms_pm_dc@dc5-dpms.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_pm_dc@dc5-dpms.html
- shard-lnl: [FAIL][249] ([Intel XE#718]) -> [PASS][250]
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_rpm@legacy-planes:
- shard-dg2-set2: [SKIP][251] ([Intel XE#2446]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_pm_rpm@legacy-planes.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-434/igt@kms_pm_rpm@legacy-planes.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-bmg: [SKIP][253] ([Intel XE#2446]) -> [PASS][254] +2 other tests pass
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [FAIL][255] ([Intel XE#899]) -> [PASS][256]
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@xe_exec_basic@many-bindexecqueue-rebind:
- shard-bmg: [SKIP][257] ([Intel XE#1130]) -> [PASS][258] +195 other tests pass
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@xe_exec_basic@many-bindexecqueue-rebind.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-5/igt@xe_exec_basic@many-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][259] ([Intel XE#1392]) -> [PASS][260] +2 other tests pass
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@no-exec-basic-defer-bind:
- shard-dg2-set2: [SKIP][261] ([Intel XE#1130]) -> [PASS][262] +138 other tests pass
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@xe_exec_basic@no-exec-basic-defer-bind.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@xe_exec_basic@no-exec-basic-defer-bind.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [SKIP][263] ([Intel XE#2229] / [Intel XE#455]) -> [PASS][264] +1 other test pass
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@xe_live_ktest@xe_bo.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@xe_live_ktest@xe_bo.html
- shard-bmg: [SKIP][265] ([Intel XE#2229]) -> [PASS][266] +1 other test pass
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@xe_live_ktest@xe_bo.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-dg2-set2: [SKIP][267] ([Intel XE#2229]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate:
- shard-bmg: [SKIP][269] ([Intel XE#1192]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-8/igt@xe_live_ktest@xe_migrate.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-bmg: [FAIL][271] ([Intel XE#1999]) -> [PASS][272] +2 other tests pass
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-4/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][273] ([Intel XE#3546]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@xe_module_load@reload.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@xe_module_load@reload.html
- shard-bmg: [FAIL][275] ([Intel XE#3546]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@xe_module_load@reload.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-8/igt@xe_module_load@reload.html
* igt@xe_pm@s3-mocs:
- shard-dg2-set2: [DMESG-WARN][277] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@xe_pm@s3-mocs.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [ABORT][279] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-lnl-1/igt@xe_pm@s4-vm-bind-userptr.html
#### Warnings ####
* igt@core_hotunplug@hotreplug-lateclose:
- shard-dg2-set2: [DMESG-WARN][281] ([Intel XE#1033]) -> [SKIP][282] ([Intel XE#2136])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-463/igt@core_hotunplug@hotreplug-lateclose.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@core_hotunplug@hotreplug-lateclose.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-bmg: [SKIP][283] ([Intel XE#3768]) -> [SKIP][284] ([Intel XE#2423])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-1/igt@kms_async_flips@invalid-async-flip-atomic.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: [SKIP][285] ([Intel XE#2370]) -> [SKIP][286] ([Intel XE#2423]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg2-set2: [SKIP][287] ([Intel XE#2136]) -> [DMESG-WARN][288] ([Intel XE#1033]) +1 other test dmesg-warn
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][289] ([Intel XE#316]) -> [SKIP][290] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: [SKIP][291] ([Intel XE#2136]) -> [SKIP][292] ([Intel XE#2327]) +4 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: [SKIP][293] ([Intel XE#2327]) -> [SKIP][294] ([Intel XE#2136]) +6 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-270.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][295] ([Intel XE#316]) -> [SKIP][296] ([Intel XE#2136]) +4 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][297] ([Intel XE#2136]) -> [DMESG-WARN][298] ([Intel XE#4172]) +3 other tests dmesg-warn
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2-set2: [SKIP][299] ([Intel XE#2136] / [Intel XE#2351]) -> [DMESG-WARN][300] ([Intel XE#1033])
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-bmg: [SKIP][301] ([Intel XE#1124]) -> [SKIP][302] ([Intel XE#2136]) +9 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][303] ([Intel XE#2136]) -> [SKIP][304] ([Intel XE#1124]) +9 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: [SKIP][305] ([Intel XE#2136]) -> [SKIP][306] ([Intel XE#607])
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: [SKIP][307] ([Intel XE#610]) -> [SKIP][308] ([Intel XE#2136])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-dg2-set2: [SKIP][309] ([Intel XE#610]) -> [SKIP][310] ([Intel XE#2136])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: [SKIP][311] ([Intel XE#1124]) -> [SKIP][312] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2-set2: [SKIP][313] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][314] ([Intel XE#1124]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: [SKIP][315] ([Intel XE#2136]) -> [SKIP][316] ([Intel XE#1124]) +11 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][317] ([Intel XE#1124]) -> [SKIP][318] ([Intel XE#2136]) +3 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-463/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: [SKIP][319] ([Intel XE#2328]) -> [SKIP][320] ([Intel XE#2136])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][321] ([Intel XE#2191]) -> [SKIP][322] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-bmg: [SKIP][323] ([Intel XE#2423]) -> [SKIP][324] ([Intel XE#2314] / [Intel XE#2894])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: [SKIP][325] ([Intel XE#2423] / [i915#2575]) -> [SKIP][326] ([Intel XE#2191])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: [SKIP][327] ([Intel XE#367]) -> [SKIP][328] ([Intel XE#2423]) +2 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: [SKIP][329] ([Intel XE#2423] / [i915#2575]) -> [SKIP][330] ([Intel XE#367]) +2 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-bmg: [SKIP][331] ([Intel XE#2423]) -> [SKIP][332] ([Intel XE#367]) +2 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-8/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: [SKIP][333] ([Intel XE#367]) -> [SKIP][334] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-463/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: [SKIP][335] ([Intel XE#2887]) -> [SKIP][336] ([Intel XE#2136]) +10 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][337] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][338] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][339] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][340] ([Intel XE#2136]) +6 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][341] ([Intel XE#2136]) -> [SKIP][342] ([Intel XE#2907]) +2 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [DMESG-WARN][343] ([Intel XE#1033]) -> [SKIP][344] ([Intel XE#2136] / [Intel XE#2351])
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][345] ([Intel XE#2136]) -> [SKIP][346] ([Intel XE#2652] / [Intel XE#787])
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][347] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][348] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][349] ([Intel XE#2136]) -> [SKIP][350] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][351] ([Intel XE#3442]) -> [SKIP][352] ([Intel XE#2136])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: [SKIP][353] ([Intel XE#3432]) -> [SKIP][354] ([Intel XE#2136])
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-bmg: [SKIP][355] ([Intel XE#2136]) -> [SKIP][356] ([Intel XE#2887]) +12 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][357] ([Intel XE#2692] / [Intel XE#4010]) -> [SKIP][358] ([Intel XE#2136])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][359] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][360] ([Intel XE#2136])
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-bmg: [SKIP][361] ([Intel XE#2724]) -> [SKIP][362] ([Intel XE#2136])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_cdclk@mode-transition.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_color@ctm-negative:
- shard-bmg: [SKIP][363] ([Intel XE#2423]) -> [SKIP][364] ([Intel XE#2325]) +2 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_chamelium_color@ctm-negative.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-5/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-bmg: [SKIP][365] ([Intel XE#2325]) -> [SKIP][366] ([Intel XE#2423]) +1 other test skip
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-5/igt@kms_chamelium_color@ctm-red-to-blue.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_chamelium_color@ctm-red-to-blue.html
- shard-dg2-set2: [SKIP][367] ([Intel XE#306]) -> [SKIP][368] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-463/igt@kms_chamelium_color@ctm-red-to-blue.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][369] ([Intel XE#2423] / [i915#2575]) -> [SKIP][370] ([Intel XE#306]) +2 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_chamelium_color@gamma.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-dg2-set2: [SKIP][371] ([Intel XE#2423] / [i915#2575]) -> [SKIP][372] ([Intel XE#373]) +9 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_chamelium_edid@hdmi-mode-timings.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: [SKIP][373] ([Intel XE#2252]) -> [SKIP][374] ([Intel XE#2423]) +8 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: [SKIP][375] ([Intel XE#373]) -> [SKIP][376] ([Intel XE#2423] / [i915#2575]) +15 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-bmg: [SKIP][377] ([Intel XE#2423]) -> [SKIP][378] ([Intel XE#2252]) +8 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@atomic:
- shard-bmg: [SKIP][379] ([Intel XE#2423]) -> [FAIL][380] ([Intel XE#1178]) +1 other test fail
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_content_protection@atomic.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [SKIP][381] ([Intel XE#2423] / [i915#2575]) -> [FAIL][382] ([Intel XE#1178])
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_content_protection@atomic-dpms.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][383] ([Intel XE#307]) -> [SKIP][384] ([Intel XE#2423] / [i915#2575])
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: [SKIP][385] ([Intel XE#2390]) -> [SKIP][386] ([Intel XE#2423])
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_content_protection@dp-mst-lic-type-1.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: [SKIP][387] ([Intel XE#2423]) -> [SKIP][388] ([Intel XE#2390])
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_content_protection@dp-mst-type-0.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][389] ([Intel XE#1178]) -> [SKIP][390] ([Intel XE#2423])
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-7/igt@kms_content_protection@legacy.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-bmg: [SKIP][391] ([Intel XE#2423]) -> [SKIP][392] ([Intel XE#2341]) +1 other test skip
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_content_protection@mei-interface.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-4/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-bmg: [SKIP][393] ([Intel XE#2341]) -> [SKIP][394] ([Intel XE#2423])
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-2/igt@kms_content_protection@type1.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: [SKIP][395] ([Intel XE#2423]) -> [SKIP][396] ([Intel XE#2320]) +7 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-256x85.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: [SKIP][397] ([Intel XE#2320]) -> [SKIP][398] ([Intel XE#2423]) +4 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-dg2-set2: [SKIP][399] ([Intel XE#2423] / [i915#2575]) -> [SKIP][400] ([Intel XE#455]) +2 other tests skip
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-32x32.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2-set2: [SKIP][401] ([Intel XE#308]) -> [SKIP][402] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-bmg: [SKIP][403] ([Intel XE#2423]) -> [SKIP][404] ([Intel XE#2321])
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: [SKIP][405] ([Intel XE#2423] / [i915#2575]) -> [SKIP][406] ([Intel XE#308])
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-512x170.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: [SKIP][407] ([Intel XE#2321]) -> [SKIP][408] ([Intel XE#2423]) +2 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_edge_walk@128x128-top-edge:
- shard-dg2-set2: [SKIP][409] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][410] ([Intel XE#1033])
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_cursor_edge_walk@128x128-top-edge.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_cursor_edge_walk@128x128-top-edge.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][411] ([Intel XE#323]) -> [SKIP][412] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-bmg: [SKIP][413] ([Intel XE#2286]) -> [SKIP][414] ([Intel XE#2423]) +1 other test skip
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: [SKIP][415] ([Intel XE#2423]) -> [SKIP][416] ([Intel XE#2286])
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [SKIP][417] ([Intel XE#2136]) -> [SKIP][418] ([Intel XE#3070])
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: [SKIP][419] ([Intel XE#455]) -> [SKIP][420] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-466/igt@kms_dsc@dsc-with-bpc-formats.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-bmg: [SKIP][421] ([Intel XE#2244]) -> [SKIP][422] ([Intel XE#2136]) +1 other test skip
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-2/igt@kms_dsc@dsc-with-bpc-formats.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: [SKIP][423] ([Intel XE#2136]) -> [SKIP][424] ([Intel XE#455])
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-bmg: [SKIP][425] ([Intel XE#2136]) -> [SKIP][426] ([Intel XE#2244])
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: [SKIP][427] ([Intel XE#2136]) -> [SKIP][428] ([Intel XE#776]) +1 other test skip
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_fbcon_fbt@psr-suspend.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-4/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2-set2: [SKIP][429] ([Intel XE#2136]) -> [SKIP][430] ([Intel XE#776]) +1 other test skip
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][431] ([Intel XE#2423] / [i915#2575]) -> [SKIP][432] ([Intel XE#1138])
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_feature_discovery@display-4x.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: [SKIP][433] ([Intel XE#2423]) -> [SKIP][434] ([Intel XE#2374])
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_feature_discovery@psr2.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-8/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-bmg: [SKIP][435] ([Intel XE#2423]) -> [SKIP][436] ([Intel XE#2316])
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_flip@2x-absolute-wf_vblank.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-bmg: [SKIP][437] ([Intel XE#2316]) -> [SKIP][438] ([Intel XE#2423])
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_flip@2x-dpms-vs-vblank-race.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-bmg: [FAIL][439] ([Intel XE#3321]) -> [SKIP][440] ([Intel XE#2423]) +2 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank.html
- shard-dg2-set2: [SKIP][441] ([Intel XE#2423] / [i915#2575]) -> [FAIL][442] ([Intel XE#301])
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [SKIP][443] ([Intel XE#2423]) -> [FAIL][444] ([Intel XE#3321])
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-panning:
- shard-dg2-set2: [INCOMPLETE][445] ([Intel XE#2049]) -> [DMESG-WARN][446] ([Intel XE#1033])
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@kms_flip@flip-vs-panning.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_flip@flip-vs-panning.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: [SKIP][447] ([Intel XE#2136]) -> [SKIP][448] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-dg2-set2: [SKIP][449] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][450] ([Intel XE#455]) +1 other test skip
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: [SKIP][451] ([Intel XE#2380]) -> [SKIP][452] ([Intel XE#2136])
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-bmg: [SKIP][453] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][454] ([Intel XE#2136]) +5 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][455] ([Intel XE#455]) -> [SKIP][456] ([Intel XE#2136]) +3 other tests skip
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][457] ([Intel XE#2311]) -> [SKIP][458] ([Intel XE#2312]) +6 other tests skip
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][459] ([Intel XE#2312]) -> [SKIP][460] ([Intel XE#2136]) +7 other tests skip
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][461] ([Intel XE#2312]) -> [SKIP][462] ([Intel XE#2311]) +4 other tests skip
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][463] ([Intel XE#2136]) -> [SKIP][464] ([Intel XE#2311]) +29 other tests skip
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
- shard-dg2-set2: [SKIP][465] ([Intel XE#2136]) -> [SKIP][466] ([Intel XE#651]) +15 other tests skip
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
- shard-bmg: [SKIP][467] ([Intel XE#2311]) -> [SKIP][468] ([Intel XE#2136]) +25 other tests skip
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: [SKIP][469] ([Intel XE#651]) -> [SKIP][470] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][471] ([Intel XE#4141]) -> [SKIP][472] ([Intel XE#2136]) +10 other tests skip
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][473] ([Intel XE#2312]) -> [SKIP][474] ([Intel XE#4141]) +3 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][475] ([Intel XE#4141]) -> [SKIP][476] ([Intel XE#2312]) +3 other tests skip
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][477] ([Intel XE#2136]) -> [SKIP][478] ([Intel XE#4141]) +11 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: [SKIP][479] ([Intel XE#2352]) -> [SKIP][480] ([Intel XE#2136])
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][481] ([Intel XE#651]) -> [SKIP][482] ([Intel XE#2136]) +21 other tests skip
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2-set2: [SKIP][483] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][484] ([Intel XE#651]) +10 other tests skip
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt:
- shard-dg2-set2: [SKIP][485] ([Intel XE#2136]) -> [SKIP][486] ([Intel XE#653]) +15 other tests skip
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][487] ([Intel XE#2136]) -> [SKIP][488] ([Intel XE#2312]) +6 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][489] ([Intel XE#2136]) -> [SKIP][490] ([Intel XE#2313]) +31 other tests skip
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][491] ([Intel XE#2312]) -> [SKIP][492] ([Intel XE#2313]) +6 other tests skip
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][493] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][494] ([Intel XE#653]) +6 other tests skip
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
- shard-dg2-set2: [SKIP][495] ([Intel XE#653]) -> [SKIP][496] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][497] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][498] ([Intel XE#658])
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: [SKIP][499] ([Intel XE#2136]) -> [SKIP][500] ([Intel XE#2350])
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][501] ([Intel XE#653]) -> [SKIP][502] ([Intel XE#2136]) +24 other tests skip
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][503] ([Intel XE#2313]) -> [SKIP][504] ([Intel XE#2136]) +30 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][505] ([Intel XE#2313]) -> [SKIP][506] ([Intel XE#2312]) +9 other tests skip
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: [SKIP][507] ([Intel XE#2423] / [i915#2575]) -> [SKIP][508] ([Intel XE#605])
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_getfb@getfb-reject-ccs.html
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-bmg: [SKIP][509] ([Intel XE#2340]) -> [SKIP][510] ([Intel XE#2423])
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-2/igt@kms_getfb@getfb2-accept-ccs.html
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2-set2: [SKIP][511] ([Intel XE#2423] / [i915#2575]) -> [ABORT][512] ([Intel XE#2625])
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_hdr@bpc-switch-suspend.html
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][513] ([Intel XE#3544]) -> [SKIP][514] ([Intel XE#3374] / [Intel XE#3544])
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][515] ([Intel XE#1503]) -> [SKIP][516] ([Intel XE#2423])
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: [SKIP][517] ([Intel XE#2136]) -> [SKIP][518] ([Intel XE#346])
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_joiner@invalid-modeset-big-joiner.html
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][519] ([Intel XE#2423] / [i915#2575]) -> [SKIP][520] ([Intel XE#356])
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2-set2: [SKIP][521] ([Intel XE#455]) -> [SKIP][522] ([Intel XE#2423] / [i915#2575]) +8 other tests skip
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@kms_panel_fitting@atomic-fastset.html
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- shard-bmg: [SKIP][523] ([Intel XE#2423]) -> [DMESG-WARN][524] ([Intel XE#4172]) +7 other tests dmesg-warn
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_pipe_crc_basic@nonblocking-crc.html
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@kms_pipe_crc_basic@nonblocking-crc.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: [SKIP][525] ([Intel XE#2493]) -> [SKIP][526] ([Intel XE#2423])
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-2/igt@kms_plane_multiple@tiling-y.html
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: [SKIP][527] ([Intel XE#2423]) -> [SKIP][528] ([Intel XE#2493])
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_plane_multiple@tiling-yf.html
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][529] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][530] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-bmg: [SKIP][531] ([Intel XE#2423]) -> [SKIP][532] ([Intel XE#2763]) +1 other test skip
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][533] ([Intel XE#2423] / [i915#2575]) -> [SKIP][534] ([Intel XE#2763] / [Intel XE#455])
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: [SKIP][535] ([Intel XE#2763]) -> [SKIP][536] ([Intel XE#2423]) +3 other tests skip
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: [SKIP][537] ([Intel XE#870]) -> [SKIP][538] ([Intel XE#2136])
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-466/igt@kms_pm_backlight@bad-brightness.html
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: [SKIP][539] ([Intel XE#2938]) -> [SKIP][540] ([Intel XE#2136])
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-463/igt@kms_pm_backlight@brightness-with-dpms.html
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: [SKIP][541] ([Intel XE#870]) -> [SKIP][542] ([Intel XE#2136])
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-8/igt@kms_pm_backlight@fade-with-dpms.html
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: [SKIP][543] ([Intel XE#2391]) -> [SKIP][544] ([Intel XE#2136])
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: [SKIP][545] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][546] ([Intel XE#908])
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_pm_dc@dc6-dpms.html
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][547] ([Intel XE#2136]) -> [SKIP][548] ([Intel XE#908])
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_pm_dc@deep-pkgc.html
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: [SKIP][549] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][550] ([Intel XE#2446])
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-5/igt@kms_pm_rpm@dpms-lpsp.html
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: [SKIP][551] ([Intel XE#2446]) -> [SKIP][552] ([Intel XE#1439] / [Intel XE#836])
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: [SKIP][553] ([Intel XE#2446]) -> [SKIP][554] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][555] ([Intel XE#2136]) -> [SKIP][556] ([Intel XE#1489]) +9 other tests skip
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][557] ([Intel XE#1489]) -> [SKIP][558] ([Intel XE#2136]) +10 other tests skip
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: [SKIP][559] ([Intel XE#2136]) -> [SKIP][560] ([Intel XE#1489]) +7 other tests skip
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: [SKIP][561] ([Intel XE#1489]) -> [SKIP][562] ([Intel XE#2136]) +8 other tests skip
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-bmg: [SKIP][563] ([Intel XE#2387]) -> [SKIP][564] ([Intel XE#2136])
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][565] ([Intel XE#2136]) -> [SKIP][566] ([Intel XE#1122])
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_psr2_su@page_flip-nv12.html
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: [SKIP][567] ([Intel XE#2136]) -> [SKIP][568] ([Intel XE#2387])
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_psr2_su@page_flip-p010.html
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-dg2-set2: [SKIP][569] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][570] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_psr@fbc-psr-no-drrs.html
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-434/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][571] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][572] ([Intel XE#2136]) +14 other tests skip
[571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-463/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-dpms:
- shard-dg2-set2: [SKIP][573] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][574] ([Intel XE#2136] / [Intel XE#2351])
[573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-466/igt@kms_psr@pr-dpms.html
[574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_psr@pr-dpms.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: [SKIP][575] ([Intel XE#2136]) -> [SKIP][576] ([Intel XE#2850] / [Intel XE#929]) +7 other tests skip
[575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_psr@pr-sprite-blt.html
[576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr-cursor-render:
- shard-bmg: [SKIP][577] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][578] ([Intel XE#2136]) +14 other tests skip
[577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_psr@psr-cursor-render.html
[578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: [SKIP][579] ([Intel XE#2136]) -> [SKIP][580] ([Intel XE#2234] / [Intel XE#2850]) +16 other tests skip
[579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_psr@psr-primary-page-flip.html
[580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: [SKIP][581] ([Intel XE#2423]) -> [SKIP][582] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip
[581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_rotation_crc@bad-pixel-format.html
[582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-8/igt@kms_rotation_crc@bad-pixel-format.html
- shard-dg2-set2: [SKIP][583] ([Intel XE#2423] / [i915#2575]) -> [SKIP][584] ([Intel XE#3414]) +1 other test skip
[583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_rotation_crc@bad-pixel-format.html
[584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][585] ([Intel XE#2423] / [i915#2575]) -> [SKIP][586] ([Intel XE#1127])
[585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: [SKIP][587] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][588] ([Intel XE#2423]) +1 other test skip
[587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-bmg: [SKIP][589] ([Intel XE#2413]) -> [SKIP][590] ([Intel XE#2423])
[589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-full.html
[590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: [SKIP][591] ([Intel XE#1435]) -> [SKIP][592] ([Intel XE#2423]) +1 other test skip
[591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-5/igt@kms_setmode@basic-clone-single-crtc.html
[592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][593] ([Intel XE#1729]) -> [SKIP][594] ([Intel XE#2426])
[593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][595] ([Intel XE#2426]) -> [SKIP][596] ([Intel XE#2509])
[595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2-set2: [SKIP][597] ([Intel XE#2423] / [i915#2575]) -> [SKIP][598] ([Intel XE#1500])
[597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@query-busy:
- shard-bmg: [DMESG-WARN][599] ([Intel XE#4172]) -> [SKIP][600] ([Intel XE#2423])
[599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-5/igt@kms_vblank@query-busy.html
[600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_vblank@query-busy.html
- shard-dg2-set2: [DMESG-WARN][601] ([Intel XE#1033]) -> [SKIP][602] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-463/igt@kms_vblank@query-busy.html
[602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_vblank@query-busy.html
* igt@kms_vrr@lobf:
- shard-bmg: [SKIP][603] ([Intel XE#2423]) -> [SKIP][604] ([Intel XE#2168]) +1 other test skip
[603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_vrr@lobf.html
[604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: [SKIP][605] ([Intel XE#1499]) -> [SKIP][606] ([Intel XE#2423]) +1 other test skip
[605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@kms_vrr@seamless-rr-switch-virtual.html
[606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output:
- shard-bmg: [SKIP][607] ([Intel XE#2423]) -> [SKIP][608] ([Intel XE#756]) +1 other test skip
[607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@kms_writeback@writeback-check-output.html
[608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-1/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: [SKIP][609] ([Intel XE#2423] / [i915#2575]) -> [SKIP][610] ([Intel XE#756]) +1 other test skip
[609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
[610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2-set2: [SKIP][611] ([Intel XE#756]) -> [SKIP][612] ([Intel XE#2423] / [i915#2575])
[611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@kms_writeback@writeback-invalid-parameters.html
[612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@kms_writeback@writeback-invalid-parameters.html
* igt@xe_copy_basic@mem-copy-linear-0xfd:
- shard-dg2-set2: [SKIP][613] ([Intel XE#1123]) -> [SKIP][614] ([Intel XE#1130])
[613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfd.html
[614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0xfd.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: [SKIP][615] ([Intel XE#1130]) -> [SKIP][616] ([Intel XE#1126]) +1 other test skip
[615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfd.html
[616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: [SKIP][617] ([Intel XE#1130]) -> [SKIP][618] ([Intel XE#2905]) +10 other tests skip
[617]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@xe_eudebug@basic-close.html
[618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@basic-vm-access-parameters-userptr:
- shard-bmg: [SKIP][619] ([Intel XE#3889]) -> [SKIP][620] ([Intel XE#1130]) +1 other test skip
[619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-8/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
[620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: [SKIP][621] ([Intel XE#1130]) -> [SKIP][622] ([Intel XE#2905]) +12 other tests skip
[621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
[622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
- shard-dg2-set2: [SKIP][623] ([Intel XE#3889]) -> [SKIP][624] ([Intel XE#1130]) +1 other test skip
[623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
[624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
* igt@xe_eudebug@basic-vm-bind-ufence-sigint-client:
- shard-dg2-set2: [SKIP][625] ([Intel XE#1130]) -> [SKIP][626] ([Intel XE#3889])
[625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html
[626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html
* igt@xe_eudebug_online@resume-dss:
- shard-dg2-set2: [SKIP][627] ([Intel XE#2905]) -> [SKIP][628] ([Intel XE#1130]) +12 other tests skip
[627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-463/igt@xe_eudebug_online@resume-dss.html
[628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_eudebug_online@resume-dss.html
* igt@xe_eudebug_online@set-breakpoint:
- shard-bmg: [SKIP][629] ([Intel XE#2905]) -> [SKIP][630] ([Intel XE#1130]) +8 other tests skip
[629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-1/igt@xe_eudebug_online@set-breakpoint.html
[630]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@xe_eudebug_online@set-breakpoint.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: [SKIP][631] ([Intel XE#1130]) -> [SKIP][632] ([Intel XE#2322]) +8 other tests skip
[631]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
[632]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: [SKIP][633] ([Intel XE#2322]) -> [SKIP][634] ([Intel XE#1130]) +8 other tests skip
[633]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
[634]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-once-basic:
- shard-dg2-set2: [SKIP][635] ([Intel XE#1392]) -> [SKIP][636] ([Intel XE#1130]) +1 other test skip
[635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic.html
[636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_exec_basic@multigpu-once-basic.html
* igt@xe_exec_basic@multigpu-once-basic-defer-bind:
- shard-dg2-set2: [SKIP][637] ([Intel XE#1130]) -> [SKIP][638] ([Intel XE#1392]) +1 other test skip
[637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
[638]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
* igt@xe_exec_fault_mode@many-bindexecqueue-rebind-prefetch:
- shard-bmg: [SKIP][639] ([Intel XE#1130]) -> [DMESG-WARN][640] ([Intel XE#4172])
[639]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@xe_exec_fault_mode@many-bindexecqueue-rebind-prefetch.html
[640]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-2/igt@xe_exec_fault_mode@many-bindexecqueue-rebind-prefetch.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-prefetch:
- shard-bmg: [DMESG-WARN][641] ([Intel XE#4172]) -> [SKIP][642] ([Intel XE#1130])
[641]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-prefetch.html
[642]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-prefetch.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: [SKIP][643] ([Intel XE#288]) -> [SKIP][644] ([Intel XE#1130]) +15 other tests skip
[643]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
[644]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: [SKIP][645] ([Intel XE#1130]) -> [SKIP][646] ([Intel XE#288]) +19 other tests skip
[645]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
[646]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_threads@threads-bal-userptr-invalidate:
- shard-dg2-set2: [DMESG-WARN][647] ([Intel XE#1033]) -> [SKIP][648] ([Intel XE#1130]) +1 other test skip
[647]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@xe_exec_threads@threads-bal-userptr-invalidate.html
[648]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_exec_threads@threads-bal-userptr-invalidate.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: [SKIP][649] ([Intel XE#255]) -> [SKIP][650] ([Intel XE#1130])
[649]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@xe_huc_copy@huc_copy.html
[650]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_huc_copy@huc_copy.html
* igt@xe_media_fill@media-fill:
- shard-bmg: [SKIP][651] ([Intel XE#2459] / [Intel XE#2596]) -> [SKIP][652] ([Intel XE#1130])
[651]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-7/igt@xe_media_fill@media-fill.html
[652]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-bmg: [SKIP][653] ([Intel XE#1130]) -> [SKIP][654] ([Intel XE#586])
[653]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@xe_mmap@small-bar.html
[654]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@xe_mmap@small-bar.html
* igt@xe_oa@non-privileged-access-vaddr:
- shard-dg2-set2: [SKIP][655] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][656] ([Intel XE#1130]) +6 other tests skip
[655]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-463/igt@xe_oa@non-privileged-access-vaddr.html
[656]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_oa@non-privileged-access-vaddr.html
* igt@xe_oa@non-zero-reason:
- shard-dg2-set2: [SKIP][657] ([Intel XE#1130]) -> [SKIP][658] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip
[657]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@xe_oa@non-zero-reason.html
[658]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@xe_oa@non-zero-reason.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: [SKIP][659] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][660] ([Intel XE#1130])
[659]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-463/igt@xe_pat@pat-index-xehpc.html
[660]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: [SKIP][661] ([Intel XE#1130]) -> [SKIP][662] ([Intel XE#2245])
[661]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@xe_pat@pat-index-xelp.html
[662]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-5/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][663] ([Intel XE#1130]) -> [SKIP][664] ([Intel XE#979])
[663]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@xe_pat@pat-index-xelpg.html
[664]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-basic:
- shard-dg2-set2: [SKIP][665] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][666] ([Intel XE#1130])
[665]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-466/igt@xe_pm@d3cold-basic.html
[666]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: [SKIP][667] ([Intel XE#1130]) -> [SKIP][668] ([Intel XE#2284] / [Intel XE#366])
[667]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@xe_pm@d3cold-basic-exec.html
[668]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: [SKIP][669] ([Intel XE#2284]) -> [SKIP][670] ([Intel XE#1130]) +2 other tests skip
[669]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-6/igt@xe_pm@d3cold-mmap-system.html
[670]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: [SKIP][671] ([Intel XE#1130]) -> [SKIP][672] ([Intel XE#2284]) +2 other tests skip
[671]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@xe_pm@s2idle-d3cold-basic-exec.html
[672]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-2/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-basic-exec:
- shard-bmg: [SKIP][673] ([Intel XE#1130]) -> [DMESG-WARN][674] ([Intel XE#4172] / [Intel XE#569])
[673]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@xe_pm@s3-basic-exec.html
[674]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-exec-after:
- shard-dg2-set2: [SKIP][675] ([Intel XE#1130]) -> [DMESG-WARN][676] ([Intel XE#1033] / [Intel XE#569])
[675]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@xe_pm@s3-exec-after.html
[676]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-466/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: [DMESG-WARN][677] ([Intel XE#1033] / [Intel XE#569]) -> [SKIP][678] ([Intel XE#1130]) +1 other test skip
[677]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-466/igt@xe_pm@s3-vm-bind-userptr.html
[678]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: [SKIP][679] ([Intel XE#579]) -> [SKIP][680] ([Intel XE#1130])
[679]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-436/igt@xe_pm@vram-d3cold-threshold.html
[680]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_pm@vram-d3cold-threshold.html
- shard-bmg: [SKIP][681] ([Intel XE#579]) -> [SKIP][682] ([Intel XE#1130])
[681]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-8/igt@xe_pm@vram-d3cold-threshold.html
[682]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pm_residency@cpg-basic:
- shard-dg2-set2: [SKIP][683] ([Intel XE#1130]) -> [DMESG-WARN][684] ([Intel XE#1033])
[683]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@xe_pm_residency@cpg-basic.html
[684]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@xe_pm_residency@cpg-basic.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: [SKIP][685] ([Intel XE#944]) -> [SKIP][686] ([Intel XE#1130]) +2 other tests skip
[685]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-2/igt@xe_query@multigpu-query-cs-cycles.html
[686]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: [SKIP][687] ([Intel XE#944]) -> [SKIP][688] ([Intel XE#1130]) +1 other test skip
[687]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-432/igt@xe_query@multigpu-query-engines.html
[688]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-gt-list:
- shard-dg2-set2: [SKIP][689] ([Intel XE#1130]) -> [SKIP][690] ([Intel XE#944])
[689]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@xe_query@multigpu-query-gt-list.html
[690]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: [SKIP][691] ([Intel XE#1130]) -> [SKIP][692] ([Intel XE#944]) +2 other tests skip
[691]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@xe_query@multigpu-query-invalid-extension.html
[692]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-6/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-dg2-set2: [SKIP][693] ([Intel XE#1130]) -> [SKIP][694] ([Intel XE#4130])
[693]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
[694]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-436/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-bmg: [SKIP][695] ([Intel XE#1130]) -> [SKIP][696] ([Intel XE#4130])
[695]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@xe_sriov_auto_provisioning@fair-allocation.html
[696]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-7/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-bmg: [SKIP][697] ([Intel XE#4130]) -> [SKIP][698] ([Intel XE#1130])
[697]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-8/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
[698]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-3/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
- shard-dg2-set2: [SKIP][699] ([Intel XE#4130]) -> [SKIP][700] ([Intel XE#1130])
[699]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-436/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
[700]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: [SKIP][701] ([Intel XE#1130]) -> [SKIP][702] ([Intel XE#3342])
[701]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-433/igt@xe_sriov_flr@flr-each-isolation.html
[702]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-463/igt@xe_sriov_flr@flr-each-isolation.html
- shard-bmg: [SKIP][703] ([Intel XE#1130]) -> [SKIP][704] ([Intel XE#3342])
[703]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html
[704]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-bmg-4/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-dg2-set2: [ABORT][705] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][706] ([Intel XE#1130])
[705]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8214/shard-dg2-434/igt@xe_wedged@wedged-mode-toggle.html
[706]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/shard-dg2-433/igt@xe_wedged@wedged-mode-toggle.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070
[Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#3914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3914
[Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010
[Intel XE#4048]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4048
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8214 -> IGTPW_12513
* Linux: xe-2568-486bb0f2805b5fcc43e7cc609b9dd59ef1ffcd79 -> xe-2570-bdfc862a5c719d934efbdedb050ef891b9feef15
IGTPW_12513: 12513
IGT_8214: 7a8a3744466fbb89127201077f030033c72df948 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2568-486bb0f2805b5fcc43e7cc609b9dd59ef1ffcd79: 486bb0f2805b5fcc43e7cc609b9dd59ef1ffcd79
xe-2570-bdfc862a5c719d934efbdedb050ef891b9feef15: bdfc862a5c719d934efbdedb050ef891b9feef15
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12513/index.html
[-- Attachment #2: Type: text/html, Size: 206218 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-01-30 1:14 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-29 17:17 [PATCH i-g-t] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
2025-01-29 19:12 ` ✓ Xe.CI.BAT: success for tests/intel/kms_joiner: Add a new test to validate non-joiner mode (rev2) Patchwork
2025-01-29 19:25 ` ✓ i915.CI.BAT: " Patchwork
2025-01-29 21:07 ` ✗ i915.CI.Full: failure " Patchwork
2025-01-30 1:14 ` ✗ Xe.CI.Full: " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2025-01-26 18:19 [PATCH i-g-t] tests/intel/kms_joiner: Add a new test to validate non-joiner mode Jeevan B
2025-01-27 5:50 ` B, Jeevan
2025-01-27 8:56 ` Karthik B S
2025-01-28 6:30 ` Sharma, Swati2
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox