* [PATCH i-g-t 0/3] GPGPU fill improvements
@ 2024-11-14 12:06 Zbigniew Kempczyński
2024-11-14 12:06 ` [PATCH i-g-t 1/3] tests/xe_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
` (12 more replies)
0 siblings, 13 replies; 18+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-14 12:06 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Dominik Grzegorzek
Series adds some improvements helpful for adding implementation for
new platforms.
Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Zbigniew Kempczyński (3):
tests/xe_gpgpu_fill: Add command line switch to dump the surface
tests/xe_gpgpu_fill: Add width/height/x/y command line args
tests/xe_gpgpu_fill: Add offset-16x16 subtest
tests/intel/xe_gpgpu_fill.c | 107 ++++++++++++++++++++++++++++++------
1 file changed, 91 insertions(+), 16 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH i-g-t 1/3] tests/xe_gpgpu_fill: Add command line switch to dump the surface
2024-11-14 12:06 [PATCH i-g-t 0/3] GPGPU fill improvements Zbigniew Kempczyński
@ 2024-11-14 12:06 ` Zbigniew Kempczyński
2024-11-14 13:33 ` Grzegorzek, Dominik
2024-11-14 12:06 ` [PATCH i-g-t 2/3] tests/xe_gpgpu_fill: Add width/height/x/y command line args Zbigniew Kempczyński
` (11 subsequent siblings)
12 siblings, 1 reply; 18+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-14 12:06 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Dominik Grzegorzek
When implementation for new platform is added and shader + pipeline
needs to be adopted there's useful to dump the surface data.
0xC4 pattern makes distinction from 0x4C written by the shader very
hard so change it to 0x88 makes dump more clear.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
tests/intel/xe_gpgpu_fill.c | 43 ++++++++++++++++++++++++++++++++-----
1 file changed, 38 insertions(+), 5 deletions(-)
diff --git a/tests/intel/xe_gpgpu_fill.c b/tests/intel/xe_gpgpu_fill.c
index 24fab519cc..4e1785432b 100644
--- a/tests/intel/xe_gpgpu_fill.c
+++ b/tests/intel/xe_gpgpu_fill.c
@@ -36,9 +36,11 @@
#define HEIGHT 64
#define STRIDE (WIDTH)
#define SIZE (HEIGHT*STRIDE)
-#define COLOR_C4 0xc4
+#define COLOR_88 0x88
#define COLOR_4C 0x4c
+static bool dump_surface;
+
typedef struct {
int drm_fd;
uint32_t devid;
@@ -89,26 +91,57 @@ static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
uint8_t *ptr;
int i, j;
- buf = create_buf(data, WIDTH, HEIGHT, COLOR_C4, region);
+ buf = create_buf(data, WIDTH, HEIGHT, COLOR_88, region);
ptr = xe_bo_map(data->drm_fd, buf->handle, buf->surface[0].size);
for (i = 0; i < WIDTH; i++)
for (j = 0; j < HEIGHT; j++)
- buf_check(ptr, i, j, COLOR_C4);
+ buf_check(ptr, i, j, COLOR_88);
fill(data->drm_fd, buf, 0, 0, WIDTH / 2, HEIGHT / 2, COLOR_4C);
+ if (dump_surface) {
+ for (j = 0; j < HEIGHT; j++) {
+ igt_info("[%04x] ", j);
+ for (i = 0; i < WIDTH; i++) {
+ igt_info("%02x", ptr[j * HEIGHT + i]);
+ if (i % 4 == 3)
+ igt_info(" ");
+ }
+ igt_info("\n");
+ }
+ }
+
for (i = 0; i < WIDTH; i++)
for (j = 0; j < HEIGHT; j++)
if (i < WIDTH / 2 && j < HEIGHT / 2)
buf_check(ptr, i, j, COLOR_4C);
else
- buf_check(ptr, i, j, COLOR_C4);
+ buf_check(ptr, i, j, COLOR_88);
munmap(ptr, buf->surface[0].size);
}
-igt_main
+static int opt_handler(int opt, int opt_index, void *data)
+{
+ switch (opt) {
+ case 'd':
+ dump_surface = true;
+ break;
+ default:
+ return IGT_OPT_HANDLER_ERROR;
+ }
+
+ return IGT_OPT_HANDLER_SUCCESS;
+}
+
+
+const char *help_str =
+ " -d\tDump surface\n"
+ ;
+
+
+igt_main_args("d", NULL, help_str, opt_handler, NULL)
{
data_t data = {0, };
igt_fillfunc_t fill_fn = NULL;
--
2.34.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH i-g-t 2/3] tests/xe_gpgpu_fill: Add width/height/x/y command line args
2024-11-14 12:06 [PATCH i-g-t 0/3] GPGPU fill improvements Zbigniew Kempczyński
2024-11-14 12:06 ` [PATCH i-g-t 1/3] tests/xe_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
@ 2024-11-14 12:06 ` Zbigniew Kempczyński
2024-11-14 13:36 ` Grzegorzek, Dominik
2024-11-14 12:06 ` [PATCH i-g-t 3/3] tests/xe_gpgpu_fill: Add offset-16x16 subtest Zbigniew Kempczyński
` (10 subsequent siblings)
12 siblings, 1 reply; 18+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-14 12:06 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Dominik Grzegorzek
I've noticed shaders/pipelines have limitation to work on 16B
boundaries (due to SIMD16). So to play with different surface sizes
and offsets add W/H/X/Y switches.
There's no problem at all not all sizes/offsets are supported as we
would like to have, we use gpgpu fill to verify compute workload so
if we won't notice gpu hang that's fine.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
tests/intel/xe_gpgpu_fill.c | 66 +++++++++++++++++++++++++++----------
1 file changed, 48 insertions(+), 18 deletions(-)
diff --git a/tests/intel/xe_gpgpu_fill.c b/tests/intel/xe_gpgpu_fill.c
index 4e1785432b..82625bb7c0 100644
--- a/tests/intel/xe_gpgpu_fill.c
+++ b/tests/intel/xe_gpgpu_fill.c
@@ -40,6 +40,10 @@
#define COLOR_4C 0x4c
static bool dump_surface;
+static uint32_t surfwidth = WIDTH;
+static uint32_t surfheight = HEIGHT;
+static uint32_t start_x;
+static uint32_t start_y;
typedef struct {
int drm_fd;
@@ -70,11 +74,11 @@ create_buf(data_t *data, int width, int height, uint8_t color, uint64_t region)
return buf;
}
-static void buf_check(uint8_t *ptr, int x, int y, uint8_t color)
+static void buf_check(uint8_t *ptr, int width, int x, int y, uint8_t color)
{
uint8_t val;
- val = ptr[y * WIDTH + x];
+ val = ptr[y * width + x];
igt_assert_f(val == color,
"Expected 0x%02x, found 0x%02x at (%d,%d)\n",
color, val, x, y);
@@ -85,26 +89,29 @@ static void buf_check(uint8_t *ptr, int x, int y, uint8_t color)
* Description: run gpgpu fill
*/
-static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
+static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region,
+ uint32_t surf_width, uint32_t surf_height,
+ uint32_t x, uint32_t y,
+ uint32_t width, uint32_t height)
{
struct intel_buf *buf;
uint8_t *ptr;
int i, j;
- buf = create_buf(data, WIDTH, HEIGHT, COLOR_88, region);
+ buf = create_buf(data, surf_width, surf_height, COLOR_88, region);
ptr = xe_bo_map(data->drm_fd, buf->handle, buf->surface[0].size);
- for (i = 0; i < WIDTH; i++)
- for (j = 0; j < HEIGHT; j++)
- buf_check(ptr, i, j, COLOR_88);
+ for (i = 0; i < surf_width; i++)
+ for (j = 0; j < surf_height; j++)
+ buf_check(ptr, surf_width, i, j, COLOR_88);
- fill(data->drm_fd, buf, 0, 0, WIDTH / 2, HEIGHT / 2, COLOR_4C);
+ fill(data->drm_fd, buf, x, y, width, height, COLOR_4C);
if (dump_surface) {
- for (j = 0; j < HEIGHT; j++) {
+ for (j = 0; j < surf_height; j++) {
igt_info("[%04x] ", j);
- for (i = 0; i < WIDTH; i++) {
- igt_info("%02x", ptr[j * HEIGHT + i]);
+ for (i = 0; i < surf_width; i++) {
+ igt_info("%02x", ptr[j * surf_height + i]);
if (i % 4 == 3)
igt_info(" ");
}
@@ -112,12 +119,13 @@ static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
}
}
- for (i = 0; i < WIDTH; i++)
- for (j = 0; j < HEIGHT; j++)
- if (i < WIDTH / 2 && j < HEIGHT / 2)
- buf_check(ptr, i, j, COLOR_4C);
+ for (i = 0; i < surf_width; i++)
+ for (j = 0; j < surf_height; j++)
+ if (i >= x && i < width + x &&
+ j >= y && j < height + y)
+ buf_check(ptr, surf_width, i, j, COLOR_4C);
else
- buf_check(ptr, i, j, COLOR_88);
+ buf_check(ptr, surf_height, i, j, COLOR_88);
munmap(ptr, buf->surface[0].size);
}
@@ -128,6 +136,18 @@ static int opt_handler(int opt, int opt_index, void *data)
case 'd':
dump_surface = true;
break;
+ case 'W':
+ surfwidth = atoi(optarg);
+ break;
+ case 'H':
+ surfheight = atoi(optarg);
+ break;
+ case 'X':
+ start_x = atoi(optarg);
+ break;
+ case 'Y':
+ start_y = atoi(optarg);
+ break;
default:
return IGT_OPT_HANDLER_ERROR;
}
@@ -138,10 +158,14 @@ static int opt_handler(int opt, int opt_index, void *data)
const char *help_str =
" -d\tDump surface\n"
+ " -W\tWidth (default 64)\n"
+ " -H\tHeight (default 64)\n"
+ " -X\tX start (aligned to 4)\n"
+ " -Y\tY start (aligned to 1)\n"
;
-igt_main_args("d", NULL, help_str, opt_handler, NULL)
+igt_main_args("dW:H:X:Y:", NULL, help_str, opt_handler, NULL)
{
data_t data = {0, };
igt_fillfunc_t fill_fn = NULL;
@@ -153,10 +177,16 @@ igt_main_args("d", NULL, help_str, opt_handler, NULL)
fill_fn = igt_get_gpgpu_fillfunc(data.devid);
igt_require_f(fill_fn, "no gpgpu-fill function\n");
+
+ start_x = ALIGN(start_x, 4);
}
igt_subtest("basic") {
- gpgpu_fill(&data, fill_fn, 0);
+ gpgpu_fill(&data, fill_fn, 0,
+ surfwidth, surfheight,
+ start_x, start_y,
+ surfwidth / 2,
+ surfheight / 2);
}
igt_fixture {
--
2.34.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH i-g-t 3/3] tests/xe_gpgpu_fill: Add offset-16x16 subtest
2024-11-14 12:06 [PATCH i-g-t 0/3] GPGPU fill improvements Zbigniew Kempczyński
2024-11-14 12:06 ` [PATCH i-g-t 1/3] tests/xe_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
2024-11-14 12:06 ` [PATCH i-g-t 2/3] tests/xe_gpgpu_fill: Add width/height/x/y command line args Zbigniew Kempczyński
@ 2024-11-14 12:06 ` Zbigniew Kempczyński
2024-11-14 13:37 ` Grzegorzek, Dominik
2024-11-14 14:05 ` ✗ Fi.CI.BAT: failure for GPGPU fill improvements Patchwork
` (9 subsequent siblings)
12 siblings, 1 reply; 18+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-14 12:06 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Dominik Grzegorzek
Add subtest which verifies rectangle filled by pattern starts at
offset <x,y> == <16,16>.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
tests/intel/xe_gpgpu_fill.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/tests/intel/xe_gpgpu_fill.c b/tests/intel/xe_gpgpu_fill.c
index 82625bb7c0..e1ecff8233 100644
--- a/tests/intel/xe_gpgpu_fill.c
+++ b/tests/intel/xe_gpgpu_fill.c
@@ -87,6 +87,10 @@ static void buf_check(uint8_t *ptr, int width, int x, int y, uint8_t color)
/**
* SUBTEST: basic
* Description: run gpgpu fill
+ *
+ * SUBTEST: offset-16x16
+ * Description: run gpgpu fill with <x,y> start position == <16,16>
+ *
*/
static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region,
@@ -189,6 +193,14 @@ igt_main_args("dW:H:X:Y:", NULL, help_str, opt_handler, NULL)
surfheight / 2);
}
+ igt_subtest("offset-16x16") {
+ gpgpu_fill(&data, fill_fn, 0,
+ surfwidth, surfheight,
+ 16, 16,
+ surfwidth / 2,
+ surfheight / 2);
+ }
+
igt_fixture {
buf_ops_destroy(data.bops);
drm_close_driver(data.drm_fd);
--
2.34.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t 1/3] tests/xe_gpgpu_fill: Add command line switch to dump the surface
2024-11-14 12:06 ` [PATCH i-g-t 1/3] tests/xe_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
@ 2024-11-14 13:33 ` Grzegorzek, Dominik
0 siblings, 0 replies; 18+ messages in thread
From: Grzegorzek, Dominik @ 2024-11-14 13:33 UTC (permalink / raw)
To: Kempczynski, Zbigniew, igt-dev@lists.freedesktop.org
On Thu, 2024-11-14 at 13:06 +0100, Zbigniew Kempczyński wrote:
> When implementation for new platform is added and shader + pipeline
> needs to be adopted there's useful to dump the surface data.
>
> 0xC4 pattern makes distinction from 0x4C written by the shader very
> hard so change it to 0x88 makes dump more clear.
>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Might be indeed helpful:
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> ---
> tests/intel/xe_gpgpu_fill.c | 43 ++++++++++++++++++++++++++++++++-----
> 1 file changed, 38 insertions(+), 5 deletions(-)
>
> diff --git a/tests/intel/xe_gpgpu_fill.c b/tests/intel/xe_gpgpu_fill.c
> index 24fab519cc..4e1785432b 100644
> --- a/tests/intel/xe_gpgpu_fill.c
> +++ b/tests/intel/xe_gpgpu_fill.c
> @@ -36,9 +36,11 @@
> #define HEIGHT 64
> #define STRIDE (WIDTH)
> #define SIZE (HEIGHT*STRIDE)
> -#define COLOR_C4 0xc4
> +#define COLOR_88 0x88
> #define COLOR_4C 0x4c
>
> +static bool dump_surface;
> +
> typedef struct {
> int drm_fd;
> uint32_t devid;
> @@ -89,26 +91,57 @@ static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
> uint8_t *ptr;
> int i, j;
>
> - buf = create_buf(data, WIDTH, HEIGHT, COLOR_C4, region);
> + buf = create_buf(data, WIDTH, HEIGHT, COLOR_88, region);
> ptr = xe_bo_map(data->drm_fd, buf->handle, buf->surface[0].size);
>
> for (i = 0; i < WIDTH; i++)
> helfor (j = 0; j < HEIGHT; j++)
> - buf_check(ptr, i, j, COLOR_C4);
> + buf_check(ptr, i, j, COLOR_88);
>
> fill(data->drm_fd, buf, 0, 0, WIDTH / 2, HEIGHT / 2, COLOR_4C);
>
> + if (dump_surface) {
> + for (j = 0; j < HEIGHT; j++) {
> + igt_info("[%04x] ", j);
> + for (i = 0; i < WIDTH; i++) {
> + igt_info("%02x", ptr[j * HEIGHT + i]);
> + if (i % 4 == 3)
> + igt_info(" ");
> + }
> + igt_info("\n");
> + }
> + }
> +
> for (i = 0; i < WIDTH; i++)
> for (j = 0; j < HEIGHT; j++)
> if (i < WIDTH / 2 && j < HEIGHT / 2)
> buf_check(ptr, i, j, COLOR_4C);
> else
> - buf_check(ptr, i, j, COLOR_C4);
> + buf_check(ptr, i, j, COLOR_88);
>
> munmap(ptr, buf->surface[0].size);
> }
>
> -igt_main
> +static int opt_handler(int opt, int opt_index, void *data)
> +{
> + switch (opt) {
> + case 'd':
> + dump_surface = true;
> + break;
> + default:
> + return IGT_OPT_HANDLER_ERROR;
> + }
> +
> + return IGT_OPT_HANDLER_SUCCESS;
> +}
> +
> +
> +const char *help_str =
> + " -d\tDump surface\n"
> + ;
> +
> +
> +igt_main_args("d", NULL, help_str, opt_handler, NULL)
> {
> data_t data = {0, };
> igt_fillfunc_t fill_fn = NULL;
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t 2/3] tests/xe_gpgpu_fill: Add width/height/x/y command line args
2024-11-14 12:06 ` [PATCH i-g-t 2/3] tests/xe_gpgpu_fill: Add width/height/x/y command line args Zbigniew Kempczyński
@ 2024-11-14 13:36 ` Grzegorzek, Dominik
0 siblings, 0 replies; 18+ messages in thread
From: Grzegorzek, Dominik @ 2024-11-14 13:36 UTC (permalink / raw)
To: Kempczynski, Zbigniew, igt-dev@lists.freedesktop.org
On Thu, 2024-11-14 at 13:06 +0100, Zbigniew Kempczyński wrote:
> I've noticed shaders/pipelines have limitation to work on 16B
> boundaries (due to SIMD16). So to play with different surface sizes
> and offsets add W/H/X/Y switches.
>
> There's no problem at all not all sizes/offsets are supported as we
> would like to have, we use gpgpu fill to verify compute workload so
> if we won't notice gpu hang that's fine.
>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Again it might be useful for testing any future gpgpu_fill implementations.
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> ---
> tests/intel/xe_gpgpu_fill.c | 66 +++++++++++++++++++++++++++----------
> 1 file changed, 48 insertions(+), 18 deletions(-)
>
> diff --git a/tests/intel/xe_gpgpu_fill.c b/tests/intel/xe_gpgpu_fill.c
> index 4e1785432b..82625bb7c0 100644
> --- a/tests/intel/xe_gpgpu_fill.c
> +++ b/tests/intel/xe_gpgpu_fill.c
> @@ -40,6 +40,10 @@
> #define COLOR_4C 0x4c
>
> static bool dump_surface;
> +static uint32_t surfwidth = WIDTH;
> +static uint32_t surfheight = HEIGHT;
> +static uint32_t start_x;
> +static uint32_t start_y;
>
> typedef struct {
> int drm_fd;
> @@ -70,11 +74,11 @@ create_buf(data_t *data, int width, int height, uint8_t color, uint64_t region)
> return buf;
> }
>
> -static void buf_check(uint8_t *ptr, int x, int y, uint8_t color)
> +static void buf_check(uint8_t *ptr, int width, int x, int y, uint8_t color)
> {
> uint8_t val;
>
> - val = ptr[y * WIDTH + x];
> + val = ptr[y * width + x];
> igt_assert_f(val == color,
> "Expected 0x%02x, found 0x%02x at (%d,%d)\n",
> color, val, x, y);
> @@ -85,26 +89,29 @@ static void buf_check(uint8_t *ptr, int x, int y, uint8_t color)
> * Description: run gpgpu fill
> */
>
> -static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
> +static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region,
> + uint32_t surf_width, uint32_t surf_height,
> + uint32_t x, uint32_t y,
> + uint32_t width, uint32_t height)
> {
> struct intel_buf *buf;
> uint8_t *ptr;
> int i, j;
>
> - buf = create_buf(data, WIDTH, HEIGHT, COLOR_88, region);
> + buf = create_buf(data, surf_width, surf_height, COLOR_88, region);
> ptr = xe_bo_map(data->drm_fd, buf->handle, buf->surface[0].size);
>
> - for (i = 0; i < WIDTH; i++)
> - for (j = 0; j < HEIGHT; j++)
> - buf_check(ptr, i, j, COLOR_88);
> + for (i = 0; i < surf_width; i++)
> + for (j = 0; j < surf_height; j++)
> + buf_check(ptr, surf_width, i, j, COLOR_88);
>
> - fill(data->drm_fd, buf, 0, 0, WIDTH / 2, HEIGHT / 2, COLOR_4C);
> + fill(data->drm_fd, buf, x, y, width, height, COLOR_4C);
>
> if (dump_surface) {
> - for (j = 0; j < HEIGHT; j++) {
> + for (j = 0; j < surf_height; j++) {
> igt_info("[%04x] ", j);
> - for (i = 0; i < WIDTH; i++) {
> - igt_info("%02x", ptr[j * HEIGHT + i]);
> + for (i = 0; i < surf_width; i++) {
> + igt_info("%02x", ptr[j * surf_height + i]);
> if (i % 4 == 3)
> igt_info(" ");
> }
> @@ -112,12 +119,13 @@ static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region)
> }
> }
>
> - for (i = 0; i < WIDTH; i++)
> - for (j = 0; j < HEIGHT; j++)
> - if (i < WIDTH / 2 && j < HEIGHT / 2)
> - buf_check(ptr, i, j, COLOR_4C);
> + for (i = 0; i < surf_width; i++)
> + for (j = 0; j < surf_height; j++)
> + if (i >= x && i < width + x &&
> + j >= y && j < height + y)
> + buf_check(ptr, surf_width, i, j, COLOR_4C);
> else
> - buf_check(ptr, i, j, COLOR_88);
> + buf_check(ptr, surf_height, i, j, COLOR_88);
>
> munmap(ptr, buf->surface[0].size);
> }
> @@ -128,6 +136,18 @@ static int opt_handler(int opt, int opt_index, void *data)
> case 'd':
> dump_surface = true;
> break;
> + case 'W':
> + surfwidth = atoi(optarg);
> + break;
> + case 'H':
> + surfheight = atoi(optarg);
> + break;
> + case 'X':
> + start_x = atoi(optarg);
> + break;
> + case 'Y':
> + start_y = atoi(optarg);
> + break;
> default:
> return IGT_OPT_HANDLER_ERROR;
> }
> @@ -138,10 +158,14 @@ static int opt_handler(int opt, int opt_index, void *data)
>
> const char *help_str =
> " -d\tDump surface\n"
> + " -W\tWidth (default 64)\n"
> + " -H\tHeight (default 64)\n"
> + " -X\tX start (aligned to 4)\n"
> + " -Y\tY start (aligned to 1)\n"
> ;
>
>
> -igt_main_args("d", NULL, help_str, opt_handler, NULL)
> +igt_main_args("dW:H:X:Y:", NULL, help_str, opt_handler, NULL)
> {
> data_t data = {0, };
> igt_fillfunc_t fill_fn = NULL;
> @@ -153,10 +177,16 @@ igt_main_args("d", NULL, help_str, opt_handler, NULL)
>
> fill_fn = igt_get_gpgpu_fillfunc(data.devid);
> igt_require_f(fill_fn, "no gpgpu-fill function\n");
> +
> + start_x = ALIGN(start_x, 4);
> }
>
> igt_subtest("basic") {
> - gpgpu_fill(&data, fill_fn, 0);
> + gpgpu_fill(&data, fill_fn, 0,
> + surfwidth, surfheight,
> + start_x, start_y,
> + surfwidth / 2,
> + surfheight / 2);
> }
>
> igt_fixture {
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t 3/3] tests/xe_gpgpu_fill: Add offset-16x16 subtest
2024-11-14 12:06 ` [PATCH i-g-t 3/3] tests/xe_gpgpu_fill: Add offset-16x16 subtest Zbigniew Kempczyński
@ 2024-11-14 13:37 ` Grzegorzek, Dominik
0 siblings, 0 replies; 18+ messages in thread
From: Grzegorzek, Dominik @ 2024-11-14 13:37 UTC (permalink / raw)
To: Kempczynski, Zbigniew, igt-dev@lists.freedesktop.org
On Thu, 2024-11-14 at 13:06 +0100, Zbigniew Kempczyński wrote:
> Add subtest which verifies rectangle filled by pattern starts at
> offset <x,y> == <16,16>.
>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> ---
> tests/intel/xe_gpgpu_fill.c | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/tests/intel/xe_gpgpu_fill.c b/tests/intel/xe_gpgpu_fill.c
> index 82625bb7c0..e1ecff8233 100644
> --- a/tests/intel/xe_gpgpu_fill.c
> +++ b/tests/intel/xe_gpgpu_fill.c
> @@ -87,6 +87,10 @@ static void buf_check(uint8_t *ptr, int width, int x, int y, uint8_t color)
> /**
> * SUBTEST: basic
> * Description: run gpgpu fill
> + *
> + * SUBTEST: offset-16x16
> + * Description: run gpgpu fill with <x,y> start position == <16,16>
> + *
> */
>
> static void gpgpu_fill(data_t *data, igt_fillfunc_t fill, uint32_t region,
> @@ -189,6 +193,14 @@ igt_main_args("dW:H:X:Y:", NULL, help_str, opt_handler, NULL)
> surfheight / 2);
> }
>
> + igt_subtest("offset-16x16") {
> + gpgpu_fill(&data, fill_fn, 0,
> + surfwidth, surfheight,
> + 16, 16,
> + surfwidth / 2,
> + surfheight / 2);
> + }
> +
> igt_fixture {
> buf_ops_destroy(data.bops);
> drm_close_driver(data.drm_fd);
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ Fi.CI.BAT: failure for GPGPU fill improvements
2024-11-14 12:06 [PATCH i-g-t 0/3] GPGPU fill improvements Zbigniew Kempczyński
` (2 preceding siblings ...)
2024-11-14 12:06 ` [PATCH i-g-t 3/3] tests/xe_gpgpu_fill: Add offset-16x16 subtest Zbigniew Kempczyński
@ 2024-11-14 14:05 ` Patchwork
2024-11-14 16:12 ` Zbigniew Kempczyński
2024-11-14 14:13 ` ✓ CI.xeBAT: success " Patchwork
` (8 subsequent siblings)
12 siblings, 1 reply; 18+ messages in thread
From: Patchwork @ 2024-11-14 14:05 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5447 bytes --]
== Series Details ==
Series: GPGPU fill improvements
URL : https://patchwork.freedesktop.org/series/141352/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8110 -> IGTPW_12106
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12106 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12106, 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_12106/index.html
Participating hosts (45 -> 45)
------------------------------
Additional (1): bat-mtlp-9
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12106:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8110/bat-mtlp-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12106/bat-mtlp-8/igt@i915_selftest@live.html
Known issues
------------
Here are the changes found in IGTPW_12106 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_chamelium_edid@hdmi-edid-read:
- bat-dg2-13: [PASS][3] -> [DMESG-WARN][4] ([i915#12253])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8110/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12106/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- bat-dg2-13: [PASS][5] -> [FAIL][6] ([i915#12440])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8110/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12106/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-arlh-3: [ABORT][7] ([i915#10341] / [i915#12061]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8110/bat-arlh-3/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12106/bat-arlh-3/igt@i915_selftest@live.html
- bat-arlh-2: [ABORT][9] ([i915#10341]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8110/bat-arlh-2/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12106/bat-arlh-2/igt@i915_selftest@live.html
- {bat-arls-6}: [ABORT][11] ([i915#10341]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8110/bat-arls-6/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12106/bat-arls-6/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [ABORT][13] ([i915#12061]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8110/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12106/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-arlh-2: [ABORT][15] ([i915#12061]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8110/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12106/bat-arlh-2/igt@i915_selftest@live@workarounds.html
- bat-mtlp-6: [ABORT][17] ([i915#12061]) -> [PASS][18] +1 other test pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8110/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12106/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
- {bat-arls-6}: [ABORT][19] ([i915#12061]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8110/bat-arls-6/igt@i915_selftest@live@workarounds.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12106/bat-arls-6/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253
[i915#12440]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12440
[i915#12799]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12799
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8110 -> IGTPW_12106
* Linux: CI_DRM_15694 -> CI_DRM_15695
CI-20190529: 20190529
CI_DRM_15694: a03ca0a62967eea85aedea158db9dc5078496d4d @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15695: 1e3f4084e4e1fba8d172be0c2b964ab5c816394d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12106: bb09a56410fa397363225a8fc4e1cb2dc8b232a1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8110: 868b25a05a9492a99228d798c6f71bea5ceaa6e1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12106/index.html
[-- Attachment #2: Type: text/html, Size: 6587 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✓ CI.xeBAT: success for GPGPU fill improvements
2024-11-14 12:06 [PATCH i-g-t 0/3] GPGPU fill improvements Zbigniew Kempczyński
` (3 preceding siblings ...)
2024-11-14 14:05 ` ✗ Fi.CI.BAT: failure for GPGPU fill improvements Patchwork
@ 2024-11-14 14:13 ` Patchwork
2024-11-15 2:35 ` ✗ CI.xeFULL: failure " Patchwork
` (7 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2024-11-14 14:13 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2627 bytes --]
== Series Details ==
Series: GPGPU fill improvements
URL : https://patchwork.freedesktop.org/series/141352/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8110_BAT -> XEIGTPW_12106_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12106_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-dg2-oem2: [PASS][1] -> [INCOMPLETE][2] ([Intel XE#2874]) +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [FAIL][3] ([Intel XE#1861]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-bmg-2: [INCOMPLETE][5] ([Intel XE#2874] / [Intel XE#2998]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
[Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
Build changes
-------------
* IGT: IGT_8110 -> IGTPW_12106
* Linux: xe-2226-a03ca0a62967eea85aedea158db9dc5078496d4d -> xe-2227-1e3f4084e4e1fba8d172be0c2b964ab5c816394d
IGTPW_12106: bb09a56410fa397363225a8fc4e1cb2dc8b232a1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8110: 868b25a05a9492a99228d798c6f71bea5ceaa6e1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2226-a03ca0a62967eea85aedea158db9dc5078496d4d: a03ca0a62967eea85aedea158db9dc5078496d4d
xe-2227-1e3f4084e4e1fba8d172be0c2b964ab5c816394d: 1e3f4084e4e1fba8d172be0c2b964ab5c816394d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/index.html
[-- Attachment #2: Type: text/html, Size: 3328 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: ✗ Fi.CI.BAT: failure for GPGPU fill improvements
2024-11-14 14:05 ` ✗ Fi.CI.BAT: failure for GPGPU fill improvements Patchwork
@ 2024-11-14 16:12 ` Zbigniew Kempczyński
0 siblings, 0 replies; 18+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-14 16:12 UTC (permalink / raw)
To: igt-dev; +Cc: I915-ci-infra
On Thu, Nov 14, 2024 at 02:05:12PM +0000, Patchwork wrote:
> Patch Details
>
> Series: GPGPU fill improvements
> URL: https://patchwork.freedesktop.org/series/141352/
> State: failure
> Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12106/index.html
>
> CI Bug Log - changes from IGT_8110 -> IGTPW_12106
>
> Summary
>
> FAILURE
>
> Serious unknown changes coming with IGTPW_12106 absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_12106, 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_12106/index.html
>
> Participating hosts (45 -> 45)
>
> Additional (1): bat-mtlp-9
> Missing (1): fi-snb-2520m
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in IGTPW_12106:
>
> IGT changes
>
> Possible regressions
>
> * igt@i915_selftest@live:
> * bat-mtlp-8: PASS -> INCOMPLETE +1 other test incomplete
Not related to the series. May I ask for resume run?
--
Zbigniew
>
> Known issues
>
> Here are the changes found in IGTPW_12106 that come from known issues:
>
> IGT changes
>
> Issues hit
>
> * igt@kms_chamelium_edid@hdmi-edid-read:
>
> * bat-dg2-13: PASS -> DMESG-WARN (i915#12253)
> * igt@kms_chamelium_frames@dp-crc-fast:
>
> * bat-dg2-13: PASS -> FAIL (i915#12440)
>
> Possible fixes
>
> * igt@i915_selftest@live:
>
> * bat-arlh-3: ABORT (i915#10341 / i915#12061) -> PASS
> * bat-arlh-2: ABORT (i915#10341) -> PASS
> * {bat-arls-6}: ABORT (i915#10341) -> PASS
> * igt@i915_selftest@live@workarounds:
>
> * bat-arlh-3: ABORT (i915#12061) -> PASS
> * bat-arlh-2: ABORT (i915#12061) -> PASS
> * bat-mtlp-6: ABORT (i915#12061) -> PASS +1 other test pass
> * {bat-arls-6}: ABORT (i915#12061) -> PASS
>
> {name}: This element is suppressed. This means it is ignored when
> computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
> Build changes
>
> * CI: CI-20190529 -> None
> * IGT: IGT_8110 -> IGTPW_12106
> * Linux: CI_DRM_15694 -> CI_DRM_15695
>
> CI-20190529: 20190529
> CI_DRM_15694: a03ca0a62967eea85aedea158db9dc5078496d4d @
> git://anongit.freedesktop.org/gfx-ci/linux
> CI_DRM_15695: 1e3f4084e4e1fba8d172be0c2b964ab5c816394d @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_12106: bb09a56410fa397363225a8fc4e1cb2dc8b232a1 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> IGT_8110: 868b25a05a9492a99228d798c6f71bea5ceaa6e1 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ CI.xeFULL: failure for GPGPU fill improvements
2024-11-14 12:06 [PATCH i-g-t 0/3] GPGPU fill improvements Zbigniew Kempczyński
` (4 preceding siblings ...)
2024-11-14 14:13 ` ✓ CI.xeBAT: success " Patchwork
@ 2024-11-15 2:35 ` Patchwork
2024-11-18 22:17 ` ✗ GitLab.Pipeline: warning for GPGPU fill improvements (rev2) Patchwork
` (6 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2024-11-15 2:35 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 43873 bytes --]
== Series Details ==
Series: GPGPU fill improvements
URL : https://patchwork.freedesktop.org/series/141352/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8110_full -> XEIGTPW_12106_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12106_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12106_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_12106_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [PASS][1] -> [FAIL][2] +4 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6:
- shard-dg2-set2: [PASS][3] -> [FAIL][4] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html
* igt@kms_plane_cursor@primary@pipe-d-dp-2-size-128:
- shard-bmg: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-bmg-8/igt@kms_plane_cursor@primary@pipe-d-dp-2-size-128.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-5/igt@kms_plane_cursor@primary@pipe-d-dp-2-size-128.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-lnl: [PASS][7] -> [FAIL][8] +1 other test fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-6/igt@kms_psr@psr2-sprite-plane-onoff.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-5/igt@kms_psr@psr2-sprite-plane-onoff.html
New tests
---------
New tests have been introduced between XEIGT_8110_full and XEIGTPW_12106_full:
### New IGT tests (2) ###
* igt@kms_concurrent@multi-plane-atomic-lowres:
- Statuses : 3 pass(s)
- Exec time: [0.72, 0.95] s
* igt@xe_gpgpu_fill@offset-16x16:
- Statuses : 3 pass(s)
- Exec time: [0.00, 0.01] s
Known issues
------------
Here are the changes found in XEIGTPW_12106_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#2550]) +11 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#3279])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][11] -> [FAIL][12] ([Intel XE#1426]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-dg2-463/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-434/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0:
- shard-lnl: [PASS][13] -> [FAIL][14] ([Intel XE#3106])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2327]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-2/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#316]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#1124])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-6/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1124])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-466/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2191])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#367]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-436/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#367])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2669]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +66 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-dp-5:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#455] / [Intel XE#787]) +20 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-dp-5.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][26] ([Intel XE#1195] / [Intel XE#1727])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][27] ([Intel XE#1195])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-2/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#373])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-5/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2252])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_color@deep-color@pipe-b-edp-1-ctm:
- shard-lnl: [PASS][31] -> [DMESG-WARN][32] ([Intel XE#2929]) +3 other tests dmesg-warn
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-8/igt@kms_color@deep-color@pipe-b-edp-1-ctm.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-4/igt@kms_color@deep-color@pipe-b-edp-1-ctm.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2321])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#455]) +5 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-434/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2320]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1424])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [PASS][37] -> [FAIL][38] ([Intel XE#2882])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [PASS][39] -> [FAIL][40] ([Intel XE#886]) +5 other tests fail
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
- shard-dg2-set2: [PASS][41] -> [FAIL][42] ([Intel XE#301]) +7 other tests fail
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
* igt@kms_flip@wf_vblank-ts-check@a-hdmi-a3:
- shard-bmg: [PASS][43] -> [INCOMPLETE][44] ([Intel XE#2635]) +1 other test incomplete
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a3.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2293] / [Intel XE#2380])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2293])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-x-to-linear:
- shard-lnl: [PASS][47] -> [FAIL][48] ([Intel XE#1491]) +2 other tests fail
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-7/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-x-to-linear.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-4/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-x-to-linear.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#651]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#651]) +7 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [FAIL][51] ([Intel XE#2333]) +5 other tests fail
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#658])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2352])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2311]) +8 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2313]) +7 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#653]) +6 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#656]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-dp-5:
- shard-dg2-set2: NOTRUN -> [FAIL][58] ([Intel XE#3404])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-466/igt@kms_hdr@brightness-with-hdr@pipe-a-dp-5.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2501])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#309]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1131])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-2/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2392])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-7/igt@kms_pm_dc@dc5-psr.html
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1129])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-463/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1439] / [Intel XE#3141])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1489])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#1489])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#2893])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-pr-suspend:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1406])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-7/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@fbc-psr2-cursor-blt@edp-1:
- shard-lnl: [PASS][69] -> [FAIL][70] ([Intel XE#3331]) +1 other test fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-6/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-436/igt@kms_psr@fbc-psr2-primary-render.html
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-4/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#3414])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-3/igt@kms_rotation_crc@bad-pixel-format.html
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#3414])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-463/igt@kms_rotation_crc@bad-pixel-format.html
* igt@xe_drm_fdinfo@utilization-single-full-load-isolation:
- shard-dg2-set2: [PASS][75] -> [INCOMPLETE][76] ([Intel XE#1195])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-dg2-433/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-435/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2905])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-466/igt@xe_eudebug@basic-close.html
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2905])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-8/igt@xe_eudebug@basic-close.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: [PASS][79] -> [FAIL][80] ([Intel XE#1600])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-dg2-435/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-436/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [PASS][81] -> [TIMEOUT][82] ([Intel XE#1473])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][83] -> [TIMEOUT][84] ([Intel XE#1473])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-beng-threads-small:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#688]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-5/igt@xe_evict@evict-beng-threads-small.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2322]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1392])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
* igt@xe_exec_fault_mode@once-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#288]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-434/igt@xe_exec_fault_mode@once-userptr-invalidate-race.html
* igt@xe_gt_freq@freq_reset_multiple:
- shard-lnl: [PASS][89] -> [DMESG-WARN][90] ([Intel XE#3184])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-8/igt@xe_gt_freq@freq_reset_multiple.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-6/igt@xe_gt_freq@freq_reset_multiple.html
* igt@xe_oa@syncs-syncobj-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2541]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-436/igt@xe_oa@syncs-syncobj-cfg.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2284])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-7/igt@xe_pm@s2idle-d3cold-basic-exec.html
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2284] / [Intel XE#366])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-436/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: [PASS][94] -> [ABORT][95] ([Intel XE#1358] / [Intel XE#1607])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-5/igt@xe_pm@s4-d3hot-basic-exec.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#944])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-433/igt@xe_query@multigpu-query-topology.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-dp-4-x:
- shard-dg2-set2: [INCOMPLETE][97] ([Intel XE#1195]) -> [PASS][98] +3 other tests pass
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-dp-4-x.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-dp-4-x.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-lnl: [FAIL][99] ([Intel XE#1701]) -> [PASS][100] +3 other tests pass
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-3/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][101] ([Intel XE#1426]) -> [PASS][102] +1 other test pass
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-dg2-464/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-466/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-lnl: [FAIL][103] ([Intel XE#1454]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-bmg: [INCOMPLETE][105] ([Intel XE#3225]) -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][107] ([Intel XE#2882]) -> [PASS][108] +1 other test pass
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1:
- shard-lnl: [FAIL][109] ([Intel XE#886]) -> [PASS][110] +4 other tests pass
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-4/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-4/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [INCOMPLETE][111] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][113] ([Intel XE#455]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-dg2-434/igt@kms_hdr@invalid-hdr.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
- shard-bmg: [SKIP][115] ([Intel XE#1503]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][117] ([Intel XE#718]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][119] ([Intel XE#1430]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@legacy-planes-dpms:
- shard-lnl: [DMESG-WARN][121] ([Intel XE#2932] / [Intel XE#3184]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-4/igt@kms_pm_rpm@legacy-planes-dpms.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-5/igt@kms_pm_rpm@legacy-planes-dpms.html
* igt@kms_pm_rpm@legacy-planes-dpms@plane-59:
- shard-lnl: [DMESG-WARN][123] ([Intel XE#3184]) -> [PASS][124] +1 other test pass
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-4/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-5/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-lnl: [FAIL][125] ([Intel XE#899]) -> [PASS][126] +1 other test pass
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-bmg: [TIMEOUT][127] ([Intel XE#1473] / [Intel XE#2472]) -> [PASS][128]
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-bmg-4/igt@xe_evict@evict-mixed-threads-large.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-6/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate:
- shard-lnl: [DMESG-WARN][129] -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-1/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-2/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html
* igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate:
- shard-dg2-set2: [DMESG-FAIL][131] -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-dg2-464/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-466/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
* {igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind}:
- shard-dg2-set2: [FAIL][133] -> [PASS][134] +11 other tests pass
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-dg2-463/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-436/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
- shard-lnl: [FAIL][135] -> [PASS][136] +2 other tests pass
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-4/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-1/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
* {igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch}:
- shard-bmg: [FAIL][137] -> [PASS][138] +3 other tests pass
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
* igt@xe_oa@oa-regs-whitelisted@rcs-0:
- shard-lnl: [FAIL][139] ([Intel XE#2514]) -> [PASS][140] +1 other test pass
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-4/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-6/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
- shard-bmg: [FAIL][141] ([Intel XE#2514]) -> [PASS][142] +1 other test pass
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-bmg-1/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-7/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
* igt@xe_pm@s4-basic:
- shard-lnl: [ABORT][143] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-lnl-2/igt@xe_pm@s4-basic.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-lnl-1/igt@xe_pm@s4-basic.html
#### Warnings ####
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [FAIL][145] ([Intel XE#1178]) -> [INCOMPLETE][146] ([Intel XE#1195] / [Intel XE#2715]) +1 other test incomplete
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-dg2-435/igt@kms_content_protection@atomic-dpms.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-463/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2-set2: [FAIL][147] ([Intel XE#1178]) -> [INCOMPLETE][148] ([Intel XE#1195]) +1 other test incomplete
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-dg2-435/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-463/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [FAIL][149] ([Intel XE#2333]) -> [INCOMPLETE][150] ([Intel XE#2050]) +1 other test incomplete
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-bmg: [INCOMPLETE][151] ([Intel XE#2050]) -> [FAIL][152] ([Intel XE#2333])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [SKIP][153] ([Intel XE#362]) -> [FAIL][154] ([Intel XE#1729])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][155] ([Intel XE#2426]) -> [SKIP][156] ([Intel XE#2509])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: [INCOMPLETE][157] ([Intel XE#1195] / [Intel XE#1473]) -> [TIMEOUT][158] ([Intel XE#1473])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-large.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-433/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [TIMEOUT][159] ([Intel XE#1473] / [Intel XE#2472]) -> [TIMEOUT][160] ([Intel XE#1473])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [TIMEOUT][161] ([Intel XE#3191]) -> [TIMEOUT][162] ([Intel XE#2961] / [Intel XE#3191]) +1 other test timeout
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8110/shard-dg2-466/igt@xe_live_ktest@xe_bo.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/shard-dg2-434/igt@xe_live_ktest@xe_bo.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[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#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1454]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1454
[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#1491]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1491
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[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#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2929
[Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
[Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3106
[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#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191
[Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3331
[Intel XE#3404]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3404
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[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#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8110 -> IGTPW_12106
* Linux: xe-2226-a03ca0a62967eea85aedea158db9dc5078496d4d -> xe-2227-1e3f4084e4e1fba8d172be0c2b964ab5c816394d
IGTPW_12106: bb09a56410fa397363225a8fc4e1cb2dc8b232a1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8110: 868b25a05a9492a99228d798c6f71bea5ceaa6e1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2226-a03ca0a62967eea85aedea158db9dc5078496d4d: a03ca0a62967eea85aedea158db9dc5078496d4d
xe-2227-1e3f4084e4e1fba8d172be0c2b964ab5c816394d: 1e3f4084e4e1fba8d172be0c2b964ab5c816394d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12106/index.html
[-- Attachment #2: Type: text/html, Size: 49473 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ GitLab.Pipeline: warning for GPGPU fill improvements (rev2)
2024-11-14 12:06 [PATCH i-g-t 0/3] GPGPU fill improvements Zbigniew Kempczyński
` (5 preceding siblings ...)
2024-11-15 2:35 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-11-18 22:17 ` Patchwork
2024-11-18 22:41 ` ✗ Fi.CI.BAT: failure " Patchwork
` (5 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2024-11-18 22:17 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
== Series Details ==
Series: GPGPU fill improvements (rev2)
URL : https://patchwork.freedesktop.org/series/141352/
State : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1312625 for the overview.
build:tests-debian-meson-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/66768662):
$ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script
Checking if the user of the pipeline is allowed...
Checking if the job's project is part of a well-known group...
Thank you for contributing to freedesktop.org
Fetching changes...
Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/
Checking out 7f829290 as detached HEAD (ref is intel/IGTPW_12123)...
Removing build/
Removing scripts/__pycache__/
Skipping Git submodules setup
section_end:1731967814:get_sources
section_start:1731967814:step_script
Executing "step_script" stage of the job script
Using docker image sha256:4a4103f1a476d355d866b481ff96ac05a32a3a715cefcc1cbc1356a8959fb5f8 for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-armhf:commit-7f829290af3d50661359a80e7c14627b92799770 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-armhf@sha256:3a0ffeb305cdc6ef081dde81d86afee76102e74f76c0f7bd5685fc2457ec707b ...
section_end:1731967816:step_script
section_start:1731967816:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1731967818:cleanup_file_variables
ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:4a4103f1a476d355d866b481ff96ac05a32a3a715cefcc1cbc1356a8959fb5f8: image not known (docker.go:650:0s)
build:tests-debian-minimal has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/66768661):
section_start:1731967808:get_sources
Getting source from Git repository
$ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script
Checking if the user of the pipeline is allowed...
Checking if the job's project is part of a well-known group...
Thank you for contributing to freedesktop.org
Fetching changes...
Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/
Checking out 7f829290 as detached HEAD (ref is intel/IGTPW_12123)...
Skipping Git submodules setup
section_end:1731967812:get_sources
section_start:1731967812:step_script
Executing "step_script" stage of the job script
Using docker image sha256:08904a47f4efcc161569a9b7f88c458fc6e3e85a2225132246af9cf5cc6c4e5b for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-minimal:commit-7f829290af3d50661359a80e7c14627b92799770 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-minimal@sha256:8b51a86fd81e64c501c9521c37fc8ad6f2550976931c510eb0ff4f6a328d477a ...
section_end:1731967816:step_script
section_start:1731967816:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1731967817:cleanup_file_variables
ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:08904a47f4efcc161569a9b7f88c458fc6e3e85a2225132246af9cf5cc6c4e5b: image not known (docker.go:650:0s)
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1312625
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ Fi.CI.BAT: failure for GPGPU fill improvements (rev2)
2024-11-14 12:06 [PATCH i-g-t 0/3] GPGPU fill improvements Zbigniew Kempczyński
` (6 preceding siblings ...)
2024-11-18 22:17 ` ✗ GitLab.Pipeline: warning for GPGPU fill improvements (rev2) Patchwork
@ 2024-11-18 22:41 ` Patchwork
2024-11-18 23:00 ` ✗ CI.xeBAT: " Patchwork
` (4 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2024-11-18 22:41 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5898 bytes --]
== Series Details ==
Series: GPGPU fill improvements (rev2)
URL : https://patchwork.freedesktop.org/series/141352/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8115 -> IGTPW_12123
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12123 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12123, 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_12123/index.html
Participating hosts (46 -> 45)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12123:
### IGT changes ###
#### Possible regressions ####
* igt@dmabuf@all-tests@dma_fence_chain:
- fi-bsw-nick: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12123/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@i915_pm_rpm@module-reload:
- bat-dg2-11: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12123/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
- bat-rpls-4: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12123/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-twl-1: NOTRUN -> [ABORT][7] +1 other test abort
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12123/bat-twl-1/igt@i915_selftest@live.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-dp-1:
- fi-kbl-7567u: [PASS][8] -> [DMESG-WARN][9] +1 other test dmesg-warn
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/fi-kbl-7567u/igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-dp-1.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12123/fi-kbl-7567u/igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-dp-1.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_selftest@live@workarounds:
- {bat-mtlp-9}: [PASS][10] -> [ABORT][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12123/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
Known issues
------------
Here are the changes found in IGTPW_12123 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-arls-5: [PASS][12] -> [ABORT][13] ([i915#12829])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-arls-5/igt@i915_selftest@live.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12123/bat-arls-5/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][14] -> [ABORT][15] ([i915#12061])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-arls-5/igt@i915_selftest@live@workarounds.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12123/bat-arls-5/igt@i915_selftest@live@workarounds.html
* igt@runner@aborted:
- bat-dg2-13: NOTRUN -> [FAIL][16] ([i915#12658])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12123/bat-dg2-13/igt@runner@aborted.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-dg1-7: [FAIL][17] -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12123/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-mtlp-6: [ABORT][19] ([i915#12829]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-mtlp-6/igt@i915_selftest@live.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12123/bat-mtlp-6/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [ABORT][21] -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12123/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12658
[i915#12829]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12829
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8115 -> IGTPW_12123
* Linux: CI_DRM_15716 -> CI_DRM_15717
CI-20190529: 20190529
CI_DRM_15716: 6abefc8e3bf638090d5277bc3e6fd02bb25579a4 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15717: 1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12123: 7f829290af3d50661359a80e7c14627b92799770 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8115: 4942fc57c20f9cb2195e70991c4e4df03dd3db21 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12123/index.html
[-- Attachment #2: Type: text/html, Size: 6914 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ CI.xeBAT: failure for GPGPU fill improvements (rev2)
2024-11-14 12:06 [PATCH i-g-t 0/3] GPGPU fill improvements Zbigniew Kempczyński
` (7 preceding siblings ...)
2024-11-18 22:41 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-11-18 23:00 ` Patchwork
2024-11-19 9:05 ` ✗ CI.xeFULL: " Patchwork
` (3 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2024-11-18 23:00 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3334 bytes --]
== Series Details ==
Series: GPGPU fill improvements (rev2)
URL : https://patchwork.freedesktop.org/series/141352/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8115_BAT -> XEIGTPW_12123_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12123_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12123_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12123_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_waitfence@abstime:
- bat-lnl-2: [PASS][1] -> [DMESG-WARN][2] +3 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/bat-lnl-2/igt@xe_waitfence@abstime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/bat-lnl-2/igt@xe_waitfence@abstime.html
Known issues
------------
Here are the changes found in XEIGTPW_12123_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_pat@pat-index-xe2@dw:
- bat-lnl-2: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#3466]) +2 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/bat-lnl-2/igt@xe_pat@pat-index-xe2@dw.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/bat-lnl-2/igt@xe_pat@pat-index-xe2@dw.html
#### Possible fixes ####
* igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch:
- bat-lnl-2: [DMESG-FAIL][5] ([Intel XE#3466]) -> [PASS][6] +32 other tests pass
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/bat-lnl-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/bat-lnl-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html
* igt@xe_exec_threads@threads-mixed-basic:
- bat-lnl-2: [DMESG-WARN][7] ([Intel XE#3466]) -> [PASS][8] +3 other tests pass
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/bat-lnl-2/igt@xe_exec_threads@threads-mixed-basic.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/bat-lnl-2/igt@xe_exec_threads@threads-mixed-basic.html
[Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466
Build changes
-------------
* IGT: IGT_8115 -> IGTPW_12123
* Linux: xe-2248-6abefc8e3bf638090d5277bc3e6fd02bb25579a4 -> xe-2249-1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6
IGTPW_12123: 7f829290af3d50661359a80e7c14627b92799770 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8115: 4942fc57c20f9cb2195e70991c4e4df03dd3db21 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2248-6abefc8e3bf638090d5277bc3e6fd02bb25579a4: 6abefc8e3bf638090d5277bc3e6fd02bb25579a4
xe-2249-1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6: 1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/index.html
[-- Attachment #2: Type: text/html, Size: 4159 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ CI.xeFULL: failure for GPGPU fill improvements (rev2)
2024-11-14 12:06 [PATCH i-g-t 0/3] GPGPU fill improvements Zbigniew Kempczyński
` (8 preceding siblings ...)
2024-11-18 23:00 ` ✗ CI.xeBAT: " Patchwork
@ 2024-11-19 9:05 ` Patchwork
2024-11-19 19:01 ` ✓ CI.xeBAT: success for GPGPU fill improvements (rev3) Patchwork
` (2 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2024-11-19 9:05 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 122195 bytes --]
== Series Details ==
Series: GPGPU fill improvements (rev2)
URL : https://patchwork.freedesktop.org/series/141352/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8115_full -> XEIGTPW_12123_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12123_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12123_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_12123_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-bmg: [PASS][1] -> [DMESG-FAIL][2] +11 other tests dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2-set2: [PASS][3] -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][5] +3 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2:
- shard-bmg: [PASS][6] -> [DMESG-WARN][7] +52 other tests dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: NOTRUN -> [DMESG-WARN][8] +19 other tests dmesg-warn
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: NOTRUN -> [FAIL][9]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][10] +4 other tests dmesg-fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-2/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-dp-2.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-bmg: [PASS][11] -> [INCOMPLETE][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@xe_drm_fdinfo@utilization-single-full-load:
- shard-lnl: [PASS][13] -> [FAIL][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-1/igt@xe_drm_fdinfo@utilization-single-full-load.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-3/igt@xe_drm_fdinfo@utilization-single-full-load.html
#### Warnings ####
* igt@core_hotunplug@hotrebind:
- shard-dg2-set2: [SKIP][15] ([Intel XE#1885]) -> [DMESG-WARN][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@core_hotunplug@hotrebind.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@core_hotunplug@hotrebind.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][17] ([Intel XE#3442]) -> [SKIP][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-dg2-set2: [SKIP][19] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][20]
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: [FAIL][21] ([Intel XE#1695]) -> [DMESG-FAIL][22]
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_fbcon_fbt@fbc.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [FAIL][23] ([Intel XE#2333]) -> [DMESG-FAIL][24] +3 other tests dmesg-fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: [SKIP][25] ([Intel XE#3309]) -> [SKIP][26]
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_pm_dc@dc5-retention-flops.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: [DMESG-WARN][27] ([Intel XE#3468]) -> [DMESG-WARN][28]
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@xe_wedged@wedged-mode-toggle.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@xe_wedged@wedged-mode-toggle.html
New tests
---------
New tests have been introduced between XEIGT_8115_full and XEIGTPW_12123_full:
### New IGT tests (1) ###
* igt@xe_gpgpu_fill@offset-16x16:
- Statuses : 3 pass(s)
- Exec time: [0.00, 0.01] s
Known issues
------------
Here are the changes found in XEIGTPW_12123_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotunplug-rescan:
- shard-dg2-set2: [PASS][29] -> [SKIP][30] ([Intel XE#1885]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@core_hotunplug@hotunplug-rescan.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@core_hotunplug@hotunplug-rescan.html
* igt@core_setmaster@master-drop-set-root:
- shard-dg2-set2: [PASS][31] -> [FAIL][32] ([Intel XE#3130] / [Intel XE#3249])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@core_setmaster@master-drop-set-root.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html
* igt@core_setmaster@master-drop-set-shared-fd:
- shard-dg2-set2: [PASS][33] -> [SKIP][34] ([Intel XE#3453])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@core_setmaster@master-drop-set-shared-fd.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@core_setmaster@master-drop-set-shared-fd.html
* igt@fbdev@nullptr:
- shard-dg2-set2: [PASS][35] -> [SKIP][36] ([Intel XE#2134]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@fbdev@nullptr.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@fbdev@nullptr.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#664])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-4/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2370])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2327]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-8/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [DMESG-FAIL][40] ([Intel XE#3468])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#316]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-436/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#619])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1467])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#1124]) +12 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#1124]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1124]) +4 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#607])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#2191])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#367]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#2136]) +47 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-435/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#2887]) +6 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#3432]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][55] ([Intel XE#1195]) +3 other tests incomplete
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#2669]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2887]) +16 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][58] ([Intel XE#616]) +9 other tests fail
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#787]) +55 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [PASS][60] -> [INCOMPLETE][61] ([Intel XE#1195] / [Intel XE#1727])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][62] -> [INCOMPLETE][63] ([Intel XE#1195] / [Intel XE#3113])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1152]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-436/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2325]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-6/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#306]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-6/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2252]) +7 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-after-hibernate:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#373]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html
* igt@kms_chamelium_hpd@vga-hpd-after-hibernate:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#373]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-3/igt@kms_chamelium_hpd@vga-hpd-after-hibernate.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2390])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-8/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#307])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_content_protection@dp-mst-type-0.html
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#307])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#3278])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-4/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][74] ([Intel XE#1178]) +1 other test fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-7/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2320]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2321]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#455]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1424]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-c-edp-1:
- shard-lnl: [PASS][79] -> [DMESG-WARN][80] ([Intel XE#3466]) +30 other tests dmesg-warn
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-128x128@pipe-c-edp-1.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-128x128@pipe-c-edp-1.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#2321])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2286]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [DMESG-WARN][83] ([Intel XE#877])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#309]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy:
- shard-lnl: [PASS][85] -> [FAIL][86] ([Intel XE#1475])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-2/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#323])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [PASS][88] -> [DMESG-WARN][89] ([Intel XE#877]) +1 other test dmesg-warn
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: [PASS][90] -> [SKIP][91] ([Intel XE#2423]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_dp_aux_dev.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2244]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-8/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#2244])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-8/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#776])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#701])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#1135])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-435/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [PASS][97] -> [FAIL][98] ([Intel XE#2882]) +6 other tests fail
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:
- shard-bmg: [PASS][99] -> [FAIL][100] ([Intel XE#3487])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1421]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@busy-flip:
- shard-dg2-set2: [PASS][102] -> [SKIP][103] ([Intel XE#2423] / [i915#2575]) +121 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_flip@busy-flip.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_flip@busy-flip.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4:
- shard-dg2-set2: [PASS][104] -> [FAIL][105] ([Intel XE#301] / [Intel XE#3486])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6:
- shard-dg2-set2: [PASS][106] -> [FAIL][107] ([Intel XE#301]) +6 other tests fail
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [PASS][108] -> [SKIP][109] ([Intel XE#2136]) +40 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2136] / [Intel XE#2351]) +20 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1401] / [Intel XE#1745])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1401])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2293]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#352])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-2/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@basic:
- shard-dg2-set2: [PASS][116] -> [SKIP][117] ([Intel XE#2351])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_frontbuffer_tracking@basic.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#651]) +7 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [FAIL][119] ([Intel XE#2333]) +9 other tests fail
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [PASS][120] -> [SKIP][121] ([Intel XE#2136] / [Intel XE#2351]) +17 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#656]) +22 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#658])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2311]) +33 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#651]) +9 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1469])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2313]) +22 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#653]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][129] ([Intel XE#3312]) +1 other test fail
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-2/igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2.html
* igt@kms_hdr@static-swap:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1503])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-3/igt@kms_hdr@static-swap.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2501])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2486])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-1/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#599]) +3 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-4/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#2423] / [i915#2575]) +56 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_plane_multiple@tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#2493])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-6/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2493])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#2763]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2763] / [Intel XE#455])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2763]) +4 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#2763]) +11 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1129])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html
- shard-lnl: [PASS][142] -> [FAIL][143] ([Intel XE#718])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2392])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][145] -> [FAIL][146] ([Intel XE#1430])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2446]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2-set2: [PASS][148] -> [DMESG-WARN][149] ([Intel XE#3468])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_pm_rpm@dpms-non-lpsp.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2-set2: [PASS][150] -> [SKIP][151] ([Intel XE#2446]) +5 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#2893]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#1489]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#1489]) +9 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-3/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#1406]) +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-8/igt@kms_psr@fbc-pr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2330])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#1127])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#3414]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2426])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@wait-idle@pipe-a-dp-2:
- shard-bmg: [PASS][162] -> [DMESG-FAIL][163] ([Intel XE#3468]) +1 other test dmesg-fail
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@kms_vblank@wait-idle@pipe-a-dp-2.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-7/igt@kms_vblank@wait-idle@pipe-a-dp-2.html
* igt@kms_vblank@wait-idle@pipe-d-dp-2:
- shard-bmg: [PASS][164] -> [DMESG-WARN][165] ([Intel XE#3468]) +11 other tests dmesg-warn
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@kms_vblank@wait-idle@pipe-d-dp-2.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-7/igt@kms_vblank@wait-idle@pipe-d-dp-2.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#1499]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#756])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-1/igt@kms_writeback@writeback-invalid-parameters.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#1091] / [Intel XE#2849])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#1280] / [Intel XE#455])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#2504])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue:
- shard-lnl: [PASS][171] -> [FAIL][172] ([Intel XE#2667])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-1/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-3/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
* igt@xe_eudebug@vm-bind-clear:
- shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#2905]) +10 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-1/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_eudebug_online@preempt-breakpoint:
- shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#2905]) +4 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-3/igt@xe_eudebug_online@preempt-breakpoint.html
* igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram:
- shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#2905]) +5 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: NOTRUN -> [FAIL][176] ([Intel XE#1600]) +1 other test fail
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-beng-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#688]) +4 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-6/igt@xe_evict@evict-beng-threads-large-multi-vm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [PASS][178] -> [INCOMPLETE][179] ([Intel XE#1195] / [Intel XE#1473])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_evict@evict-mixed-many-threads-small.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate:
- shard-dg2-set2: [PASS][180] -> [SKIP][181] ([Intel XE#1130]) +214 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate.html
* igt@xe_exec_balancer@twice-virtual-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#1130]) +96 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@xe_exec_balancer@twice-virtual-basic.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][183] ([Intel XE#2322]) +9 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
- shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#1392]) +6 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
* igt@xe_exec_basic@once-bindexecqueue-rebind:
- shard-lnl: NOTRUN -> [DMESG-WARN][185] ([Intel XE#3466])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-3/igt@xe_exec_basic@once-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][186] ([Intel XE#288]) +11 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-436/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-userptr-imm:
- shard-lnl: [PASS][187] -> [DMESG-FAIL][188] ([Intel XE#3466]) +3 other tests dmesg-fail
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-8/igt@xe_exec_fault_mode@twice-userptr-imm.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-3/igt@xe_exec_fault_mode@twice-userptr-imm.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
- shard-bmg: [PASS][189] -> [DMESG-WARN][190] ([Intel XE#3467])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-bmg: NOTRUN -> [DMESG-WARN][191] ([Intel XE#3343]) +1 other test dmesg-warn
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_module_load@load:
- shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#2457])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-8/igt@xe_module_load@load.html
* igt@xe_noexec_ping_pong:
- shard-lnl: NOTRUN -> [SKIP][193] ([Intel XE#379])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-8/igt@xe_noexec_ping_pong.html
* igt@xe_oa@non-system-wide-paranoid:
- shard-dg2-set2: NOTRUN -> [SKIP][194] ([Intel XE#2541]) +2 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@xe_oa@non-system-wide-paranoid.html
* igt@xe_peer2peer@write:
- shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#1061])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-6/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][196] ([Intel XE#2284])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-6/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: [PASS][197] -> [ABORT][198] ([Intel XE#1358] / [Intel XE#1607])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-5/igt@xe_pm@s4-d3hot-basic-exec.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-bmg: NOTRUN -> [SKIP][199] ([Intel XE#944]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-5/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#944]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-4/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
- shard-dg2-set2: NOTRUN -> [SKIP][201] ([Intel XE#944])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
#### Possible fixes ####
* igt@core_hotunplug@hotreplug-lateclose:
- shard-dg2-set2: [SKIP][202] ([Intel XE#1885]) -> [PASS][203]
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@core_hotunplug@hotreplug-lateclose.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@core_hotunplug@hotreplug-lateclose.html
- shard-bmg: [INCOMPLETE][204] -> [PASS][205]
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@core_hotunplug@hotreplug-lateclose.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@core_hotunplug@hotreplug-lateclose.html
* igt@fbdev@read:
- shard-dg2-set2: [SKIP][206] ([Intel XE#2134]) -> [PASS][207] +1 other test pass
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@fbdev@read.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@fbdev@read.html
* igt@kms_3d:
- shard-dg2-set2: [SKIP][208] ([Intel XE#2423]) -> [PASS][209]
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_3d.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_3d.html
* igt@kms_atomic@test-only:
- shard-bmg: [DMESG-WARN][210] ([Intel XE#1727]) -> [PASS][211] +25 other tests pass
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_atomic@test-only.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@kms_atomic@test-only.html
* igt@kms_atomic_interruptible@legacy-pageflip@pipe-a-dp-2:
- shard-bmg: [DMESG-WARN][212] ([Intel XE#3468]) -> [PASS][213] +14 other tests pass
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_atomic_interruptible@legacy-pageflip@pipe-a-dp-2.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-7/igt@kms_atomic_interruptible@legacy-pageflip@pipe-a-dp-2.html
* igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-a-dp-2:
- shard-bmg: [DMESG-WARN][214] ([Intel XE#877]) -> [PASS][215] +1 other test pass
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-a-dp-2.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-1/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-a-dp-2.html
* igt@kms_big_fb@linear-16bpp-rotate-180:
- shard-bmg: [DMESG-FAIL][216] -> [PASS][217] +27 other tests pass
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@kms_big_fb@linear-16bpp-rotate-180.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-0:
- shard-lnl: [INCOMPLETE][218] ([Intel XE#3225]) -> [PASS][219] +3 other tests pass
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2-set2: [SKIP][220] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][221] +6 other tests pass
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-lnl: [DMESG-WARN][222] -> [PASS][223] +5 other tests pass
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-8/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-2/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [FAIL][224] ([Intel XE#2882]) -> [PASS][225]
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [FAIL][226] ([Intel XE#3486]) -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: [DMESG-WARN][228] -> [PASS][229] +175 other tests pass
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-dp4:
- shard-dg2-set2: [DMESG-WARN][230] ([Intel XE#1727]) -> [PASS][231] +4 other tests pass
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible@a-dp4.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@a-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6:
- shard-dg2-set2: [DMESG-WARN][232] -> [PASS][233] +2 other tests pass
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6:
- shard-dg2-set2: [DMESG-FAIL][234] -> [PASS][235] +1 other test pass
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-dp4:
- shard-dg2-set2: [DMESG-FAIL][236] ([Intel XE#1727]) -> [PASS][237] +6 other tests pass
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html
* igt@kms_flip@flip-vs-suspend@c-dp2:
- shard-bmg: [DMESG-FAIL][238] ([Intel XE#1727]) -> [PASS][239] +10 other tests pass
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@kms_flip@flip-vs-suspend@c-dp2.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-7/igt@kms_flip@flip-vs-suspend@c-dp2.html
* igt@kms_flip@plain-flip-fb-recreate@b-edp1:
- shard-lnl: [FAIL][240] ([Intel XE#886]) -> [PASS][241] +1 other test pass
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-dg2-set2: [SKIP][242] ([Intel XE#2136]) -> [PASS][243] +12 other tests pass
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-lnl: [DMESG-WARN][244] ([Intel XE#3466]) -> [PASS][245] +87 other tests pass
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [INCOMPLETE][246] ([Intel XE#1195]) -> [PASS][247] +2 other tests pass
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_getfb@getfb-handle-protection:
- shard-dg2-set2: [SKIP][248] ([Intel XE#2423] / [i915#2575]) -> [PASS][249] +44 other tests pass
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_getfb@getfb-handle-protection.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-435/igt@kms_getfb@getfb-handle-protection.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [DMESG-FAIL][250] ([Intel XE#3468]) -> [PASS][251] +10 other tests pass
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [INCOMPLETE][252] ([Intel XE#1727]) -> [PASS][253] +3 other tests pass
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][254] ([Intel XE#718]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [SKIP][256] ([Intel XE#2446]) -> [PASS][257] +4 other tests pass
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_pm_rpm@system-suspend-modeset.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@xe_exec_compute_mode@many-rebind:
- shard-lnl: [DMESG-WARN][258] ([Intel XE#3514]) -> [PASS][259] +34 other tests pass
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-1/igt@xe_exec_compute_mode@many-rebind.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-1/igt@xe_exec_compute_mode@many-rebind.html
* igt@xe_exec_fault_mode@once-bindexecqueue-prefetch:
- shard-lnl: [DMESG-FAIL][260] ([Intel XE#3466]) -> [PASS][261] +8 other tests pass
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-3/igt@xe_exec_fault_mode@once-bindexecqueue-prefetch.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-6/igt@xe_exec_fault_mode@once-bindexecqueue-prefetch.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [DMESG-WARN][262] ([Intel XE#3467]) -> [PASS][263] +2 other tests pass
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@xe_module_load@reload-no-display.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-8/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@s2idle-mocs:
- shard-lnl: [DMESG-WARN][264] ([Intel XE#2932]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-4/igt@xe_pm@s2idle-mocs.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-1/igt@xe_pm@s2idle-mocs.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-bmg: [DMESG-WARN][266] ([Intel XE#1616]) -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@xe_pm@s2idle-multiple-execs.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-bmg: [DMESG-WARN][268] ([Intel XE#1616] / [Intel XE#3468]) -> [PASS][269]
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-prefetch.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s3-basic:
- shard-bmg: [DMESG-WARN][270] ([Intel XE#569]) -> [PASS][271] +1 other test pass
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_pm@s3-basic.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@xe_pm@s3-basic.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][272] ([Intel XE#569]) -> [PASS][273] +1 other test pass
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_pm@s3-vm-bind-unbind-all.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [DMESG-WARN][274] ([Intel XE#2280]) -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-1/igt@xe_pm@s4-vm-bind-unbind-all.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-6/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [FAIL][276] ([Intel XE#958]) -> [PASS][277]
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_vm@munmap-style-unbind-many-either-side-partial:
- shard-dg2-set2: [SKIP][278] ([Intel XE#1130]) -> [PASS][279] +90 other tests pass
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-dg2-set2: [DMESG-WARN][280] ([Intel XE#1727]) -> [SKIP][281] ([Intel XE#2136])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][282] ([Intel XE#316]) -> [SKIP][283] ([Intel XE#2136]) +2 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_big_fb@linear-8bpp-rotate-270.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][284] ([Intel XE#316]) -> [SKIP][285] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][286] ([Intel XE#607]) -> [SKIP][287] ([Intel XE#2136] / [Intel XE#2351])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][288] ([Intel XE#2136]) -> [SKIP][289] ([Intel XE#1124]) +2 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-435/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-180-hflip:
- shard-dg2-set2: [SKIP][290] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][291] ([Intel XE#1124]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][292] ([Intel XE#1124]) -> [SKIP][293] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][294] ([Intel XE#1124]) -> [SKIP][295] ([Intel XE#2136]) +10 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: [SKIP][296] ([Intel XE#367]) -> [SKIP][297] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: [SKIP][298] ([Intel XE#2423] / [i915#2575]) -> [SKIP][299] ([Intel XE#2191]) +2 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][300] ([Intel XE#2191]) -> [SKIP][301] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][302] ([Intel XE#2423] / [i915#2575]) -> [SKIP][303] ([Intel XE#367])
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][304] ([Intel XE#2907]) -> [SKIP][305] ([Intel XE#2136]) +3 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-dg2-set2: [SKIP][306] ([Intel XE#2136]) -> [SKIP][307] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-435/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [SKIP][308] ([Intel XE#2136]) -> [INCOMPLETE][309] ([Intel XE#1195])
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][310] -> [SKIP][311] ([Intel XE#455] / [Intel XE#787])
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][312] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][313] ([Intel XE#2136]) +12 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][314] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][315] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][316] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][317] ([Intel XE#2136] / [Intel XE#2351])
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][318] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][319] ([Intel XE#314])
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2-set2: [SKIP][320] ([Intel XE#2423] / [i915#2575]) -> [SKIP][321] ([Intel XE#373]) +4 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_chamelium_audio@dp-audio-edid.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: [SKIP][322] ([Intel XE#306]) -> [SKIP][323] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_chamelium_color@ctm-red-to-blue.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg2-set2: [SKIP][324] ([Intel XE#373]) -> [SKIP][325] ([Intel XE#2423] / [i915#2575]) +15 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color@ctm-0-50:
- shard-dg2-set2: [SKIP][326] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][327] ([Intel XE#1195])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_color@ctm-0-50.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_color@ctm-0-50.html
* igt@kms_content_protection@atomic:
- shard-bmg: [INCOMPLETE][328] ([Intel XE#2715]) -> [FAIL][329] ([Intel XE#1178]) +1 other test fail
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@kms_content_protection@atomic.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-4/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: [SKIP][330] ([Intel XE#307]) -> [SKIP][331] ([Intel XE#2423] / [i915#2575])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-1.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: [SKIP][332] ([Intel XE#2423] / [i915#2575]) -> [SKIP][333] ([Intel XE#307])
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_content_protection@dp-mst-type-1.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][334] ([Intel XE#1178]) -> [INCOMPLETE][335] ([Intel XE#2715]) +1 other test incomplete
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@kms_content_protection@legacy.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm:
- shard-dg2-set2: [FAIL][336] ([Intel XE#1178]) -> [SKIP][337] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_content_protection@srm.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [FAIL][338] ([Intel XE#1188]) -> [SKIP][339] ([Intel XE#2423] / [i915#2575])
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_content_protection@uevent.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_content_protection@uevent.html
- shard-bmg: [DMESG-FAIL][340] -> [FAIL][341] ([Intel XE#1188]) +1 other test fail
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_content_protection@uevent.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2-set2: [SKIP][342] ([Intel XE#2423] / [i915#2575]) -> [SKIP][343] ([Intel XE#455]) +4 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-max-size.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: [SKIP][344] ([Intel XE#323]) -> [SKIP][345] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2-set2: [SKIP][346] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][347] ([Intel XE#455])
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-436/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-basic:
- shard-dg2-set2: [SKIP][348] ([Intel XE#2351]) -> [SKIP][349] ([Intel XE#455])
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_dsc@dsc-basic.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: [SKIP][350] ([Intel XE#455]) -> [SKIP][351] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_dsc@dsc-with-bpc-formats.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][352] ([Intel XE#2423] / [i915#2575]) -> [SKIP][353] ([Intel XE#1138])
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_feature_discovery@display-4x.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][354] ([Intel XE#2423] / [i915#2575]) -> [SKIP][355] ([Intel XE#1137])
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2-set2: [DMESG-WARN][356] ([Intel XE#1727]) -> [SKIP][357] ([Intel XE#2423] / [i915#2575])
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-lnl: [FAIL][358] ([Intel XE#886]) -> [DMESG-WARN][359] ([Intel XE#3466]) +2 other tests dmesg-warn
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [INCOMPLETE][360] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597] / [Intel XE#3468]) -> [SKIP][361] ([Intel XE#2423] / [i915#2575])
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_flip@flip-vs-suspend.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [DMESG-FAIL][362] ([Intel XE#1727]) -> [INCOMPLETE][363] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597])
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-dp4:
- shard-dg2-set2: [DMESG-FAIL][364] ([Intel XE#1727]) -> [INCOMPLETE][365] ([Intel XE#1195] / [Intel XE#2049])
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2-set2: [SKIP][366] ([Intel XE#2136]) -> [SKIP][367] ([Intel XE#455]) +1 other test skip
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][368] ([Intel XE#455]) -> [SKIP][369] ([Intel XE#2136]) +5 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][370] ([Intel XE#651]) -> [SKIP][371] ([Intel XE#2136]) +32 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][372] ([Intel XE#2136]) -> [SKIP][373] ([Intel XE#651]) +12 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][374] ([Intel XE#651]) -> [SKIP][375] ([Intel XE#2136] / [Intel XE#2351]) +13 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-bmg: [DMESG-FAIL][376] -> [FAIL][377] ([Intel XE#2333]) +16 other tests fail
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [INCOMPLETE][378] ([Intel XE#2050] / [Intel XE#3468]) -> [DMESG-FAIL][379] ([Intel XE#3468])
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [DMESG-FAIL][380] ([Intel XE#3468]) -> [FAIL][381] ([Intel XE#2333]) +2 other tests fail
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][382] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][383] ([Intel XE#651]) +8 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][384] ([Intel XE#2136]) -> [SKIP][385] ([Intel XE#653]) +16 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][386] ([Intel XE#653]) -> [SKIP][387] ([Intel XE#2136] / [Intel XE#2351]) +13 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][388] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][389] ([Intel XE#653]) +5 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-dg2-set2: [SKIP][390] ([Intel XE#653]) -> [SKIP][391] ([Intel XE#2136]) +31 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-suspend.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: [SKIP][392] ([Intel XE#346]) -> [SKIP][393] ([Intel XE#2136])
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_joiner@invalid-modeset-big-joiner.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: [SKIP][394] ([Intel XE#2925]) -> [SKIP][395] ([Intel XE#2136]) +1 other test skip
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane_cursor@overlay:
- shard-dg2-set2: [SKIP][396] ([Intel XE#2423] / [i915#2575]) -> [FAIL][397] ([Intel XE#616])
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_plane_cursor@overlay.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-435/igt@kms_plane_cursor@overlay.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2-set2: [SKIP][398] ([Intel XE#455]) -> [SKIP][399] ([Intel XE#2423] / [i915#2575]) +8 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_plane_lowres@tiling-y.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2-set2: [SKIP][400] ([Intel XE#2423] / [i915#2575]) -> [SKIP][401] ([Intel XE#2763] / [Intel XE#455])
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2-set2: [SKIP][402] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][403] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][404] ([Intel XE#870]) -> [SKIP][405] ([Intel XE#2136])
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_pm_backlight@fade-with-suspend.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][406] ([Intel XE#2136]) -> [SKIP][407] ([Intel XE#908])
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2-set2: [FAIL][408] -> [SKIP][409] ([Intel XE#2136])
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_pm_lpsp@kms-lpsp.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-dg2-set2: [SKIP][410] ([Intel XE#2136]) -> [SKIP][411] ([Intel XE#1489]) +5 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][412] ([Intel XE#1489]) -> [SKIP][413] ([Intel XE#2136]) +8 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][414] ([Intel XE#1122]) -> [SKIP][415] ([Intel XE#2136]) +1 other test skip
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-set2: [SKIP][416] ([Intel XE#2136]) -> [SKIP][417] ([Intel XE#1122])
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr2_su@page_flip-xrgb8888.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-436/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-dpms:
- shard-dg2-set2: [SKIP][418] ([Intel XE#2136]) -> [SKIP][419] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr@fbc-pr-dpms.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-435/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][420] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][421] ([Intel XE#2136]) +13 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-dg2-set2: [SKIP][422] ([Intel XE#2351]) -> [SKIP][423] ([Intel XE#2850] / [Intel XE#929])
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr@psr-cursor-plane-move.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-435/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2-set2: [SKIP][424] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][425] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr@psr-cursor-render.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][426] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][427] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_psr@psr-dpms.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][428] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][429] ([Intel XE#2351]) +1 other test skip
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_psr@psr-sprite-plane-onoff.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][430] ([Intel XE#2423] / [i915#2575]) -> [SKIP][431] ([Intel XE#3414])
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][432] ([Intel XE#3414]) -> [SKIP][433] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][434] ([Intel XE#1127]) -> [SKIP][435] ([Intel XE#2423] / [i915#2575])
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [SKIP][436] ([Intel XE#362]) -> [SKIP][437] ([Intel XE#2423] / [i915#2575])
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: [SKIP][438] ([Intel XE#2168]) -> [SKIP][439] ([Intel XE#2423] / [i915#2575])
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_vrr@cmrr.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@kms_vrr@cmrr.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][440] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][441] ([Intel XE#1130]) +1 other test skip
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_compute_preempt@compute-preempt.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_compute_preempt@compute-threadgroup-preempt:
- shard-dg2-set2: [SKIP][442] ([Intel XE#1130]) -> [SKIP][443] ([Intel XE#1280] / [Intel XE#455])
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_compute_preempt@compute-threadgroup-preempt.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][444] ([Intel XE#1123]) -> [SKIP][445] ([Intel XE#1130]) +3 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: [SKIP][446] ([Intel XE#1130]) -> [SKIP][447] ([Intel XE#1126]) +1 other test skip
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: [SKIP][448] ([Intel XE#2905]) -> [SKIP][449] ([Intel XE#1130]) +15 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_eudebug@basic-close.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug_online@interrupt-other-debuggable:
- shard-dg2-set2: [SKIP][450] ([Intel XE#1130]) -> [SKIP][451] ([Intel XE#2905]) +3 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_eudebug_online@interrupt-other-debuggable.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-436/igt@xe_eudebug_online@interrupt-other-debuggable.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][452] ([Intel XE#1473]) -> [SKIP][453] ([Intel XE#1130])
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html
- shard-bmg: [TIMEOUT][454] ([Intel XE#1473]) -> [INCOMPLETE][455] ([Intel XE#1473])
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][456] ([Intel XE#288]) -> [SKIP][457] ([Intel XE#1130]) +34 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: [SKIP][458] ([Intel XE#1130]) -> [SKIP][459] ([Intel XE#288]) +11 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-dg2-set2: [SKIP][460] ([Intel XE#1130]) -> [SKIP][461] ([Intel XE#2360])
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_exec_threads@threads-bal-fd-userptr:
- shard-dg2-set2: [FAIL][462] -> [SKIP][463] ([Intel XE#1130])
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@xe_exec_threads@threads-bal-fd-userptr.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@xe_exec_threads@threads-bal-fd-userptr.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-dg2-set2: [SKIP][464] ([Intel XE#1130]) -> [DMESG-WARN][465] ([Intel XE#3343])
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-dg2-set2: [DMESG-WARN][466] ([Intel XE#3343]) -> [SKIP][467] ([Intel XE#1130]) +2 other tests skip
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-bmg: [DMESG-WARN][468] -> [DMESG-WARN][469] ([Intel XE#3467])
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
- shard-dg2-set2: [SKIP][470] ([Intel XE#1130]) -> [DMESG-WARN][471] ([Intel XE#3467])
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-dg2-set2: [DMESG-WARN][472] ([Intel XE#3467]) -> [SKIP][473] ([Intel XE#1130]) +1 other test skip
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- shard-dg2-set2: [TIMEOUT][474] ([Intel XE#2961] / [Intel XE#3191]) -> [INCOMPLETE][475] ([Intel XE#1195]) +1 other test incomplete
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][476] ([Intel XE#512]) -> [SKIP][477] ([Intel XE#1130])
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_mmap@small-bar.html
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@xe_mmap@small-bar.html
* igt@xe_module_load@reload-no-display:
- shard-dg2-set2: [DMESG-WARN][478] ([Intel XE#3467]) -> [FAIL][479] ([Intel XE#2136])
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_module_load@reload-no-display.html
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: [SKIP][480] ([Intel XE#2541]) -> [SKIP][481] ([Intel XE#1130]) +13 other tests skip
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: [SKIP][482] ([Intel XE#1130]) -> [SKIP][483] ([Intel XE#2541]) +3 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: [SKIP][484] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][485] ([Intel XE#1130])
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: [SKIP][486] ([Intel XE#1130]) -> [SKIP][487] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_pm@d3cold-mmap-vram.html
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-464/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][488] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][489] ([Intel XE#1130]) +1 other test skip
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_pm@s2idle-d3cold-basic-exec.html
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-dg2-set2: [SKIP][490] ([Intel XE#1130]) -> [DMESG-WARN][491] ([Intel XE#3468])
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_pm@s2idle-vm-bind-prefetch.html
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-435/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [DMESG-WARN][492] ([Intel XE#569]) -> [SKIP][493] ([Intel XE#1130])
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@xe_pm@s3-basic-exec.html
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-dg2-set2: [DMESG-WARN][494] ([Intel XE#1727]) -> [SKIP][495] ([Intel XE#1130]) +1 other test skip
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@xe_pm@s4-d3hot-basic-exec.html
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][496] ([Intel XE#2280]) -> [SKIP][497] ([Intel XE#1130])
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_pm@s4-vm-bind-unbind-all.html
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: [SKIP][498] ([Intel XE#944]) -> [SKIP][499] ([Intel XE#1130]) +3 other tests skip
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_query@multigpu-query-engines.html
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-434/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: [SKIP][500] ([Intel XE#1130]) -> [SKIP][501] ([Intel XE#944]) +1 other test skip
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-435/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_wedged@basic-wedged:
- shard-dg2-set2: [SKIP][502] ([Intel XE#1130]) -> [DMESG-WARN][503] ([Intel XE#2919])
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_wedged@basic-wedged.html
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-433/igt@xe_wedged@basic-wedged.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [ABORT][504] ([Intel XE#3421]) -> [SKIP][505] ([Intel XE#1130])
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@xe_wedged@wedged-at-any-timeout.html
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/shard-dg2-466/igt@xe_wedged@wedged-at-any-timeout.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[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#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[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#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2667
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[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#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[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#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
[Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961
[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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3130
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191
[Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3312
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
[Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487
[Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
[Intel XE#3514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3514
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[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#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#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#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[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_8115 -> IGTPW_12123
* Linux: xe-2248-6abefc8e3bf638090d5277bc3e6fd02bb25579a4 -> xe-2249-1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6
IGTPW_12123: 7f829290af3d50661359a80e7c14627b92799770 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8115: 4942fc57c20f9cb2195e70991c4e4df03dd3db21 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2248-6abefc8e3bf638090d5277bc3e6fd02bb25579a4: 6abefc8e3bf638090d5277bc3e6fd02bb25579a4
xe-2249-1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6: 1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12123/index.html
[-- Attachment #2: Type: text/html, Size: 152843 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✓ CI.xeBAT: success for GPGPU fill improvements (rev3)
2024-11-14 12:06 [PATCH i-g-t 0/3] GPGPU fill improvements Zbigniew Kempczyński
` (9 preceding siblings ...)
2024-11-19 9:05 ` ✗ CI.xeFULL: " Patchwork
@ 2024-11-19 19:01 ` Patchwork
2024-11-19 19:17 ` ✓ Fi.CI.BAT: " Patchwork
2024-11-20 5:08 ` ✗ CI.xeFULL: failure " Patchwork
12 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2024-11-19 19:01 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2094 bytes --]
== Series Details ==
Series: GPGPU fill improvements (rev3)
URL : https://patchwork.freedesktop.org/series/141352/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8118_BAT -> XEIGTPW_12136_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12136_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3517])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-adlp-7: [PASS][3] -> [SKIP][4] ([Intel XE#3443] / [Intel XE#455]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-7/igt@kms_psr@psr-sprite-plane-onoff.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/bat-adlp-7/igt@kms_psr@psr-sprite-plane-onoff.html
[Intel XE#3443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3443
[Intel XE#3517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3517
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_8118 -> IGTPW_12136
* Linux: xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd -> xe-2253-c2bd638d71d621e6887e15ae2e7bf1571b9599de
IGTPW_12136: 12136
IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd
xe-2253-c2bd638d71d621e6887e15ae2e7bf1571b9599de: c2bd638d71d621e6887e15ae2e7bf1571b9599de
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/index.html
[-- Attachment #2: Type: text/html, Size: 2698 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✓ Fi.CI.BAT: success for GPGPU fill improvements (rev3)
2024-11-14 12:06 [PATCH i-g-t 0/3] GPGPU fill improvements Zbigniew Kempczyński
` (10 preceding siblings ...)
2024-11-19 19:01 ` ✓ CI.xeBAT: success for GPGPU fill improvements (rev3) Patchwork
@ 2024-11-19 19:17 ` Patchwork
2024-11-20 5:08 ` ✗ CI.xeFULL: failure " Patchwork
12 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2024-11-19 19:17 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5126 bytes --]
== Series Details ==
Series: GPGPU fill improvements (rev3)
URL : https://patchwork.freedesktop.org/series/141352/
State : success
== Summary ==
CI Bug Log - changes from IGT_8118 -> IGTPW_12136
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12136/index.html
Participating hosts (46 -> 45)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12136 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-arls-5: [PASS][1] -> [ABORT][2] ([i915#12829])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arls-5/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12136/bat-arls-5/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][3] -> [ABORT][4] ([i915#12061])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arls-5/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12136/bat-arls-5/igt@i915_selftest@live@workarounds.html
* igt@kms_chamelium_frames@dp-crc-fast:
- bat-dg2-13: [PASS][5] -> [FAIL][6] ([i915#12440])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12136/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html
#### Possible fixes ####
* igt@i915_module_load@load:
- bat-twl-2: [DMESG-WARN][7] ([i915#1982]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_module_load@load.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12136/bat-twl-2/igt@i915_module_load@load.html
* igt@i915_pm_rpm@module-reload:
- bat-dg2-11: [FAIL][9] -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12136/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
- bat-dg1-7: [FAIL][11] ([i915#12903]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12136/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@gt_mocs:
- bat-twl-2: [ABORT][13] ([i915#12919]) -> [PASS][14] +1 other test pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12136/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-apl-1: [DMESG-WARN][15] -> [PASS][16] +2 other tests pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12136/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_pipe_crc_basic@read-crc:
- bat-dg2-11: [SKIP][17] ([i915#9197]) -> [PASS][18] +1 other test pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12136/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc.html
#### Warnings ####
* igt@i915_selftest@live@workarounds:
- bat-mtlp-8: [ABORT][19] -> [ABORT][20] ([i915#12915])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12136/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12440]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12440
[i915#12829]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12829
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12915]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12915
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8118 -> IGTPW_12136
* Linux: CI_DRM_15720 -> CI_DRM_15721
CI-20190529: 20190529
CI_DRM_15720: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15721: c2bd638d71d621e6887e15ae2e7bf1571b9599de @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12136: 12136
IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12136/index.html
[-- Attachment #2: Type: text/html, Size: 5954 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ CI.xeFULL: failure for GPGPU fill improvements (rev3)
2024-11-14 12:06 [PATCH i-g-t 0/3] GPGPU fill improvements Zbigniew Kempczyński
` (11 preceding siblings ...)
2024-11-19 19:17 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-11-20 5:08 ` Patchwork
12 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2024-11-20 5:08 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 139873 bytes --]
== Series Details ==
Series: GPGPU fill improvements (rev3)
URL : https://patchwork.freedesktop.org/series/141352/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8118_full -> XEIGTPW_12136_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12136_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12136_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_12136_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][1] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x128:
- shard-bmg: [PASS][2] -> [INCOMPLETE][3] +5 other tests incomplete
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_cursor_crc@cursor-rapid-movement-128x128.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-1/igt@kms_cursor_crc@cursor-rapid-movement-128x128.html
* igt@kms_cursor_crc@cursor-sliding-256x256:
- shard-bmg: [PASS][4] -> [DMESG-FAIL][5] +19 other tests dmesg-fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x256.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-256x256.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: [PASS][6] -> [FAIL][7] +2 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_flip@2x-flip-vs-wf_vblank.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-4/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][8]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-6.html
* igt@kms_setmode@basic:
- shard-bmg: NOTRUN -> [DMESG-FAIL][9] +5 other tests dmesg-fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [FAIL][10] +3 other tests fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@kms_setmode@basic@pipe-a-hdmi-a-3.html
* igt@xe_exec_balancer@once-cm-virtual-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [DMESG-WARN][11] +9 other tests dmesg-warn
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@xe_exec_balancer@once-cm-virtual-userptr-invalidate-race.html
* igt@xe_exec_balancer@once-parallel-userptr:
- shard-dg2-set2: [PASS][12] -> [DMESG-WARN][13] +5 other tests dmesg-warn
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_exec_balancer@once-parallel-userptr.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@xe_exec_balancer@once-parallel-userptr.html
* igt@xe_spin_batch@spin-all:
- shard-bmg: [PASS][14] -> [DMESG-WARN][15] +78 other tests dmesg-warn
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_spin_batch@spin-all.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-1/igt@xe_spin_batch@spin-all.html
#### Warnings ####
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [SKIP][16] ([Intel XE#2136]) -> [DMESG-WARN][17]
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][18] ([Intel XE#3442]) -> [SKIP][19]
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][20] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][21]
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: [FAIL][22] ([Intel XE#2141]) -> [DMESG-FAIL][23] +2 other tests dmesg-fail
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-bmg: [INCOMPLETE][24] ([Intel XE#2597]) -> [ABORT][25]
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3:
- shard-bmg: [DMESG-FAIL][26] -> [ABORT][27]
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [FAIL][28] ([Intel XE#2333]) -> [DMESG-FAIL][29] +5 other tests dmesg-fail
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: [SKIP][30] ([Intel XE#3309]) -> [SKIP][31]
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2-set2: [SKIP][32] ([Intel XE#2136]) -> [FAIL][33]
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_lpsp@kms-lpsp.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2-set2: [SKIP][34] ([Intel XE#2446]) -> [DMESG-WARN][35]
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-dg2-set2: [SKIP][36] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][37] +1 other test dmesg-warn
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@xe_evict@evict-beng-threads-small:
- shard-dg2-set2: [SKIP][38] ([Intel XE#1130]) -> [DMESG-WARN][39] +5 other tests dmesg-warn
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_evict@evict-beng-threads-small.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@xe_evict@evict-beng-threads-small.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-bmg: [FAIL][40] ([Intel XE#2364]) -> [DMESG-FAIL][41]
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_evict@evict-large-multi-vm-cm.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-1/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [DMESG-WARN][42] ([Intel XE#3467]) -> [DMESG-WARN][43]
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_module_load@reload-no-display.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@xe_module_load@reload-no-display.html
New tests
---------
New tests have been introduced between XEIGT_8118_full and XEIGTPW_12136_full:
### New IGT tests (1) ###
* igt@xe_gpgpu_fill@offset-16x16:
- Statuses : 2 pass(s)
- Exec time: [0.00, 0.01] s
Known issues
------------
Here are the changes found in XEIGTPW_12136_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getclient:
- shard-dg2-set2: [PASS][44] -> [SKIP][45] ([Intel XE#2423])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@core_getclient.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@core_getclient.html
* igt@core_getversion@basic:
- shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#3440])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@core_getversion@basic.html
* igt@fbdev@read:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#2134])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@fbdev@read.html
* igt@fbdev@write:
- shard-dg2-set2: [PASS][48] -> [SKIP][49] ([Intel XE#2134])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@fbdev@write.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@fbdev@write.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#2550]) +23 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#3279])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1407])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-lnl: [PASS][53] -> [INCOMPLETE][54] ([Intel XE#3225] / [Intel XE#3466])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@linear-16bpp-rotate-180:
- shard-bmg: [PASS][55] -> [DMESG-FAIL][56] ([Intel XE#3468]) +12 other tests dmesg-fail
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_big_fb@linear-16bpp-rotate-180.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-180.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2327]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-4/igt@kms_big_fb@linear-32bpp-rotate-270.html
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#316]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-180:
- shard-dg2-set2: [PASS][59] -> [SKIP][60] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [PASS][61] -> [DMESG-FAIL][62] ([Intel XE#2705] / [Intel XE#3468])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#1124]) +7 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1124])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1124]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2191])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#367])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2314] / [Intel XE#2894])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#2191])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#367]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#787]) +104 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#2887]) +7 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2887]) +11 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#3433]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][77] -> [INCOMPLETE][78] ([Intel XE#1195]) +4 other tests incomplete
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#455] / [Intel XE#787]) +16 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_audio@dp-audio:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#373]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-1/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2252]) +5 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#373])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_content_protection@atomic-dpms:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#3278])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][84] ([Intel XE#1178])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#307])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [INCOMPLETE][86] ([Intel XE#2715]) +1 other test incomplete
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-5/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2320]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#2321])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-64x64:
- shard-dg2-set2: [PASS][89] -> [SKIP][90] ([Intel XE#2423] / [i915#2575]) +108 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-64x64.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-64x64.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1424]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2321])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#309]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: NOTRUN -> [DMESG-WARN][94] ([Intel XE#877])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#1508])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#1340])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#3070])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled:
- shard-bmg: NOTRUN -> [DMESG-WARN][98] ([Intel XE#2705])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html
* igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-4tiled:
- shard-bmg: NOTRUN -> [DMESG-FAIL][99] ([Intel XE#3468]) +2 other tests dmesg-fail
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-4tiled.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#2244]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2244])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-7/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#1138])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@kms_feature_discovery@display-4x.html
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#1138])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][104] -> [FAIL][105] ([Intel XE#301])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
- shard-bmg: [PASS][106] -> [FAIL][107] ([Intel XE#3487])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3:
- shard-bmg: [PASS][108] -> [FAIL][109] ([Intel XE#2882]) +1 other test fail
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1421]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-1/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: [PASS][111] -> [DMESG-WARN][112] ([Intel XE#3468]) +42 other tests dmesg-warn
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-4/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-WARN][113] ([Intel XE#3468]) +11 other tests dmesg-warn
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@absolute-wf_vblank:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2423] / [i915#2575]) +38 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_flip@absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1:
- shard-lnl: [PASS][115] -> [FAIL][116] ([Intel XE#886]) +5 other tests fail
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a3:
- shard-bmg: [PASS][117] -> [DMESG-WARN][118] ([Intel XE#1727])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-2/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@c-dp2:
- shard-bmg: [PASS][119] -> [DMESG-FAIL][120] ([Intel XE#1727]) +3 other tests dmesg-fail
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_flip@flip-vs-suspend@c-dp2.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-2/igt@kms_flip@flip-vs-suspend@c-dp2.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-lnl: [PASS][121] -> [FAIL][122] ([Intel XE#3149] / [Intel XE#886])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-1/igt@kms_flip@plain-flip-ts-check-interruptible.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-7/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1:
- shard-lnl: [PASS][123] -> [FAIL][124] ([Intel XE#3397])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-1/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-7/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-bmg: NOTRUN -> [INCOMPLETE][125] ([Intel XE#3468]) +1 other test incomplete
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#455]) +3 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1397] / [Intel XE#1745])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1397])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2380]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#2136]) +31 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#1401]) +2 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2293]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#651]) +8 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [PASS][136] -> [SKIP][137] ([Intel XE#2136]) +31 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [FAIL][138] ([Intel XE#2333]) +6 other tests fail
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2311]) +18 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#651]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#656]) +19 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#658])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2352])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2313]) +16 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#653]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_hdr@static-toggle-dpms:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1503])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-8/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#2763]) +11 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2763]) +9 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- shard-lnl: NOTRUN -> [DMESG-WARN][149] ([Intel XE#2566] / [Intel XE#3466])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#2763]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#2763] / [Intel XE#455])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2446])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2-set2: [PASS][153] -> [SKIP][154] ([Intel XE#2446]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@dpms-non-lpsp.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_pm_rpm@dpms-non-lpsp.html
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#1439] / [Intel XE#3141])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-4/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#1489]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#2893]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#1489]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2387]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-7/igt@kms_psr2_su@page_flip-p010.html
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#1128])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#2136] / [Intel XE#2351]) +19 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#1406]) +4 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-6/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-7/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#3414]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@kms_rotation_crc@bad-pixel-format.html
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#3414])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@kms_rotation_crc@bad-pixel-format.html
- shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#3414]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-5/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2330])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#1499])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-2/igt@kms_vrr@flip-basic.html
* igt@kms_writeback@writeback-fb-id:
- shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#756]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-4/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#756])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-2/igt@kms_writeback@writeback-pixel-formats.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#1280] / [Intel XE#455])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_copy_basic@mem-copy-linear-0xfd:
- shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#1123])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0xfd.html
* igt@xe_eudebug@basic-close:
- shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#2905]) +5 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-3/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#2905]) +5 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_online@resume-one:
- shard-dg2-set2: NOTRUN -> [SKIP][176] ([Intel XE#2905]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@xe_eudebug_online@resume-one.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-bmg: NOTRUN -> [TIMEOUT][177] ([Intel XE#1473])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#688]) +5 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-8/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
* igt@xe_exec_balancer@once-parallel-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][179] ([Intel XE#1130]) +63 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@xe_exec_balancer@once-parallel-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#2322]) +8 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#1392]) +4 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-3/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html
* igt@xe_exec_basic@once-userptr-invalidate-race:
- shard-dg2-set2: [PASS][182] -> [SKIP][183] ([Intel XE#1130]) +192 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_basic@once-userptr-invalidate-race.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@xe_exec_basic@once-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-bindexecqueue:
- shard-lnl: NOTRUN -> [DMESG-FAIL][184] ([Intel XE#3466])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-7/igt@xe_exec_fault_mode@many-bindexecqueue.html
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-race:
- shard-lnl: [PASS][185] -> [DMESG-FAIL][186] ([Intel XE#3466])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-1/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-race.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-7/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-invalid-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][187] ([Intel XE#288]) +4 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@xe_exec_fault_mode@twice-invalid-fault.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-bmg: [PASS][188] -> [SKIP][189] ([Intel XE#1192]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_live_ktest@xe_dma_buf.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][190] ([Intel XE#1999]) +1 other test fail
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_module_load@force-load:
- shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#2457])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-2/igt@xe_module_load@force-load.html
- shard-dg2-set2: NOTRUN -> [SKIP][192] ([Intel XE#378])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@xe_module_load@force-load.html
* igt@xe_module_load@many-reload:
- shard-bmg: [PASS][193] -> [DMESG-WARN][194] ([Intel XE#3467]) +2 other tests dmesg-warn
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_module_load@many-reload.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-1/igt@xe_module_load@many-reload.html
* igt@xe_module_load@unload:
- shard-dg2-set2: [PASS][195] -> [DMESG-WARN][196] ([Intel XE#3467])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_module_load@unload.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@xe_module_load@unload.html
* igt@xe_oa@invalid-remove-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][197] ([Intel XE#2541])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@xe_oa@invalid-remove-userspace-config.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-lnl: [PASS][198] -> [FAIL][199] ([Intel XE#2514]) +1 other test fail
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-8/igt@xe_oa@oa-regs-whitelisted.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-8/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_oa@oa-regs-whitelisted@rcs-0:
- shard-bmg: [PASS][200] -> [FAIL][201] ([Intel XE#2514]) +1 other test fail
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][202] ([Intel XE#2248])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][203] ([Intel XE#1173])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-mmap-system:
- shard-lnl: NOTRUN -> [SKIP][204] ([Intel XE#2284] / [Intel XE#366])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-5/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][205] ([Intel XE#2284] / [Intel XE#366])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@xe_pm@d3cold-mmap-vram.html
- shard-bmg: NOTRUN -> [SKIP][206] ([Intel XE#2284])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-bmg: [PASS][207] -> [DMESG-WARN][208] ([Intel XE#569])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_pm@s3-vm-bind-prefetch.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-bmg: [PASS][209] -> [DMESG-WARN][210] ([Intel XE#3426] / [Intel XE#569])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@xe_pm@s3-vm-bind-userptr.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-bmg: [PASS][211] -> [DMESG-WARN][212] ([Intel XE#2280])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_pm@s4-vm-bind-userptr.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_pm_residency@cpg-basic:
- shard-lnl: NOTRUN -> [SKIP][213] ([Intel XE#584])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-8/igt@xe_pm_residency@cpg-basic.html
* igt@xe_pm_residency@gt-c6-freeze:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][214] ([Intel XE#1727] / [Intel XE#3088])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@xe_pm_residency@gt-c6-freeze.html
* igt@xe_pm_residency@gt-c6-freeze@gt0:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][215] ([Intel XE#3088] / [Intel XE#3468])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@xe_pm_residency@gt-c6-freeze@gt0.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][216] ([Intel XE#944]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-lnl: NOTRUN -> [SKIP][217] ([Intel XE#3342])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-3/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_tlb@basic-tlb:
- shard-bmg: [PASS][218] -> [CRASH][219] ([Intel XE#3212])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_tlb@basic-tlb.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@xe_tlb@basic-tlb.html
* igt@xe_vm@large-binds-2147483648:
- shard-lnl: [PASS][220] -> [DMESG-WARN][221] ([Intel XE#3466]) +9 other tests dmesg-warn
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-8/igt@xe_vm@large-binds-2147483648.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-7/igt@xe_vm@large-binds-2147483648.html
* igt@xe_wedged@basic-wedged:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][222] ([Intel XE#2919])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@xe_wedged@basic-wedged.html
- shard-bmg: NOTRUN -> [DMESG-WARN][223] ([Intel XE#2919])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@xe_wedged@basic-wedged.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-lnl: NOTRUN -> [DMESG-WARN][224] ([Intel XE#3466]) +3 other tests dmesg-warn
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-6/igt@xe_wedged@wedged-mode-toggle.html
#### Possible fixes ####
* igt@core_getstats:
- shard-dg2-set2: [SKIP][225] ([Intel XE#2423]) -> [PASS][226] +1 other test pass
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@core_getstats.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@core_getstats.html
* igt@core_hotunplug@hotreplug:
- shard-bmg: [DMESG-WARN][227] ([Intel XE#3521]) -> [PASS][228]
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@core_hotunplug@hotreplug.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@core_hotunplug@hotreplug.html
* igt@core_hotunplug@hotunplug-rescan:
- shard-dg2-set2: [SKIP][229] ([Intel XE#1885]) -> [PASS][230] +1 other test pass
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@core_hotunplug@hotunplug-rescan.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@core_hotunplug@hotunplug-rescan.html
* igt@core_setmaster@master-drop-set-shared-fd:
- shard-dg2-set2: [SKIP][231] ([Intel XE#3453]) -> [PASS][232]
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@core_setmaster@master-drop-set-shared-fd.html
* igt@core_setmaster@master-drop-set-user:
- shard-dg2-set2: [FAIL][233] ([Intel XE#3339]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@core_setmaster@master-drop-set-user.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@core_setmaster@master-drop-set-user.html
* igt@fbdev@nullptr:
- shard-dg2-set2: [SKIP][235] ([Intel XE#2134]) -> [PASS][236] +2 other tests pass
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@fbdev@nullptr.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@fbdev@nullptr.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-dg2-set2: [SKIP][237] ([Intel XE#2423] / [i915#2575]) -> [PASS][238] +109 other tests pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: [INCOMPLETE][239] ([Intel XE#2613]) -> [PASS][240]
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: [DMESG-FAIL][241] -> [PASS][242] +10 other tests pass
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-8bpp-rotate-180:
- shard-lnl: [INCOMPLETE][243] ([Intel XE#3466]) -> [PASS][244] +1 other test pass
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-180.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-2/igt@kms_big_fb@linear-8bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-bmg: [DMESG-WARN][245] ([Intel XE#2705]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-dp-2:
- shard-bmg: [DMESG-FAIL][247] ([Intel XE#3468]) -> [PASS][248] +5 other tests pass
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-dp-2.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-1/igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-dp-2.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [FAIL][249] ([Intel XE#2882]) -> [PASS][250]
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][251] ([Intel XE#3321] / [Intel XE#3486]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
- shard-bmg: [DMESG-WARN][253] ([Intel XE#3468]) -> [PASS][254] +60 other tests pass
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@c-dp4:
- shard-dg2-set2: [FAIL][255] ([Intel XE#301] / [Intel XE#3487]) -> [PASS][256] +1 other test pass
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6:
- shard-dg2-set2: [FAIL][257] ([Intel XE#301]) -> [PASS][258]
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6.html
* igt@kms_flip@flip-vs-panning-interruptible:
- shard-bmg: [DMESG-WARN][259] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@flip-vs-panning-interruptible.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-7/igt@kms_flip@flip-vs-panning-interruptible.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-lnl: [FAIL][261] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip@wf_vblank-ts-check@c-edp1:
- shard-lnl: [FAIL][263] ([Intel XE#886]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@c-edp1.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode:
- shard-bmg: [INCOMPLETE][265] ([Intel XE#1727]) -> [PASS][266] +1 other test pass
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][267] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][268] +17 other tests pass
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][269] ([Intel XE#2136]) -> [PASS][270] +23 other tests pass
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][271] ([Intel XE#1503]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_cursor@primary:
- shard-lnl: [DMESG-WARN][273] ([Intel XE#3466]) -> [PASS][274] +39 other tests pass
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_plane_cursor@primary.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-4/igt@kms_plane_cursor@primary.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][275] ([Intel XE#718]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@basic-rte:
- shard-dg2-set2: [ABORT][277] -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_pm_rpm@basic-rte.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_pm_rpm@basic-rte.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-bmg: [INCOMPLETE][279] ([Intel XE#2864]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-dg2-set2: [DMESG-WARN][281] ([Intel XE#2042]) -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@universal-planes-dpms.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_pm_rpm@universal-planes-dpms@plane-41:
- shard-dg2-set2: [DMESG-WARN][283] -> [PASS][284] +8 other tests pass
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html
* igt@kms_psr@psr2-sprite-render:
- shard-lnl: [FAIL][285] -> [PASS][286] +1 other test pass
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_psr@psr2-sprite-render.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-2/igt@kms_psr@psr2-sprite-render.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][287] ([Intel XE#2883]) -> [PASS][288] +2 other tests pass
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-6/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vblank@query-busy:
- shard-bmg: [INCOMPLETE][289] -> [PASS][290] +4 other tests pass
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_vblank@query-busy.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-5/igt@kms_vblank@query-busy.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-dp-2:
- shard-bmg: [DMESG-WARN][291] ([Intel XE#1727]) -> [PASS][292] +4 other tests pass
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-dp-2.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-dp-2.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: [FAIL][293] ([Intel XE#1600]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
- shard-dg2-set2: [SKIP][295] ([Intel XE#1130]) -> [PASS][296] +178 other tests pass
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch:
- shard-lnl: [DMESG-FAIL][297] ([Intel XE#3466]) -> [PASS][298] +5 other tests pass
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-lnl-8/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-bmg: [DMESG-WARN][299] ([Intel XE#3467]) -> [PASS][300] +3 other tests pass
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
* igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
- shard-dg2-set2: [DMESG-WARN][301] ([Intel XE#3467]) -> [PASS][302] +1 other test pass
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][303] ([Intel XE#2136]) -> [PASS][304] +1 other test pass
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_module_load@reload.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@xe_module_load@reload.html
* igt@xe_pm@s3-multiple-execs:
- shard-bmg: [DMESG-WARN][305] ([Intel XE#569]) -> [PASS][306] +1 other test pass
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_pm@s3-multiple-execs.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@xe_pm@s3-multiple-execs.html
* igt@xe_vm@large-split-binds-2147483648:
- shard-bmg: [DMESG-WARN][307] -> [PASS][308] +70 other tests pass
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_vm@large-split-binds-2147483648.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-2/igt@xe_vm@large-split-binds-2147483648.html
#### Warnings ####
* igt@core_hotunplug@hotunbind-rebind:
- shard-dg2-set2: [DMESG-WARN][309] ([Intel XE#3521]) -> [SKIP][310] ([Intel XE#1885])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@core_hotunplug@hotunbind-rebind.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@core_hotunplug@hotunbind-rebind.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-set2: [SKIP][311] ([Intel XE#2423] / [i915#2575]) -> [SKIP][312] ([Intel XE#873])
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_async_flips@invalid-async-flip.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][313] ([Intel XE#316]) -> [SKIP][314] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][315] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][316] ([Intel XE#316])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][317] ([Intel XE#2136]) -> [SKIP][318] ([Intel XE#316]) +2 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][319] ([Intel XE#316]) -> [SKIP][320] ([Intel XE#2136]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-bmg: [DMESG-WARN][321] ([Intel XE#3468]) -> [DMESG-FAIL][322] ([Intel XE#3468])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][323] ([Intel XE#2136]) -> [SKIP][324] ([Intel XE#1124]) +7 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][325] ([Intel XE#1124]) -> [SKIP][326] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][327] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][328] ([Intel XE#619])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][329] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][330] ([Intel XE#607])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][331] ([Intel XE#1124]) -> [SKIP][332] ([Intel XE#2136]) +10 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][333] ([Intel XE#2136]) -> [SKIP][334] ([Intel XE#610])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][335] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][336] ([Intel XE#1124]) +3 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: [SKIP][337] ([Intel XE#367]) -> [SKIP][338] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][339] ([Intel XE#2191]) -> [SKIP][340] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: [SKIP][341] ([Intel XE#2423] / [i915#2575]) -> [SKIP][342] ([Intel XE#367]) +3 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][343] ([Intel XE#2136]) -> [SKIP][344] ([Intel XE#455] / [Intel XE#787]) +8 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][345] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][346] ([Intel XE#2136]) +11 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc:
- shard-dg2-set2: [SKIP][347] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][348] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][349] -> [SKIP][350] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [FAIL][351] ([Intel XE#616]) -> [SKIP][352] ([Intel XE#2136])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][353] ([Intel XE#2907]) -> [SKIP][354] ([Intel XE#2136]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-dg2-set2: [SKIP][355] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][356] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][357] ([Intel XE#2136]) -> [SKIP][358] ([Intel XE#2907]) +2 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][359] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][360] ([Intel XE#314])
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2-set2: [SKIP][361] ([Intel XE#306]) -> [SKIP][362] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_chamelium_color@ctm-0-50.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][363] ([Intel XE#2423] / [i915#2575]) -> [SKIP][364] ([Intel XE#306]) +2 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_chamelium_color@gamma.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: [SKIP][365] ([Intel XE#373]) -> [SKIP][366] ([Intel XE#2423] / [i915#2575]) +12 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][367] ([Intel XE#2423] / [i915#2575]) -> [SKIP][368] ([Intel XE#373]) +13 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_color@invalid-degamma-lut-sizes:
- shard-dg2-set2: [DMESG-WARN][369] -> [SKIP][370] ([Intel XE#2423] / [i915#2575])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_color@invalid-degamma-lut-sizes.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_color@invalid-degamma-lut-sizes.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [SKIP][371] ([Intel XE#2423] / [i915#2575]) -> [FAIL][372] ([Intel XE#1178])
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: [SKIP][373] ([Intel XE#307]) -> [SKIP][374] ([Intel XE#2423] / [i915#2575])
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: [SKIP][375] ([Intel XE#2423] / [i915#2575]) -> [SKIP][376] ([Intel XE#308])
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: [SKIP][377] ([Intel XE#308]) -> [SKIP][378] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2-set2: [SKIP][379] ([Intel XE#2423] / [i915#2575]) -> [SKIP][380] ([Intel XE#455]) +12 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-max-size.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-dg2-set2: [INCOMPLETE][381] ([Intel XE#1195] / [Intel XE#3226]) -> [SKIP][382] ([Intel XE#2423] / [i915#2575])
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-dg2-set2: [FAIL][383] ([Intel XE#1475]) -> [SKIP][384] ([Intel XE#2423] / [i915#2575])
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2-set2: [SKIP][385] ([Intel XE#2423] / [i915#2575]) -> [SKIP][386] ([Intel XE#307])
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_display_modes@mst-extended-mode-negative.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-basic:
- shard-dg2-set2: [SKIP][387] ([Intel XE#455]) -> [SKIP][388] ([Intel XE#2351])
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_dsc@dsc-basic.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: [SKIP][389] ([Intel XE#2136]) -> [SKIP][390] ([Intel XE#455]) +2 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: [DMESG-FAIL][391] -> [FAIL][392] ([Intel XE#1695])
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-7/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][393] ([Intel XE#776]) -> [SKIP][394] ([Intel XE#2136]) +1 other test skip
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: [SKIP][395] ([Intel XE#2423] / [i915#2575]) -> [SKIP][396] ([Intel XE#701])
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_feature_discovery@chamelium.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][397] ([Intel XE#2423] / [i915#2575]) -> [SKIP][398] ([Intel XE#1135])
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_feature_discovery@psr1.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-dg2-set2: [FAIL][399] ([Intel XE#301]) -> [SKIP][400] ([Intel XE#2423] / [i915#2575])
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-dp2:
- shard-bmg: [DMESG-FAIL][401] ([Intel XE#3468]) -> [FAIL][402] ([Intel XE#2882]) +1 other test fail
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-dp2.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-2/igt@kms_flip@flip-vs-blocking-wf-vblank@a-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6:
- shard-dg2-set2: [DMESG-FAIL][403] -> [FAIL][404] ([Intel XE#301]) +1 other test fail
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-dg2-set2: [INCOMPLETE][405] ([Intel XE#1195] / [Intel XE#1727]) -> [SKIP][406] ([Intel XE#2136])
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-dg2-set2: [SKIP][407] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][408] ([Intel XE#455]) +2 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2-set2: [SKIP][409] ([Intel XE#455]) -> [SKIP][410] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2-set2: [SKIP][411] ([Intel XE#455]) -> [SKIP][412] ([Intel XE#2136]) +2 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: [SKIP][413] ([i915#5274]) -> [SKIP][414] ([Intel XE#2423] / [i915#2575])
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_force_connector_basic@prune-stale-modes.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][415] ([Intel XE#651]) -> [SKIP][416] ([Intel XE#2136] / [Intel XE#2351]) +19 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: [SKIP][417] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][418] ([Intel XE#651]) +11 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [DMESG-FAIL][419] -> [FAIL][420] ([Intel XE#2333]) +4 other tests fail
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-dg2-set2: [INCOMPLETE][421] ([Intel XE#1195]) -> [SKIP][422] ([Intel XE#2136])
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
- shard-bmg: [INCOMPLETE][423] -> [FAIL][424] ([Intel XE#2333])
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [FAIL][425] ([Intel XE#2333]) -> [DMESG-FAIL][426] ([Intel XE#3468]) +4 other tests dmesg-fail
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-dg2-set2: [INCOMPLETE][427] ([Intel XE#1195] / [Intel XE#3468]) -> [SKIP][428] ([Intel XE#2136])
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-bmg: [DMESG-FAIL][429] ([Intel XE#3468]) -> [FAIL][430] ([Intel XE#2333]) +5 other tests fail
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: [SKIP][431] ([Intel XE#658]) -> [SKIP][432] ([Intel XE#2136] / [Intel XE#2351])
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][433] ([Intel XE#651]) -> [SKIP][434] ([Intel XE#2136]) +25 other tests skip
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: [SKIP][435] ([Intel XE#2136]) -> [SKIP][436] ([Intel XE#651]) +33 other tests skip
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: [SKIP][437] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][438] ([Intel XE#653]) +11 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][439] ([Intel XE#653]) -> [SKIP][440] ([Intel XE#2136]) +23 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][441] ([Intel XE#2136]) -> [SKIP][442] ([Intel XE#653]) +25 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][443] ([Intel XE#653]) -> [SKIP][444] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: [SKIP][445] ([Intel XE#605]) -> [SKIP][446] ([Intel XE#2423] / [i915#2575])
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_getfb@getfb-reject-ccs.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: [SKIP][447] ([Intel XE#2136]) -> [SKIP][448] ([Intel XE#346]) +1 other test skip
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: [SKIP][449] ([Intel XE#2136]) -> [SKIP][450] ([Intel XE#2925])
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: [SKIP][451] ([Intel XE#2925]) -> [SKIP][452] ([Intel XE#2136])
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: [SKIP][453] ([Intel XE#2136]) -> [SKIP][454] ([Intel XE#2927])
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane_cursor@primary:
- shard-dg2-set2: [FAIL][455] ([Intel XE#616]) -> [SKIP][456] ([Intel XE#2423] / [i915#2575])
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_plane_cursor@primary.html
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_plane_cursor@primary.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][457] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][458] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][459] ([Intel XE#2423] / [i915#2575]) -> [SKIP][460] ([Intel XE#2763] / [Intel XE#455])
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2-set2: [SKIP][461] ([Intel XE#2136]) -> [SKIP][462] ([Intel XE#870])
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_backlight@basic-brightness.html
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: [SKIP][463] ([Intel XE#870]) -> [SKIP][464] ([Intel XE#2136]) +1 other test skip
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_pm_backlight@fade.html
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][465] ([Intel XE#2136]) -> [SKIP][466] ([Intel XE#908])
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-dg2-set2: [SKIP][467] ([Intel XE#2446]) -> [DMESG-FAIL][468] ([Intel XE#3468])
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_rpm@drm-resources-equal.html
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2-set2: [ABORT][469] -> [SKIP][470] ([Intel XE#2446])
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_pm_rpm@modeset-lpsp.html
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-dg2-set2: [ABORT][471] -> [INCOMPLETE][472] ([Intel XE#1195] / [Intel XE#2864])
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: [SKIP][473] ([Intel XE#1489]) -> [SKIP][474] ([Intel XE#2136]) +12 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][475] ([Intel XE#2136]) -> [SKIP][476] ([Intel XE#1489]) +11 other tests skip
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-set2: [SKIP][477] ([Intel XE#1122]) -> [SKIP][478] ([Intel XE#2136])
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_psr2_su@page_flip-p010.html
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][479] ([Intel XE#2136]) -> [SKIP][480] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: [SKIP][481] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][482] ([Intel XE#2136]) +11 other tests skip
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_psr@pr-sprite-blt.html
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][483] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][484] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_psr@psr-dpms.html
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr-primary-page-flip:
- shard-dg2-set2: [SKIP][485] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][486] ([Intel XE#2351])
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_psr@psr-primary-page-flip.html
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr-sprite-blt:
- shard-dg2-set2: [SKIP][487] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][488] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr@psr-sprite-blt.html
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@kms_psr@psr-sprite-blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: [SKIP][489] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][490] ([Intel XE#2939])
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: [SKIP][491] ([Intel XE#2423] / [i915#2575]) -> [SKIP][492] ([Intel XE#3414]) +4 other tests skip
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_rotation_crc@bad-tiling.html
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-set2: [SKIP][493] ([Intel XE#3414]) -> [SKIP][494] ([Intel XE#2423] / [i915#2575])
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_rotation_crc@primary-rotation-90.html
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][495] ([Intel XE#2423] / [i915#2575]) -> [SKIP][496] ([Intel XE#1127])
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][497] ([Intel XE#1127]) -> [SKIP][498] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: [SKIP][499] ([Intel XE#455]) -> [SKIP][500] ([Intel XE#2423] / [i915#2575]) +9 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_vrr@flip-dpms.html
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: [SKIP][501] ([Intel XE#2423] / [i915#2575]) -> [SKIP][502] ([Intel XE#2168])
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_vrr@lobf.html
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2-set2: [SKIP][503] ([Intel XE#756]) -> [SKIP][504] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_writeback@writeback-pixel-formats.html
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@kms_writeback@writeback-pixel-formats.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][505] ([Intel XE#2423] / [i915#2575]) -> [SKIP][506] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: [SKIP][507] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][508] ([Intel XE#1130]) +1 other test skip
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_compute_preempt@compute-threadgroup-preempt:
- shard-dg2-set2: [SKIP][509] ([Intel XE#1130]) -> [SKIP][510] ([Intel XE#1280] / [Intel XE#455])
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_compute_preempt@compute-threadgroup-preempt.html
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@xe_compute_preempt@compute-threadgroup-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: [SKIP][511] ([Intel XE#1130]) -> [SKIP][512] ([Intel XE#1123])
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: [SKIP][513] ([Intel XE#1130]) -> [SKIP][514] ([Intel XE#1126])
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: [SKIP][515] ([Intel XE#1126]) -> [SKIP][516] ([Intel XE#1130])
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfffe.html
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: [SKIP][517] ([Intel XE#1130]) -> [SKIP][518] ([Intel XE#2905]) +10 other tests skip
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_eudebug_online@resume-dss:
- shard-dg2-set2: [SKIP][519] ([Intel XE#2905]) -> [SKIP][520] ([Intel XE#1130]) +12 other tests skip
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_eudebug_online@resume-dss.html
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@xe_eudebug_online@resume-dss.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [SKIP][521] ([Intel XE#1130]) -> [TIMEOUT][522] ([Intel XE#1473] / [Intel XE#402])
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-bmg: [TIMEOUT][523] ([Intel XE#1473]) -> [INCOMPLETE][524] ([Intel XE#1473])
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-large.html
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-large.html
- shard-dg2-set2: [TIMEOUT][525] ([Intel XE#1473]) -> [SKIP][526] ([Intel XE#1130])
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-dg2-set2: [INCOMPLETE][527] ([Intel XE#1195]) -> [SKIP][528] ([Intel XE#1130])
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm:
- shard-dg2-set2: [SKIP][529] ([Intel XE#1130]) -> [SKIP][530] ([Intel XE#288]) +35 other tests skip
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: [SKIP][531] ([Intel XE#288]) -> [SKIP][532] ([Intel XE#1130]) +36 other tests skip
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: [SKIP][533] ([Intel XE#1130]) -> [SKIP][534] ([Intel XE#2360]) +2 other tests skip
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_device_create:
- shard-dg2-set2: [DMESG-WARN][535] ([Intel XE#3467]) -> [SKIP][536] ([Intel XE#1130]) +2 other tests skip
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
- shard-dg2-set2: [DMESG-WARN][537] ([Intel XE#3343]) -> [SKIP][538] ([Intel XE#1130]) +1 other test skip
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-dg2-set2: [SKIP][539] ([Intel XE#1130]) -> [DMESG-WARN][540] ([Intel XE#3343])
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-dg2-set2: [SKIP][541] ([Intel XE#1130]) -> [DMESG-WARN][542] ([Intel XE#3467]) +1 other test dmesg-warn
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: [FAIL][543] ([Intel XE#3499]) -> [DMESG-FAIL][544] ([Intel XE#3467])
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-bmg: [DMESG-FAIL][545] ([Intel XE#3467]) -> [FAIL][546] ([Intel XE#3499])
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [TIMEOUT][547] ([Intel XE#2961] / [Intel XE#3191]) -> [SKIP][548] ([Intel XE#1192])
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_live_ktest@xe_bo.html
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-464/igt@xe_live_ktest@xe_bo.html
- shard-bmg: [INCOMPLETE][549] ([Intel XE#2998]) -> [SKIP][550] ([Intel XE#1192])
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_live_ktest@xe_bo.html
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-6/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_mocs:
- shard-dg2-set2: [SKIP][551] ([Intel XE#1192]) -> [FAIL][552] ([Intel XE#1999])
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@xe_live_ktest@xe_mocs.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: [SKIP][553] ([Intel XE#1130]) -> [SKIP][554] ([Intel XE#560])
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_media_fill@media-fill.html
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][555] ([Intel XE#1130]) -> [SKIP][556] ([Intel XE#512])
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_mmap@small-bar.html
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@xe_mmap@small-bar.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-dg2-set2: [SKIP][557] ([Intel XE#1130]) -> [SKIP][558] ([Intel XE#2541]) +7 other tests skip
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_oa@oa-regs-whitelisted.html
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: [SKIP][559] ([Intel XE#2541]) -> [SKIP][560] ([Intel XE#1130]) +10 other tests skip
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][561] ([Intel XE#1130]) -> [SKIP][562] ([Intel XE#979])
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [SKIP][563] ([Intel XE#1061]) -> [FAIL][564] ([Intel XE#1173])
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_peer2peer@read.html
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@xe_peer2peer@read.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [FAIL][565] ([Intel XE#1173]) -> [SKIP][566] ([Intel XE#1061])
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_peer2peer@write.html
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: [SKIP][567] ([Intel XE#2284]) -> [SKIP][568] ([Intel XE#1130])
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_pm@d3cold-mocs.html
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-dg2-set2: [SKIP][569] ([Intel XE#1130]) -> [DMESG-WARN][570] ([Intel XE#3468])
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_pm@d3hot-mmap-vram.html
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][571] ([Intel XE#1130]) -> [SKIP][572] ([Intel XE#2284] / [Intel XE#366])
[571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_pm@s2idle-d3cold-basic-exec.html
[572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-bmg: [DMESG-FAIL][573] ([Intel XE#3468]) -> [DMESG-WARN][574] ([Intel XE#1616] / [Intel XE#3468])
[573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-prefetch.html
[574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-bmg-5/igt@xe_pm@s2idle-vm-bind-prefetch.html
- shard-dg2-set2: [DMESG-FAIL][575] ([Intel XE#3468]) -> [DMESG-WARN][576] ([Intel XE#3468])
[575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s2idle-vm-bind-prefetch.html
[576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-435/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [DMESG-WARN][577] ([Intel XE#569]) -> [SKIP][578] ([Intel XE#1130]) +1 other test skip
[577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s3-basic-exec.html
[578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-dg2-set2: [SKIP][579] ([Intel XE#1130]) -> [DMESG-WARN][580] ([Intel XE#569])
[579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_pm@s3-vm-bind-prefetch.html
[580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-436/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: [SKIP][581] ([Intel XE#944]) -> [SKIP][582] ([Intel XE#1130]) +4 other tests skip
[581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@xe_query@multigpu-query-oa-units.html
[582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: [SKIP][583] ([Intel XE#1130]) -> [SKIP][584] ([Intel XE#944]) +4 other tests skip
[583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-433/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: [SKIP][585] ([Intel XE#1130]) -> [SKIP][586] ([Intel XE#3342])
[585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_sriov_flr@flr-each-isolation.html
[586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-463/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: [SKIP][587] ([Intel XE#3342]) -> [SKIP][588] ([Intel XE#1130])
[587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_sriov_flr@flr-vf1-clear.html
[588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer:
- shard-dg2-set2: [DMESG-WARN][589] -> [SKIP][590] ([Intel XE#1130]) +2 other tests skip
[589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html
[590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-466/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-dg2-set2: [ABORT][591] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][592] ([Intel XE#1130])
[591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_wedged@wedged-mode-toggle.html
[592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/shard-dg2-434/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#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[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#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[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#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[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#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[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#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[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#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[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#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[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#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191
[Intel XE#3212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3212
[Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[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#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3397
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3426
[Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[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#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
[Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487
[Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
[Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#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#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#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
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_8118 -> IGTPW_12136
* Linux: xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd -> xe-2253-c2bd638d71d621e6887e15ae2e7bf1571b9599de
IGTPW_12136: 12136
IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd
xe-2253-c2bd638d71d621e6887e15ae2e7bf1571b9599de: c2bd638d71d621e6887e15ae2e7bf1571b9599de
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12136/index.html
[-- Attachment #2: Type: text/html, Size: 176512 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2024-11-20 5:08 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-14 12:06 [PATCH i-g-t 0/3] GPGPU fill improvements Zbigniew Kempczyński
2024-11-14 12:06 ` [PATCH i-g-t 1/3] tests/xe_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
2024-11-14 13:33 ` Grzegorzek, Dominik
2024-11-14 12:06 ` [PATCH i-g-t 2/3] tests/xe_gpgpu_fill: Add width/height/x/y command line args Zbigniew Kempczyński
2024-11-14 13:36 ` Grzegorzek, Dominik
2024-11-14 12:06 ` [PATCH i-g-t 3/3] tests/xe_gpgpu_fill: Add offset-16x16 subtest Zbigniew Kempczyński
2024-11-14 13:37 ` Grzegorzek, Dominik
2024-11-14 14:05 ` ✗ Fi.CI.BAT: failure for GPGPU fill improvements Patchwork
2024-11-14 16:12 ` Zbigniew Kempczyński
2024-11-14 14:13 ` ✓ CI.xeBAT: success " Patchwork
2024-11-15 2:35 ` ✗ CI.xeFULL: failure " Patchwork
2024-11-18 22:17 ` ✗ GitLab.Pipeline: warning for GPGPU fill improvements (rev2) Patchwork
2024-11-18 22:41 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-11-18 23:00 ` ✗ CI.xeBAT: " Patchwork
2024-11-19 9:05 ` ✗ CI.xeFULL: " Patchwork
2024-11-19 19:01 ` ✓ CI.xeBAT: success for GPGPU fill improvements (rev3) Patchwork
2024-11-19 19:17 ` ✓ Fi.CI.BAT: " Patchwork
2024-11-20 5:08 ` ✗ CI.xeFULL: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox