* [PATCH i-g-t v7 0/6] GPGPU fill improvements
@ 2024-11-25 8:22 Zbigniew Kempczyński
2024-11-25 8:22 ` [PATCH i-g-t v7 1/6] tests/xe_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
` (13 more replies)
0 siblings, 14 replies; 16+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-25 8:22 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Dominik Grzegorzek
Series adds some improvements helpful for adding implementation for
new platforms.
v4 (v2-v3 were retests) - add gem_gpgpu_fill@offset-16x16 + some addons
v6 (v5 was retest) - retrieve incidentally removed fixture part (Dominik)
v7 - fix x/y/width/height usage (catched by CI)
Cc: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Zbigniew Kempczyński (6):
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/gem_gpgpu_fill: Add command line switch to dump the surface
tests/gem_gpgpu_fill: Add width/height/x/y command line args
tests/gem_gpgpu_fill: Add offset-16x16 subtest
tests/intel/gem_gpgpu_fill.c | 107 +++++++++++++++++++++++++++++------
tests/intel/xe_gpgpu_fill.c | 107 +++++++++++++++++++++++++++++------
2 files changed, 182 insertions(+), 32 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH i-g-t v7 1/6] tests/xe_gpgpu_fill: Add command line switch to dump the surface
2024-11-25 8:22 [PATCH i-g-t v7 0/6] GPGPU fill improvements Zbigniew Kempczyński
@ 2024-11-25 8:22 ` Zbigniew Kempczyński
2024-11-25 8:22 ` [PATCH i-g-t v7 2/6] tests/xe_gpgpu_fill: Add width/height/x/y command line args Zbigniew Kempczyński
` (12 subsequent siblings)
13 siblings, 0 replies; 16+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-25 8:22 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>
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++)
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] 16+ messages in thread
* [PATCH i-g-t v7 2/6] tests/xe_gpgpu_fill: Add width/height/x/y command line args
2024-11-25 8:22 [PATCH i-g-t v7 0/6] GPGPU fill improvements Zbigniew Kempczyński
2024-11-25 8:22 ` [PATCH i-g-t v7 1/6] tests/xe_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
@ 2024-11-25 8:22 ` Zbigniew Kempczyński
2024-11-25 8:22 ` [PATCH i-g-t v7 3/6] tests/xe_gpgpu_fill: Add offset-16x16 subtest Zbigniew Kempczyński
` (11 subsequent siblings)
13 siblings, 0 replies; 16+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-25 8:22 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.
However not all sizes/offsets are supported as we would like to have,
i915_pipe_stress uses gpgpu fill with random x/y positions what
unfortunately doesn't produce valid rectangle according to passed
positions. But it doesn't matter, it just need to keep gpu busy
so correctness of filled surface is not a big problem.
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 | 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] 16+ messages in thread
* [PATCH i-g-t v7 3/6] tests/xe_gpgpu_fill: Add offset-16x16 subtest
2024-11-25 8:22 [PATCH i-g-t v7 0/6] GPGPU fill improvements Zbigniew Kempczyński
2024-11-25 8:22 ` [PATCH i-g-t v7 1/6] tests/xe_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
2024-11-25 8:22 ` [PATCH i-g-t v7 2/6] tests/xe_gpgpu_fill: Add width/height/x/y command line args Zbigniew Kempczyński
@ 2024-11-25 8:22 ` Zbigniew Kempczyński
2024-11-25 8:22 ` [PATCH i-g-t v7 4/6] tests/gem_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
` (10 subsequent siblings)
13 siblings, 0 replies; 16+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-25 8:22 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>
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);
--
2.34.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH i-g-t v7 4/6] tests/gem_gpgpu_fill: Add command line switch to dump the surface
2024-11-25 8:22 [PATCH i-g-t v7 0/6] GPGPU fill improvements Zbigniew Kempczyński
` (2 preceding siblings ...)
2024-11-25 8:22 ` [PATCH i-g-t v7 3/6] tests/xe_gpgpu_fill: Add offset-16x16 subtest Zbigniew Kempczyński
@ 2024-11-25 8:22 ` Zbigniew Kempczyński
2024-11-25 8:22 ` [PATCH i-g-t v7 5/6] tests/gem_gpgpu_fill: Add width/height/x/y command line args Zbigniew Kempczyński
` (9 subsequent siblings)
13 siblings, 0 replies; 16+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-25 8:22 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>
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
tests/intel/gem_gpgpu_fill.c | 43 +++++++++++++++++++++++++++++++-----
1 file changed, 38 insertions(+), 5 deletions(-)
diff --git a/tests/intel/gem_gpgpu_fill.c b/tests/intel/gem_gpgpu_fill.c
index aa735e5395..36c60e75f0 100644
--- a/tests/intel/gem_gpgpu_fill.c
+++ b/tests/intel/gem_gpgpu_fill.c
@@ -64,9 +64,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;
@@ -117,27 +119,58 @@ 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 = gem_mmap__device_coherent(data->drm_fd, buf->handle, 0,
buf->surface[0].size, PROT_READ);
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] 16+ messages in thread
* [PATCH i-g-t v7 5/6] tests/gem_gpgpu_fill: Add width/height/x/y command line args
2024-11-25 8:22 [PATCH i-g-t v7 0/6] GPGPU fill improvements Zbigniew Kempczyński
` (3 preceding siblings ...)
2024-11-25 8:22 ` [PATCH i-g-t v7 4/6] tests/gem_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
@ 2024-11-25 8:22 ` Zbigniew Kempczyński
2024-11-25 8:22 ` [PATCH i-g-t v7 6/6] tests/gem_gpgpu_fill: Add offset-16x16 subtest Zbigniew Kempczyński
` (8 subsequent siblings)
13 siblings, 0 replies; 16+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-25 8:22 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.
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/gem_gpgpu_fill.c | 66 ++++++++++++++++++++++++++----------
1 file changed, 48 insertions(+), 18 deletions(-)
diff --git a/tests/intel/gem_gpgpu_fill.c b/tests/intel/gem_gpgpu_fill.c
index 36c60e75f0..ba32a6f318 100644
--- a/tests/intel/gem_gpgpu_fill.c
+++ b/tests/intel/gem_gpgpu_fill.c
@@ -68,6 +68,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;
@@ -103,37 +107,40 @@ create_buf(data_t *data, int width, int height, uint8_t color, uint32_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);
}
-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 = gem_mmap__device_coherent(data->drm_fd, buf->handle, 0,
buf->surface[0].size, PROT_READ);
- 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(" ");
}
@@ -141,12 +148,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);
}
@@ -157,6 +165,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;
}
@@ -167,10 +187,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;
@@ -193,6 +217,8 @@ igt_main_args("d", NULL, help_str, opt_handler, NULL)
region_set = get_memory_region_set(region_info,
I915_SYSTEM_MEMORY,
I915_DEVICE_MEMORY);
+
+ start_x = ALIGN(start_x, 16);
}
igt_subtest_with_dynamic("basic") {
@@ -203,7 +229,11 @@ igt_main_args("d", NULL, help_str, opt_handler, NULL)
uint32_t id = igt_collection_get_value(region, 0);
igt_dynamic(name)
- gpgpu_fill(&data, fill_fn, id);
+ gpgpu_fill(&data, fill_fn, id,
+ surfwidth, surfheight,
+ start_x, start_y,
+ surfwidth / 2,
+ surfheight / 2);
free(name);
}
--
2.34.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH i-g-t v7 6/6] tests/gem_gpgpu_fill: Add offset-16x16 subtest
2024-11-25 8:22 [PATCH i-g-t v7 0/6] GPGPU fill improvements Zbigniew Kempczyński
` (4 preceding siblings ...)
2024-11-25 8:22 ` [PATCH i-g-t v7 5/6] tests/gem_gpgpu_fill: Add width/height/x/y command line args Zbigniew Kempczyński
@ 2024-11-25 8:22 ` Zbigniew Kempczyński
2024-11-25 9:50 ` ✓ Xe.CI.BAT: success for GPGPU fill improvements (rev7) Patchwork
` (7 subsequent siblings)
13 siblings, 0 replies; 16+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-25 8:22 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>
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
tests/intel/gem_gpgpu_fill.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/tests/intel/gem_gpgpu_fill.c b/tests/intel/gem_gpgpu_fill.c
index ba32a6f318..0e60a49919 100644
--- a/tests/intel/gem_gpgpu_fill.c
+++ b/tests/intel/gem_gpgpu_fill.c
@@ -58,6 +58,10 @@
* Feature: compute
*
* SUBTEST: basic
+ * Description: run gpgpu fill
+ *
+ * SUBTEST: offset-16x16
+ * Description: run gpgpu fill with <x,y> start position == <16,16>
*/
#define WIDTH 64
@@ -239,6 +243,14 @@ igt_main_args("dW:H:X:Y:", NULL, help_str, opt_handler, NULL)
}
}
+ igt_subtest("offset-16x16") {
+ gpgpu_fill(&data, fill_fn, 0,
+ surfwidth, surfheight,
+ 16, 16,
+ surfwidth / 2,
+ surfheight / 2);
+ }
+
igt_fixture {
igt_collection_destroy(region_set);
free(region_info);
--
2.34.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* ✓ Xe.CI.BAT: success for GPGPU fill improvements (rev7)
2024-11-25 8:22 [PATCH i-g-t v7 0/6] GPGPU fill improvements Zbigniew Kempczyński
` (5 preceding siblings ...)
2024-11-25 8:22 ` [PATCH i-g-t v7 6/6] tests/gem_gpgpu_fill: Add offset-16x16 subtest Zbigniew Kempczyński
@ 2024-11-25 9:50 ` Patchwork
2024-11-25 10:03 ` ✗ i915.CI.BAT: failure " Patchwork
` (6 subsequent siblings)
13 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-25 9:50 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1601 bytes --]
== Series Details ==
Series: GPGPU fill improvements (rev7)
URL : https://patchwork.freedesktop.org/series/141352/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8123_BAT -> XEIGTPW_12186_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12186_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@bad-pitch-0:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3429]) +31 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
[Intel XE#3429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3429
Build changes
-------------
* IGT: IGT_8123 -> IGTPW_12186
* Linux: xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a -> xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7
IGTPW_12186: 12186
IGT_8123: fb343db7fc59c760ef0a0c19303e7bcec177dbd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a: a381faddbfc974e7bd57efe953a738415afccd6a
xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7: 4d723d57180a3aafc1a510bc08ef42f4b03671a7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/index.html
[-- Attachment #2: Type: text/html, Size: 2177 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ i915.CI.BAT: failure for GPGPU fill improvements (rev7)
2024-11-25 8:22 [PATCH i-g-t v7 0/6] GPGPU fill improvements Zbigniew Kempczyński
` (6 preceding siblings ...)
2024-11-25 9:50 ` ✓ Xe.CI.BAT: success for GPGPU fill improvements (rev7) Patchwork
@ 2024-11-25 10:03 ` Patchwork
2024-11-25 11:20 ` ✗ Xe.CI.Full: " Patchwork
` (5 subsequent siblings)
13 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-25 10:03 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
== Series Details ==
Series: GPGPU fill improvements (rev7)
URL : https://patchwork.freedesktop.org/series/141352/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8123 -> IGTPW_12186
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12186 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12186, 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_12186/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12186:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rpm@module-reload:
- bat-dg2-8: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-dg2-8/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/bat-dg2-8/igt@i915_pm_rpm@module-reload.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][3] ([i915#12061]) -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-mtlp-8/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/bat-mtlp-8/igt@i915_selftest@live.html
* igt@kms_flip@basic-flip-vs-modeset@a-dp1:
- fi-cfl-8109u: [DMESG-WARN][5] ([i915#11621]) -> [DMESG-WARN][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-modeset@a-dp1.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-modeset@a-dp1.html
Known issues
------------
Here are the changes found in IGTPW_12186 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-apl-1: [PASS][7] -> [INCOMPLETE][8] ([i915#12904]) +1 other test incomplete
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-apl-1/igt@dmabuf@all-tests.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/bat-apl-1/igt@dmabuf@all-tests.html
* igt@dmabuf@all-tests@dma_fence_chain:
- fi-bsw-nick: [PASS][9] -> [INCOMPLETE][10] ([i915#12904]) +1 other test incomplete
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@fbdev@eof:
- bat-arls-5: [PASS][11] -> [SKIP][12] ([i915#11191] / [i915#11345]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arls-5/igt@fbdev@eof.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/bat-arls-5/igt@fbdev@eof.html
* igt@fbdev@info:
- bat-arls-5: [PASS][13] -> [SKIP][14] ([i915#1849])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arls-5/igt@fbdev@info.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/bat-arls-5/igt@fbdev@info.html
* igt@kms_flip@basic-flip-vs-dpms@a-dp1:
- bat-apl-1: [PASS][15] -> [DMESG-WARN][16] ([i915#12921]) +1 other test dmesg-warn
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-apl-1/igt@kms_flip@basic-flip-vs-dpms@a-dp1.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/bat-apl-1/igt@kms_flip@basic-flip-vs-dpms@a-dp1.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-arls-5: [PASS][17] -> [SKIP][18] ([i915#3637]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arls-5/igt@kms_flip@basic-flip-vs-wf_vblank.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/bat-arls-5/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_frontbuffer_tracking@basic:
- bat-arls-5: [PASS][19] -> [SKIP][20] ([i915#4342] / [i915#5354])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arls-5/igt@kms_frontbuffer_tracking@basic.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/bat-arls-5/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- bat-arls-5: [PASS][21] -> [SKIP][22] ([i915#12732]) +13 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arls-5/igt@kms_pipe_crc_basic@nonblocking-crc.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/bat-arls-5/igt@kms_pipe_crc_basic@nonblocking-crc.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [PASS][23] -> [SKIP][24] ([i915#9197]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@prime_vgem@basic-fence-flip:
- bat-arls-5: [PASS][25] -> [SKIP][26] ([i915#12732] / [i915#3708])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arls-5/igt@prime_vgem@basic-fence-flip.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/bat-arls-5/igt@prime_vgem@basic-fence-flip.html
#### Possible fixes ####
* igt@i915_module_load@reload:
- fi-cfl-8109u: [DMESG-WARN][27] ([i915#11621] / [i915#1982]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/fi-cfl-8109u/igt@i915_module_load@reload.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/fi-cfl-8109u/igt@i915_module_load@reload.html
* igt@i915_pm_rpm@module-reload:
- bat-dg2-11: [FAIL][29] ([i915#12903]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
- bat-rpls-4: [FAIL][31] ([i915#12903]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [DMESG-WARN][33] ([i915#11621]) -> [PASS][34] +129 other tests pass
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
* igt@kms_flip@basic-flip-vs-dpms@c-dp1:
- fi-kbl-7567u: [DMESG-WARN][35] ([i915#12920]) -> [PASS][36] +1 other test pass
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html
#### Warnings ####
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-arls-5: [SKIP][37] ([i915#10202]) -> [SKIP][38] ([i915#12732]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arls-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/bat-arls-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-arls-5: [SKIP][39] ([i915#9886]) -> [SKIP][40] ([i915#12732])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arls-5/igt@kms_dsc@dsc-basic.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/bat-arls-5/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-modeset:
- fi-cfl-8109u: [DMESG-WARN][41] ([i915#11621]) -> [DMESG-WARN][42] ([i915#12914])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-modeset.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-modeset.html
[i915#10202]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10202
[i915#11191]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11191
[i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12732
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#12914]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12914
[i915#12920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12920
[i915#12921]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12921
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8123 -> IGTPW_12186
* Linux: CI_DRM_15731 -> CI_DRM_15737
CI-20190529: 20190529
CI_DRM_15731: a381faddbfc974e7bd57efe953a738415afccd6a @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15737: 4d723d57180a3aafc1a510bc08ef42f4b03671a7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12186: 12186
IGT_8123: fb343db7fc59c760ef0a0c19303e7bcec177dbd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12186/index.html
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ Xe.CI.Full: failure for GPGPU fill improvements (rev7)
2024-11-25 8:22 [PATCH i-g-t v7 0/6] GPGPU fill improvements Zbigniew Kempczyński
` (7 preceding siblings ...)
2024-11-25 10:03 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2024-11-25 11:20 ` Patchwork
2024-11-25 13:36 ` ✗ GitLab.Pipeline: warning for GPGPU fill improvements (rev8) Patchwork
` (4 subsequent siblings)
13 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-25 11:20 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 132674 bytes --]
== Series Details ==
Series: GPGPU fill improvements (rev7)
URL : https://patchwork.freedesktop.org/series/141352/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8123_full -> XEIGTPW_12186_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12186_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12186_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_12186_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs:
- shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-lnl: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@torture-bo@pipe-d:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][5]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_cursor_legacy@torture-bo@pipe-d.html
* igt@kms_draw_crc@draw-method-blt@xrgb2101010-4tiled:
- shard-bmg: [PASS][6] -> [DMESG-FAIL][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_draw_crc@draw-method-blt@xrgb2101010-4tiled.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@kms_draw_crc@draw-method-blt@xrgb2101010-4tiled.html
* igt@kms_flip@blocking-absolute-wf_vblank:
- shard-bmg: [PASS][8] -> [INCOMPLETE][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip@blocking-absolute-wf_vblank.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@kms_flip@blocking-absolute-wf_vblank.html
* igt@kms_flip@blocking-absolute-wf_vblank@a-dp2:
- shard-bmg: NOTRUN -> [INCOMPLETE][10]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@kms_flip@blocking-absolute-wf_vblank@a-dp2.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: [PASS][11] -> [FAIL][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_hdmi_inject@inject-audio.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d:
- shard-bmg: [PASS][13] -> [DMESG-WARN][14] +7 other tests dmesg-warn
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d.html
* igt@xe_exec_threads@threads-fd-basic:
- shard-bmg: [PASS][15] -> [FAIL][16] +1 other test fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_exec_threads@threads-fd-basic.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@xe_exec_threads@threads-fd-basic.html
#### Warnings ####
* igt@kms_flip@flip-vs-rmfb-interruptible@c-hdmi-a3:
- shard-bmg: [DMESG-WARN][17] ([Intel XE#3468]) -> [DMESG-WARN][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip@flip-vs-rmfb-interruptible@c-hdmi-a3.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-5/igt@kms_flip@flip-vs-rmfb-interruptible@c-hdmi-a3.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-lnl: [FAIL][19] ([Intel XE#3499]) -> [ABORT][20]
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-3/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-4/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
New tests
---------
New tests have been introduced between XEIGT_8123_full and XEIGTPW_12186_full:
### New IGT tests (1) ###
* igt@xe_gpgpu_fill@offset-16x16:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.0, 0.01] s
Known issues
------------
Here are the changes found in XEIGTPW_12186_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotrebind:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1885])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@core_hotunplug@hotrebind.html
* igt@core_setmaster@master-drop-set-user:
- shard-dg2-set2: [PASS][22] -> [FAIL][23] ([Intel XE#3339])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@core_setmaster@master-drop-set-user.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@core_setmaster@master-drop-set-user.html
* igt@fbdev@nullptr:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#2134])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@fbdev@nullptr.html
* igt@fbdev@write:
- shard-dg2-set2: [PASS][25] -> [SKIP][26] ([Intel XE#2134]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@fbdev@write.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@fbdev@write.html
* igt@intel_hwmon@hwmon-write:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1125])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-7/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2550]) +23 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html
* igt@kms_atomic_interruptible@universal-setplane-cursor@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [DMESG-WARN][29] ([Intel XE#3468]) +35 other tests dmesg-warn
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@kms_atomic_interruptible@universal-setplane-cursor@pipe-a-hdmi-a-3.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
- shard-lnl: [PASS][30] -> [FAIL][31] ([Intel XE#1701]) +1 other test fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-5/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1407])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2327])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg2-set2: [PASS][34] -> [SKIP][35] ([Intel XE#2136]) +38 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-180:
- shard-bmg: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#3225])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-7/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1124])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-1/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1124]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1124]) +4 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1477])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#610])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#367]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1512])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#455] / [Intel XE#787]) +12 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][46] -> [SKIP][47] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#2887]) +4 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#2907])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#3432])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#787]) +83 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2887]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html
* igt@kms_chamelium_audio@dp-audio:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#373]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-7/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2252])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][56] ([Intel XE#1178]) +4 other tests fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-4/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#2423] / [i915#2575]) +26 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#2321]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#2291])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: NOTRUN -> [DMESG-WARN][61] ([Intel XE#877])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#2423])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-blt@rgb565-4tiled:
- shard-bmg: [PASS][63] -> [DMESG-FAIL][64] ([Intel XE#3468]) +24 other tests dmesg-fail
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_draw_crc@draw-method-blt@rgb565-4tiled.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@kms_draw_crc@draw-method-blt@rgb565-4tiled.html
* igt@kms_draw_crc@draw-method-blt@xrgb2101010-xtiled:
- shard-bmg: [PASS][65] -> [DMESG-FAIL][66] ([Intel XE#2705])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_draw_crc@draw-method-blt@xrgb2101010-xtiled.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@kms_draw_crc@draw-method-blt@xrgb2101010-xtiled.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2372])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-8/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1421]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-8/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [PASS][69] -> [SKIP][70] ([Intel XE#2316])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
- shard-bmg: [PASS][71] -> [FAIL][72] ([Intel XE#3321] / [Intel XE#3487])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][73] -> [FAIL][74] ([Intel XE#301])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-panning-vs-hang:
- shard-bmg: [PASS][75] -> [DMESG-WARN][76] ([Intel XE#1727] / [Intel XE#3468]) +10 other tests dmesg-warn
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip@flip-vs-panning-vs-hang.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_flip@flip-vs-panning-vs-hang.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-WARN][77] ([Intel XE#1727] / [Intel XE#3468])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-5/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@b-dp2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][78] ([Intel XE#3468]) +7 other tests dmesg-fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-5/igt@kms_flip@flip-vs-suspend@b-dp2.html
* igt@kms_flip@flip-vs-suspend@c-dp2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][79] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-fail
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-5/igt@kms_flip@flip-vs-suspend@c-dp2.html
* igt@kms_flip@plain-flip-fb-recreate@b-edp1:
- shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#886]) +1 other test fail
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html
* igt@kms_flip@plain-flip-fb-recreate@c-edp1:
- shard-lnl: [PASS][82] -> [FAIL][83] ([Intel XE#3149] / [Intel XE#886]) +1 other test fail
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: [PASS][84] -> [DMESG-FAIL][85] ([Intel XE#2705] / [Intel XE#3468]) +2 other tests dmesg-fail
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1401]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#455]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling:
- shard-bmg: [PASS][89] -> [DMESG-WARN][90] ([Intel XE#2705])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2293]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#651]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
- shard-bmg: NOTRUN -> [FAIL][94] ([Intel XE#2333]) +1 other test fail
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#651]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2312]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2311]) +6 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2313]) +8 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#653]) +4 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#2136]) +28 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#656]) +8 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_getfb@getfb-handle-zero:
- shard-dg2-set2: [PASS][102] -> [SKIP][103] ([Intel XE#2423] / [i915#2575]) +108 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_getfb@getfb-handle-zero.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_getfb@getfb-handle-zero.html
* igt@kms_hdmi_inject@inject-4k:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1470])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-6/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#1503])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1503])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3:
- shard-bmg: [PASS][107] -> [INCOMPLETE][108] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html
* igt@kms_plane@plane-panning-top-left@pipe-a:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][109] ([Intel XE#1035] / [Intel XE#1727])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_plane@plane-panning-top-left@pipe-a.html
* igt@kms_plane_lowres@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#599])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-1/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#3307])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-3/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2763]) +4 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][113] -> [FAIL][114] ([Intel XE#718])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-dg2-set2: [PASS][115] -> [DMESG-WARN][116] ([Intel XE#1727] / [Intel XE#3468])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_pm_dc@dc9-dpms.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@legacy-planes@plane-59:
- shard-lnl: [PASS][117] -> [DMESG-WARN][118] ([Intel XE#3184]) +1 other test dmesg-warn
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-5/igt@kms_pm_rpm@legacy-planes@plane-59.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-4/igt@kms_pm_rpm@legacy-planes@plane-59.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#1439] / [Intel XE#3141])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress.html
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#2446]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1439] / [Intel XE#3141])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [PASS][122] -> [SKIP][123] ([Intel XE#2446]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_pm_rpm@system-suspend-modeset.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html
- shard-bmg: [PASS][124] -> [INCOMPLETE][125] ([Intel XE#2864])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_pm_rpm@system-suspend-modeset.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-4/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#1489])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#1489]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2387])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-2/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@pr-cursor-render:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1406])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-8/igt@kms_psr@pr-cursor-render.html
* igt@kms_psr@pr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_psr@pr-dpms.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2330])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2413])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [PASS][134] -> [SKIP][135] ([Intel XE#1435])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tv_load_detect@load-detect:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#330])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-7/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [PASS][137] -> [FAIL][138] ([Intel XE#899])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vrr@negative-basic@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][139] ([Intel XE#1727] / [Intel XE#3468])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_vrr@negative-basic@pipe-a-dp-4.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#756])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1123])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_eudebug@read-metadata:
- shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#2905])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@xe_eudebug@read-metadata.html
* igt@xe_eudebug_online@breakpoint-many-sessions-single-tile:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2905]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-4/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html
* igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#2905]) +2 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-1/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-bmg: [PASS][145] -> [TIMEOUT][146] ([Intel XE#1473]) +1 other test timeout
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_evict@evict-beng-mixed-threads-large.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-5/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict@evict-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#688]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-3/igt@xe_evict@evict-large-multi-vm.html
* igt@xe_evict@evict-threads-large:
- shard-bmg: [PASS][148] -> [TIMEOUT][149] ([Intel XE#1473] / [Intel XE#2472])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_evict@evict-threads-large.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-5/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind:
- shard-bmg: [PASS][150] -> [DMESG-WARN][151] ([Intel XE#3468]) +91 other tests dmesg-warn
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
* igt@xe_exec_balancer@twice-cm-virtual-userptr:
- shard-dg2-set2: [PASS][152] -> [DMESG-WARN][153] ([Intel XE#1727]) +2 other tests dmesg-warn
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_exec_balancer@twice-cm-virtual-userptr.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@xe_exec_balancer@twice-cm-virtual-userptr.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2322]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#1392])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_basic@no-exec-userptr-invalidate-race:
- shard-bmg: [PASS][156] -> [DMESG-WARN][157] ([Intel XE#1727]) +7 other tests dmesg-warn
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_exec_basic@no-exec-userptr-invalidate-race.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@xe_exec_basic@no-exec-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-bindexecqueue-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#288]) +4 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html
* igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate:
- shard-bmg: [PASS][159] -> [DMESG-FAIL][160] ([Intel XE#3371])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-4/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-bmg: [PASS][161] -> [DMESG-WARN][162] ([Intel XE#3343] / [Intel XE#3468])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-dg2-set2: [PASS][163] -> [SKIP][164] ([Intel XE#2229]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_module_load@many-reload:
- shard-bmg: [PASS][165] -> [DMESG-WARN][166] ([Intel XE#3467])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_module_load@many-reload.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-7/igt@xe_module_load@many-reload.html
- shard-dg2-set2: [PASS][167] -> [FAIL][168] ([Intel XE#3546])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_module_load@many-reload.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@xe_module_load@many-reload.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-lnl: [PASS][169] -> [FAIL][170] ([Intel XE#2514])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-5/igt@xe_oa@oa-regs-whitelisted.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-5/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_oa@oa-regs-whitelisted@rcs-0:
- shard-lnl: NOTRUN -> [FAIL][171] ([Intel XE#2514])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-5/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
- shard-bmg: [PASS][172] -> [FAIL][173] ([Intel XE#2514]) +1 other test fail
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-2/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
* igt@xe_oa@syncs-ufence-wait:
- shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#1130]) +43 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@xe_oa@syncs-ufence-wait.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#2838] / [Intel XE#979])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#2284])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-4/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s2idle-mocs:
- shard-bmg: [PASS][177] -> [DMESG-FAIL][178] ([Intel XE#1727] / [Intel XE#3468])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_pm@s2idle-mocs.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@xe_pm@s2idle-mocs.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-bmg: [PASS][179] -> [DMESG-WARN][180] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-userptr.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-bmg: [PASS][181] -> [DMESG-WARN][182] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_pm@s4-vm-bind-unbind-all.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [PASS][183] -> [FAIL][184] ([Intel XE#958])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-7/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_query@multigpu-query-oa-units:
- shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#944])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-7/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_vm@munmap-style-unbind-many-either-side-partial:
- shard-dg2-set2: [PASS][186] -> [SKIP][187] ([Intel XE#1130]) +200 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
#### Possible fixes ####
* igt@fbdev@unaligned-read:
- shard-dg2-set2: [SKIP][188] ([Intel XE#2134]) -> [PASS][189]
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@fbdev@unaligned-read.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@fbdev@unaligned-read.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [FAIL][190] ([Intel XE#827]) -> [PASS][191] +1 other test pass
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][192] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][193] +10 other tests pass
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_big_fb@linear-32bpp-rotate-180.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_big_fb@linear-32bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [DMESG-FAIL][194] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][195]
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-bmg: [DMESG-WARN][196] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][197]
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [SKIP][198] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][199] +1 other test pass
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [INCOMPLETE][200] ([Intel XE#1727]) -> [PASS][201]
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [SKIP][202] ([Intel XE#2423] / [i915#2575]) -> [PASS][203] +87 other tests pass
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: [SKIP][204] ([Intel XE#2291]) -> [PASS][205] +5 other tests pass
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][206] ([Intel XE#2425]) -> [PASS][207]
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_aux_dev:
- shard-bmg: [SKIP][208] ([Intel XE#3009]) -> [PASS][209]
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_dp_aux_dev.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-5/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][210] ([Intel XE#301]) -> [PASS][211]
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-bmg: [ABORT][212] ([Intel XE#3468]) -> [PASS][213] +1 other test pass
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [DMESG-FAIL][214] ([Intel XE#3468]) -> [PASS][215] +9 other tests pass
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-dp2-hdmi-a3.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [DMESG-FAIL][216] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][217] +3 other tests pass
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][218] ([Intel XE#2316]) -> [PASS][219] +14 other tests pass
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-bmg: [FAIL][220] ([Intel XE#2882]) -> [PASS][221]
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][222] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][223] +1 other test pass
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:
- shard-lnl: [FAIL][224] ([Intel XE#886]) -> [PASS][225] +5 other tests pass
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][226] ([Intel XE#2136]) -> [PASS][227] +22 other tests pass
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_plane_alpha_blend@constant-alpha-min:
- shard-bmg: [DMESG-WARN][228] ([Intel XE#3468]) -> [PASS][229] +71 other tests pass
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_plane_alpha_blend@constant-alpha-min.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-8/igt@kms_plane_alpha_blend@constant-alpha-min.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][230] ([Intel XE#2571]) -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][232] ([Intel XE#718]) -> [PASS][233]
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [FAIL][234] ([Intel XE#2029]) -> [PASS][235]
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-6/igt@kms_pm_dc@deep-pkgc.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@legacy-planes-dpms@plane-59:
- shard-bmg: [DMESG-WARN][236] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][237] +7 other tests pass
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-8/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2-set2: [SKIP][238] ([Intel XE#2446]) -> [PASS][239] +2 other tests pass
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [SKIP][240] ([Intel XE#1435]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-8/igt@kms_setmode@clone-exclusive-crtc.html
* igt@testdisplay:
- shard-dg2-set2: [SKIP][242] ([Intel XE#2423]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@testdisplay.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@testdisplay.html
* igt@xe_exec_basic@many-null-rebind:
- shard-bmg: [DMESG-WARN][244] ([Intel XE#1727]) -> [PASS][245] +2 other tests pass
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_exec_basic@many-null-rebind.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@xe_exec_basic@many-null-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue:
- shard-bmg: [DMESG-WARN][246] ([Intel XE#2705]) -> [PASS][247] +2 other tests pass
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue.html
* igt@xe_exec_reset@cm-close-execqueues-close-fd:
- shard-lnl: [FAIL][248] ([Intel XE#1081]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-5/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-lnl-5/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
- shard-bmg: [FAIL][250] ([Intel XE#1081]) -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
- shard-bmg: [DMESG-WARN][252] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/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: [DMESG-WARN][254] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- shard-dg2-set2: [TIMEOUT][256] ([Intel XE#2961] / [Intel XE#3191]) -> [PASS][257] +1 other test pass
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_pm@s2idle-basic-exec:
- shard-bmg: [DMESG-WARN][258] ([Intel XE#1616] / [Intel XE#3468]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_pm@s2idle-basic-exec.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-5/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_vm@large-split-binds-536870912:
- shard-dg2-set2: [SKIP][260] ([Intel XE#1130]) -> [PASS][261] +141 other tests pass
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_vm@large-split-binds-536870912.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@xe_vm@large-split-binds-536870912.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: [SKIP][262] ([Intel XE#623]) -> [SKIP][263] ([Intel XE#2423] / [i915#2575])
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-dg2-set2: [DMESG-WARN][264] ([Intel XE#3468]) -> [SKIP][265] ([Intel XE#2423] / [i915#2575])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_async_flips@async-flip-suspend-resume.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][266] ([Intel XE#316]) -> [SKIP][267] ([Intel XE#2136] / [Intel XE#2351])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-90.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][268] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][269] ([Intel XE#316])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-270.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][270] ([Intel XE#2136]) -> [SKIP][271] ([Intel XE#316]) +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][272] ([Intel XE#316]) -> [SKIP][273] ([Intel XE#2136]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][274] ([Intel XE#610]) -> [SKIP][275] ([Intel XE#2136])
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][276] ([Intel XE#1124]) -> [SKIP][277] ([Intel XE#2136]) +11 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][278] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][279] ([Intel XE#1124]) +4 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: [SKIP][280] ([Intel XE#619]) -> [SKIP][281] ([Intel XE#2136] / [Intel XE#2351])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][282] ([Intel XE#1124]) -> [SKIP][283] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][284] ([Intel XE#2136]) -> [SKIP][285] ([Intel XE#1124]) +4 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: [SKIP][286] ([Intel XE#367]) -> [SKIP][287] ([Intel XE#2423] / [i915#2575])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-dg2-set2: [SKIP][288] ([Intel XE#2423] / [i915#2575]) -> [SKIP][289] ([Intel XE#2191])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][290] ([Intel XE#2191]) -> [SKIP][291] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][292] ([Intel XE#2423] / [i915#2575]) -> [SKIP][293] ([Intel XE#367]) +4 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs:
- shard-dg2-set2: [SKIP][294] ([Intel XE#2136]) -> [SKIP][295] ([Intel XE#455] / [Intel XE#787]) +8 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs:
- shard-dg2-set2: [SKIP][296] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][297] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][298] ([Intel XE#2907]) -> [SKIP][299] ([Intel XE#2136]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][300] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][301] ([Intel XE#2136]) +14 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/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][302] ([Intel XE#616]) -> [SKIP][303] ([Intel XE#2136])
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][304] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][305] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-dg2-set2: [SKIP][306] ([Intel XE#306]) -> [SKIP][307] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_chamelium_color@ctm-blue-to-red.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: [SKIP][308] ([Intel XE#2423] / [i915#2575]) -> [SKIP][309] ([Intel XE#306]) +2 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_chamelium_color@ctm-red-to-blue.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-dg2-set2: [SKIP][310] ([Intel XE#2423] / [i915#2575]) -> [SKIP][311] ([Intel XE#373]) +10 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_chamelium_frames@vga-frame-dump.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg2-set2: [SKIP][312] ([Intel XE#373]) -> [SKIP][313] ([Intel XE#2423] / [i915#2575]) +13 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic:
- shard-dg2-set2: [FAIL][314] ([Intel XE#1178]) -> [SKIP][315] ([Intel XE#2423] / [i915#2575])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_content_protection@atomic.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][316] ([Intel XE#307]) -> [SKIP][317] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-0.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: [FAIL][318] ([Intel XE#1178]) -> [INCOMPLETE][319] ([Intel XE#2715] / [Intel XE#3468]) +1 other test incomplete
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-5/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][320] ([Intel XE#2341]) -> [FAIL][321] ([Intel XE#1178])
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_content_protection@srm.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-7/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: [SKIP][322] ([Intel XE#308]) -> [SKIP][323] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: [SKIP][324] ([Intel XE#2423] / [i915#2575]) -> [SKIP][325] ([Intel XE#308]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-dg2-set2: [INCOMPLETE][326] ([Intel XE#1727]) -> [SKIP][327] ([Intel XE#2423] / [i915#2575])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][328] ([Intel XE#323]) -> [SKIP][329] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-bmg: [SKIP][330] ([Intel XE#2291]) -> [DMESG-WARN][331] ([Intel XE#3468])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@torture-bo:
- shard-dg2-set2: [SKIP][332] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][333] ([Intel XE#3184])
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_cursor_legacy@torture-bo.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_cursor_legacy@torture-bo.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2:
- shard-bmg: [DMESG-FAIL][334] ([Intel XE#3468]) -> [FAIL][335] ([Intel XE#2141]) +2 other tests fail
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2-set2: [SKIP][336] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][337] ([Intel XE#455])
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-basic:
- shard-dg2-set2: [SKIP][338] ([Intel XE#2351]) -> [SKIP][339] ([Intel XE#455])
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_dsc@dsc-basic.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2-set2: [SKIP][340] ([Intel XE#455]) -> [SKIP][341] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_dsc@dsc-with-formats.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: [FAIL][342] ([Intel XE#1695]) -> [DMESG-FAIL][343] ([Intel XE#3468])
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_fbcon_fbt@fbc.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@kms_fbcon_fbt@fbc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][344] ([Intel XE#2136]) -> [SKIP][345] ([Intel XE#776])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][346] ([Intel XE#2423] / [i915#2575]) -> [SKIP][347] ([Intel XE#1138])
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_feature_discovery@display-4x.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][348] ([Intel XE#1137]) -> [SKIP][349] ([Intel XE#2423] / [i915#2575])
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_feature_discovery@dp-mst.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][350] ([Intel XE#1135]) -> [SKIP][351] ([Intel XE#2423] / [i915#2575])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_feature_discovery@psr1.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: [SKIP][352] ([Intel XE#2423] / [i915#2575]) -> [SKIP][353] ([Intel XE#1135])
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_feature_discovery@psr2.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [SKIP][354] ([Intel XE#2316]) -> [DMESG-WARN][355] ([Intel XE#3468]) +1 other test dmesg-warn
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2-set2: [FAIL][356] ([Intel XE#301]) -> [SKIP][357] ([Intel XE#2423] / [i915#2575])
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@modeset-vs-vblank-race:
- shard-dg2-set2: [DMESG-WARN][358] ([Intel XE#1727]) -> [SKIP][359] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_flip@modeset-vs-vblank-race.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_flip@modeset-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][360] ([Intel XE#455]) -> [SKIP][361] ([Intel XE#2136]) +6 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2-set2: [SKIP][362] ([Intel XE#2136]) -> [SKIP][363] ([Intel XE#455]) +1 other test skip
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][364] ([Intel XE#651]) -> [SKIP][365] ([Intel XE#2136]) +22 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][366] ([Intel XE#2312]) -> [SKIP][367] ([Intel XE#2311]) +29 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: [SKIP][368] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][369] ([Intel XE#651]) +5 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [FAIL][370] ([Intel XE#2333]) -> [DMESG-FAIL][371] ([Intel XE#3468]) +9 other tests dmesg-fail
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-dg2-set2: [SKIP][372] ([Intel XE#2136]) -> [INCOMPLETE][373] ([Intel XE#1727] / [Intel XE#3468])
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
- shard-bmg: [FAIL][374] ([Intel XE#2333]) -> [INCOMPLETE][375] ([Intel XE#1727] / [Intel XE#3468])
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [FAIL][376] ([Intel XE#2333]) -> [SKIP][377] ([Intel XE#2312]) +1 other test skip
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [DMESG-FAIL][378] ([Intel XE#3468]) -> [SKIP][379] ([Intel XE#2312])
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][380] ([Intel XE#2312]) -> [DMESG-FAIL][381] ([Intel XE#3468]) +4 other tests dmesg-fail
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [DMESG-FAIL][382] ([Intel XE#3468]) -> [FAIL][383] ([Intel XE#2333]) +2 other tests fail
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][384] ([Intel XE#2312]) -> [FAIL][385] ([Intel XE#2333]) +12 other tests fail
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][386] ([Intel XE#2136]) -> [SKIP][387] ([Intel XE#651]) +23 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][388] ([Intel XE#2311]) -> [SKIP][389] ([Intel XE#2312]) +2 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-onoff.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: [SKIP][390] ([Intel XE#651]) -> [SKIP][391] ([Intel XE#2136] / [Intel XE#2351]) +13 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][392] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][393] ([Intel XE#653]) +7 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][394] ([Intel XE#658]) -> [SKIP][395] ([Intel XE#2136] / [Intel XE#2351])
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-bmg: [INCOMPLETE][396] ([Intel XE#1727] / [Intel XE#2050] / [Intel XE#3468]) -> [FAIL][397] ([Intel XE#2333])
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2:
- shard-bmg: [INCOMPLETE][398] ([Intel XE#1727] / [Intel XE#3468]) -> [FAIL][399] ([Intel XE#2333])
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][400] ([Intel XE#653]) -> [SKIP][401] ([Intel XE#2136]) +30 other tests skip
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][402] ([Intel XE#653]) -> [SKIP][403] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][404] ([Intel XE#2312]) -> [SKIP][405] ([Intel XE#2313]) +30 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/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: [SKIP][406] ([Intel XE#2136]) -> [SKIP][407] ([Intel XE#653]) +15 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][408] ([Intel XE#2313]) -> [SKIP][409] ([Intel XE#2312]) +3 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][410] ([Intel XE#3544]) -> [SKIP][411] ([Intel XE#3374] / [Intel XE#3544])
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: [SKIP][412] ([Intel XE#2925]) -> [SKIP][413] ([Intel XE#2136])
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_joiner@basic-force-ultra-joiner.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2-set2: [SKIP][414] ([Intel XE#2927]) -> [SKIP][415] ([Intel XE#2136])
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_joiner@basic-ultra-joiner.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: [SKIP][416] ([Intel XE#2136]) -> [SKIP][417] ([Intel XE#346]) +1 other test skip
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_joiner@invalid-modeset-big-joiner.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][418] ([Intel XE#356]) -> [SKIP][419] ([Intel XE#2423] / [i915#2575])
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@plane-panning-top-left:
- shard-dg2-set2: [SKIP][420] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][421] ([Intel XE#1035] / [Intel XE#1727])
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_plane@plane-panning-top-left.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_plane@plane-panning-top-left.html
* igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128:
- shard-bmg: [DMESG-FAIL][422] ([Intel XE#3468]) -> [DMESG-FAIL][423] ([Intel XE#2705] / [Intel XE#3468])
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-2/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128.html
* igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256:
- shard-bmg: [DMESG-FAIL][424] ([Intel XE#3468]) -> [DMESG-FAIL][425] ([Intel XE#2705])
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-2/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: [SKIP][426] ([Intel XE#455]) -> [SKIP][427] ([Intel XE#2423] / [i915#2575]) +11 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_plane_multiple@tiling-y.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2-set2: [SKIP][428] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][429] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: [SKIP][430] ([Intel XE#870]) -> [SKIP][431] ([Intel XE#2136]) +2 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: [SKIP][432] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][433] ([Intel XE#1122])
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: [SKIP][434] ([Intel XE#2136]) -> [SKIP][435] ([Intel XE#1129])
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2-set2: [FAIL][436] ([Intel XE#3527]) -> [SKIP][437] ([Intel XE#2136])
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_pm_lpsp@kms-lpsp.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@legacy-planes-dpms:
- shard-dg2-set2: [DMESG-WARN][438] ([Intel XE#3468]) -> [SKIP][439] ([Intel XE#2446])
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_pm_rpm@legacy-planes-dpms.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_pm_rpm@legacy-planes-dpms.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][440] ([Intel XE#1489]) -> [SKIP][441] ([Intel XE#2136]) +11 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][442] ([Intel XE#2136]) -> [SKIP][443] ([Intel XE#1489]) +7 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2-set2: [SKIP][444] ([Intel XE#1122]) -> [SKIP][445] ([Intel XE#2136])
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-set2: [SKIP][446] ([Intel XE#2136]) -> [SKIP][447] ([Intel XE#1122])
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_psr2_su@page_flip-xrgb8888.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-dg2-set2: [SKIP][448] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][449] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_psr@fbc-pr-no-drrs.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-dg2-set2: [SKIP][450] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][451] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_psr@fbc-pr-primary-render.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-dg2-set2: [SKIP][452] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][453] ([Intel XE#2136]) +16 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_psr@fbc-psr2-primary-blt.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][454] ([Intel XE#2136]) -> [SKIP][455] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@psr-primary-page-flip:
- shard-dg2-set2: [SKIP][456] ([Intel XE#2351]) -> [SKIP][457] ([Intel XE#2850] / [Intel XE#929])
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_psr@psr-primary-page-flip.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][458] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][459] ([Intel XE#2351]) +1 other test skip
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_psr@psr-sprite-plane-onoff.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][460] ([Intel XE#3414]) -> [SKIP][461] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_setmode@basic:
- shard-bmg: [FAIL][462] ([Intel XE#2883]) -> [DMESG-FAIL][463] ([Intel XE#3468]) +2 other tests dmesg-fail
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_setmode@basic.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-3:
- shard-bmg: [FAIL][464] ([Intel XE#2883]) -> [FAIL][465] ([Intel XE#3559]) +3 other tests fail
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [DMESG-FAIL][466] ([Intel XE#1727]) -> [SKIP][467] ([Intel XE#2423] / [i915#2575])
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][468] ([Intel XE#2509]) -> [SKIP][469] ([Intel XE#2426])
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2-set2: [SKIP][470] ([Intel XE#1500]) -> [SKIP][471] ([Intel XE#2423] / [i915#2575])
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][472] ([Intel XE#2423] / [i915#2575]) -> [SKIP][473] ([Intel XE#330])
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: [SKIP][474] ([Intel XE#2423] / [i915#2575]) -> [SKIP][475] ([Intel XE#2168])
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_vrr@cmrr.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: [SKIP][476] ([Intel XE#2423] / [i915#2575]) -> [SKIP][477] ([Intel XE#455]) +5 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_vrr@flipline.html
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_vrr@flipline.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [SKIP][478] ([Intel XE#1499]) -> [DMESG-WARN][479] ([Intel XE#3468])
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_vrr@negative-basic.html
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-2/igt@kms_vrr@negative-basic.html
- shard-dg2-set2: [SKIP][480] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][481] ([Intel XE#1727] / [Intel XE#3468])
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_vrr@negative-basic.html
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: [SKIP][482] ([Intel XE#2423] / [i915#2575]) -> [SKIP][483] ([Intel XE#756])
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_writeback@writeback-fb-id.html
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@kms_writeback@writeback-fb-id.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: [SKIP][484] ([Intel XE#2423] / [i915#2575]) -> [SKIP][485] ([Intel XE#1091] / [Intel XE#2849])
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@sriov_basic@enable-vfs-autoprobe-off.html
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][486] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][487] ([Intel XE#2423] / [i915#2575])
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute_preempt@compute-threadgroup-preempt:
- shard-dg2-set2: [SKIP][488] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][489] ([Intel XE#1130])
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_compute_preempt@compute-threadgroup-preempt.html
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@xe_compute_preempt@compute-threadgroup-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: [SKIP][490] ([Intel XE#1130]) -> [SKIP][491] ([Intel XE#1123])
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_copy_basic@mem-copy-linear-0xfd:
- shard-dg2-set2: [SKIP][492] ([Intel XE#1123]) -> [SKIP][493] ([Intel XE#1130])
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0xfd.html
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfd.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: [SKIP][494] ([Intel XE#1126]) -> [SKIP][495] ([Intel XE#1130])
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfd.html
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: [SKIP][496] ([Intel XE#1130]) -> [SKIP][497] ([Intel XE#1126])
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eudebug@basic-client-th:
- shard-dg2-set2: [SKIP][498] ([Intel XE#2905]) -> [SKIP][499] ([Intel XE#1130]) +12 other tests skip
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_eudebug@basic-client-th.html
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@xe_eudebug@basic-client-th.html
* igt@xe_eudebug@basic-vm-bind:
- shard-dg2-set2: [SKIP][500] ([Intel XE#1130]) -> [SKIP][501] ([Intel XE#2905]) +9 other tests skip
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_eudebug@basic-vm-bind.html
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@xe_eudebug@basic-vm-bind.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-bmg: [FAIL][502] ([Intel XE#2364]) -> [DMESG-FAIL][503] ([Intel XE#3468])
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [INCOMPLETE][504] ([Intel XE#1473]) -> [TIMEOUT][505] ([Intel XE#1473])
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html
- shard-bmg: [INCOMPLETE][506] ([Intel XE#1473] / [Intel XE#3468]) -> [TIMEOUT][507] ([Intel XE#1473])
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: [SKIP][508] ([Intel XE#1130]) -> [FAIL][509] ([Intel XE#1600])
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_evict@evict-large-multi-vm-cm.html
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][510] ([Intel XE#1473]) -> [SKIP][511] ([Intel XE#1130])
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_exec_balancer@many-parallel-userptr-invalidate:
- shard-dg2-set2: [SKIP][512] ([Intel XE#1130]) -> [DMESG-WARN][513] ([Intel XE#1727])
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: [SKIP][514] ([Intel XE#288]) -> [SKIP][515] ([Intel XE#1130]) +30 other tests skip
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: [SKIP][516] ([Intel XE#1130]) -> [SKIP][517] ([Intel XE#288]) +26 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: [SKIP][518] ([Intel XE#2360]) -> [SKIP][519] ([Intel XE#1130]) +1 other test skip
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: [SKIP][520] ([Intel XE#1130]) -> [SKIP][521] ([Intel XE#2360])
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: [DMESG-WARN][522] -> [DMESG-WARN][523] ([Intel XE#3467])
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-dg2-set2: [DMESG-WARN][524] ([Intel XE#3343]) -> [SKIP][525] ([Intel XE#1130]) +1 other test skip
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
- shard-bmg: [DMESG-WARN][526] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][527] ([Intel XE#3343])
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-5/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-dg2-set2: [SKIP][528] ([Intel XE#1130]) -> [DMESG-WARN][529] ([Intel XE#3467]) +2 other tests dmesg-warn
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/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: [DMESG-WARN][530] ([Intel XE#3467]) -> [SKIP][531] ([Intel XE#1130]) +2 other tests skip
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-bmg: [FAIL][532] ([Intel XE#3499]) -> [DMESG-FAIL][533] ([Intel XE#3467])
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-6/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: [DMESG-FAIL][534] ([Intel XE#3467]) -> [FAIL][535] ([Intel XE#3499])
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [FAIL][536] ([Intel XE#3499]) -> [DMESG-FAIL][537] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-fail
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-bmg: [DMESG-WARN][538] ([Intel XE#3468]) -> [DMESG-WARN][539] ([Intel XE#3467] / [Intel XE#3468])
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
* igt@xe_oa@invalid-oa-format-id:
- shard-dg2-set2: [SKIP][540] ([Intel XE#3573]) -> [SKIP][541] ([Intel XE#1130]) +9 other tests skip
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@xe_oa@invalid-oa-format-id.html
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@xe_oa@invalid-oa-format-id.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: [SKIP][542] ([Intel XE#1130]) -> [SKIP][543] ([Intel XE#3573]) +6 other tests skip
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][544] ([Intel XE#1130]) -> [SKIP][545] ([Intel XE#979])
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: [SKIP][546] ([Intel XE#1130]) -> [SKIP][547] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_pm@d3cold-mmap-vram.html
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3hot-basic:
- shard-dg2-set2: [DMESG-WARN][548] ([Intel XE#3468]) -> [SKIP][549] ([Intel XE#1130])
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_pm@d3hot-basic.html
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@xe_pm@d3hot-basic.html
* igt@xe_pm@s2idle-basic-exec:
- shard-dg2-set2: [DMESG-WARN][550] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][551] ([Intel XE#1130]) +1 other test skip
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@xe_pm@s2idle-basic-exec.html
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-434/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-dg2-set2: [SKIP][552] ([Intel XE#1130]) -> [DMESG-WARN][553] ([Intel XE#1727] / [Intel XE#3468])
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_pm@s2idle-vm-bind-userptr.html
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-435/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-dg2-set2: [SKIP][554] ([Intel XE#1130]) -> [DMESG-WARN][555] ([Intel XE#3468] / [Intel XE#569])
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_pm@s3-d3hot-basic-exec.html
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-463/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-dg2-set2: [DMESG-WARN][556] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [SKIP][557] ([Intel XE#1130])
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_pm@s3-vm-bind-prefetch.html
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: [SKIP][558] ([Intel XE#944]) -> [SKIP][559] ([Intel XE#1130]) +4 other tests skip
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_query@multigpu-query-engines.html
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-466/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: [SKIP][560] ([Intel XE#1130]) -> [SKIP][561] ([Intel XE#944]) +1 other test skip
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_query@multigpu-query-oa-units.html
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_wedged@basic-wedged:
- shard-dg2-set2: [SKIP][562] ([Intel XE#1130]) -> [DMESG-WARN][563] ([Intel XE#2919])
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_wedged@basic-wedged.html
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@xe_wedged@basic-wedged.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [SKIP][564] ([Intel XE#1130]) -> [ABORT][565] ([Intel XE#3421])
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_wedged@wedged-at-any-timeout.html
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-dg2-436/igt@xe_wedged@wedged-at-any-timeout.html
- shard-bmg: [SKIP][566] ([Intel XE#1130]) -> [ABORT][567] ([Intel XE#3421])
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
[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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[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#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[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#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#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#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[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#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[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#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#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[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#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[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#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[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#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[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#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[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#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#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#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#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[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#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#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[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#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[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#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487
[Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
[Intel XE#3527]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3527
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
[Intel XE#3559]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3559
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[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#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#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#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
[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_8123 -> IGTPW_12186
* Linux: xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a -> xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7
IGTPW_12186: 12186
IGT_8123: fb343db7fc59c760ef0a0c19303e7bcec177dbd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a: a381faddbfc974e7bd57efe953a738415afccd6a
xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7: 4d723d57180a3aafc1a510bc08ef42f4b03671a7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12186/index.html
[-- Attachment #2: Type: text/html, Size: 170550 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ GitLab.Pipeline: warning for GPGPU fill improvements (rev8)
2024-11-25 8:22 [PATCH i-g-t v7 0/6] GPGPU fill improvements Zbigniew Kempczyński
` (8 preceding siblings ...)
2024-11-25 11:20 ` ✗ Xe.CI.Full: " Patchwork
@ 2024-11-25 13:36 ` Patchwork
2024-11-25 13:48 ` ✓ Xe.CI.BAT: success " Patchwork
` (3 subsequent siblings)
13 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-25 13:36 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
== Series Details ==
Series: GPGPU fill improvements (rev8)
URL : https://patchwork.freedesktop.org/series/141352/
State : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1316697 for the overview.
build-containers:build-debian-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/67153724):
Thank you for contributing to freedesktop.org
Fetching changes...
Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/
Checking out 9a6878c1 as detached HEAD (ref is intel/IGTPW_12188)...
Removing build/
Removing lib/i915/perf-configs/__pycache__/
Removing lib/xe/oa-configs/__pycache__/
Removing meson-test-list.txt
Removing scripts/__pycache__/
Skipping Git submodules setup
section_end:1732541480:get_sources
section_start:1732541480:step_script
Executing "step_script" stage of the job script
Using docker image sha256:594aa868d31ee3304dee8cae8a3433c89a6fcfcf6c7d420c04cce22f60147176 for registry.freedesktop.org/wayland/ci-templates/buildah:2019-08-13.0 with digest registry.freedesktop.org/wayland/ci-templates/buildah@sha256:7dbcf22cd2c1c7d49db0dc7b4ab207c3d6a4a09bd81cc3b71a688d3727d8749f ...
section_end:1732541487:step_script
section_start:1732541487:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1732541489:cleanup_file_variables
ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:594aa868d31ee3304dee8cae8a3433c89a6fcfcf6c7d420c04cce22f60147176: image not known (docker.go:650:0s)
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1316697
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ Xe.CI.BAT: success for GPGPU fill improvements (rev8)
2024-11-25 8:22 [PATCH i-g-t v7 0/6] GPGPU fill improvements Zbigniew Kempczyński
` (9 preceding siblings ...)
2024-11-25 13:36 ` ✗ GitLab.Pipeline: warning for GPGPU fill improvements (rev8) Patchwork
@ 2024-11-25 13:48 ` Patchwork
2024-11-25 14:01 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
13 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-25 13:48 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 963 bytes --]
== Series Details ==
Series: GPGPU fill improvements (rev8)
URL : https://patchwork.freedesktop.org/series/141352/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8124_BAT -> XEIGTPW_12188_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8124 -> IGTPW_12188
* Linux: xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7 -> xe-2270-b21f1413ea1860e80fd278112e820e6dadfc9df9
IGTPW_12188: 12188
IGT_8124: 8124
xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7: 4d723d57180a3aafc1a510bc08ef42f4b03671a7
xe-2270-b21f1413ea1860e80fd278112e820e6dadfc9df9: b21f1413ea1860e80fd278112e820e6dadfc9df9
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/index.html
[-- Attachment #2: Type: text/html, Size: 1522 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ i915.CI.BAT: success for GPGPU fill improvements (rev8)
2024-11-25 8:22 [PATCH i-g-t v7 0/6] GPGPU fill improvements Zbigniew Kempczyński
` (10 preceding siblings ...)
2024-11-25 13:48 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2024-11-25 14:01 ` Patchwork
2024-11-25 15:20 ` ✗ Xe.CI.Full: failure " Patchwork
2024-11-25 15:47 ` ✗ i915.CI.Full: " Patchwork
13 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-25 14:01 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
== Series Details ==
Series: GPGPU fill improvements (rev8)
URL : https://patchwork.freedesktop.org/series/141352/
State : success
== Summary ==
CI Bug Log - changes from IGT_8124 -> IGTPW_12188
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/index.html
Participating hosts (44 -> 44)
------------------------------
Additional (1): fi-glk-j4005
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12188 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests@dma_fence_chain:
- fi-bsw-nick: [PASS][1] -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@gem_huc_copy@huc-copy:
- fi-glk-j4005: NOTRUN -> [SKIP][3] ([i915#2190])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-glk-j4005: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@i915_selftest@live@gt_mocs:
- bat-twl-2: NOTRUN -> [ABORT][5] ([i915#12919]) +1 other test abort
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-2: [PASS][6] -> [ABORT][7] ([i915#12061]) +1 other test abort
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/bat-arlh-2/igt@i915_selftest@live@workarounds.html
- bat-mtlp-6: [PASS][8] -> [ABORT][9] ([i915#12061]) +1 other test abort
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@kms_psr@psr-primary-page-flip:
- fi-glk-j4005: NOTRUN -> [SKIP][10] +10 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- bat-dg2-8: [ABORT][11] ([i915#13025]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-dg2-8/igt@core_hotunplug@unbind-rebind.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/bat-dg2-8/igt@core_hotunplug@unbind-rebind.html
* igt@i915_pm_rpm@module-reload:
- bat-adls-6: [FAIL][13] ([i915#12903]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-adls-6/igt@i915_pm_rpm@module-reload.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/bat-adls-6/igt@i915_pm_rpm@module-reload.html
* igt@kms_flip@basic-flip-vs-dpms@a-dp1:
- bat-apl-1: [DMESG-WARN][15] ([i915#12921]) -> [PASS][16] +1 other test pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-apl-1/igt@kms_flip@basic-flip-vs-dpms@a-dp1.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/bat-apl-1/igt@kms_flip@basic-flip-vs-dpms@a-dp1.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [SKIP][17] ([i915#9197]) -> [PASS][18] +3 other tests pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8124/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.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#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#12921]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12921
[i915#13025]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13025
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8124 -> IGTPW_12188
* Linux: CI_DRM_15737 -> CI_DRM_15738
CI-20190529: 20190529
CI_DRM_15737: 4d723d57180a3aafc1a510bc08ef42f4b03671a7 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15738: b21f1413ea1860e80fd278112e820e6dadfc9df9 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12188: 12188
IGT_8124: 8124
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/index.html
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ Xe.CI.Full: failure for GPGPU fill improvements (rev8)
2024-11-25 8:22 [PATCH i-g-t v7 0/6] GPGPU fill improvements Zbigniew Kempczyński
` (11 preceding siblings ...)
2024-11-25 14:01 ` ✓ i915.CI.BAT: " Patchwork
@ 2024-11-25 15:20 ` Patchwork
2024-11-25 15:47 ` ✗ i915.CI.Full: " Patchwork
13 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-25 15:20 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 143381 bytes --]
== Series Details ==
Series: GPGPU fill improvements (rev8)
URL : https://patchwork.freedesktop.org/series/141352/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8124_full -> XEIGTPW_12188_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12188_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12188_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_12188_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [PASS][1] -> [SKIP][2] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-3:
- shard-bmg: [PASS][3] -> [INCOMPLETE][4] +2 other tests incomplete
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-3.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-3.html
* igt@kms_psr@fbc-psr2-no-drrs@edp-1:
- shard-lnl: [PASS][5] -> [FAIL][6] +5 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-8/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-lnl-1/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html
* igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr:
- shard-bmg: [PASS][7] -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-1/igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr.html
#### Warnings ####
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: [SKIP][9] ([Intel XE#2887]) -> [SKIP][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-bmg: [SKIP][11] ([Intel XE#3432]) -> [SKIP][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][13] ([Intel XE#2136]) -> [SKIP][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: [FAIL][15] ([Intel XE#1430]) -> [INCOMPLETE][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_pm_dc@dc6-dpms.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-4/igt@kms_pm_dc@dc6-dpms.html
New tests
---------
New tests have been introduced between XEIGT_8124_full and XEIGTPW_12188_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_12188_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getversion@all-cards:
- shard-dg2-set2: [PASS][17] -> [FAIL][18] ([Intel XE#3440])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@core_getversion@all-cards.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@core_getversion@all-cards.html
* igt@core_hotunplug@hotunbind-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1885])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@core_hotunplug@hotunbind-rebind.html
* igt@fbdev@pan:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#2134])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@fbdev@pan.html
* igt@kms_addfb_basic@addfb25-bad-modifier:
- shard-bmg: [PASS][21] -> [SKIP][22] ([Intel XE#2461])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_addfb_basic@addfb25-bad-modifier.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_addfb_basic@addfb25-bad-modifier.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#2550]) +23 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2327]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#316])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#1124])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#3189])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#2314] / [Intel XE#2894])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#367])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +4 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#787]) +135 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#3432])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@mode-transition@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#314]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#306])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2252]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][41] ([Intel XE#1178])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][42] ([Intel XE#1178]) +1 other test fail
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_content_protection@uevent@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][43] ([Intel XE#1188])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-4/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#308])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2320]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: [PASS][46] -> [INCOMPLETE][47] ([Intel XE#3468]) +1 other test incomplete
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_cursor_crc@cursor-suspend.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-7/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_edge_walk@64x64-top-bottom:
- shard-bmg: [PASS][48] -> [DMESG-FAIL][49] ([Intel XE#3468]) +10 other tests dmesg-fail
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_cursor_edge_walk@64x64-top-bottom.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_cursor_edge_walk@64x64-top-bottom.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2286])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#2291]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#2423] / [i915#2575]) +52 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-dg2-set2: [PASS][54] -> [INCOMPLETE][55] ([Intel XE#1727] / [Intel XE#3226])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2323])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2244])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#2373])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_feature_discovery@display-2x.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [PASS][60] -> [FAIL][61] ([Intel XE#3486])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-bmg: [PASS][62] -> [DMESG-WARN][63] ([Intel XE#2955] / [Intel XE#3468])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_flip@2x-flip-vs-panning-interruptible.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2316]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [PASS][66] -> [FAIL][67] ([Intel XE#886]) +2 other tests fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [FAIL][68] ([Intel XE#3486])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][69] ([Intel XE#301] / [Intel XE#3486])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][70] -> [FAIL][71] ([Intel XE#301]) +1 other test fail
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [FAIL][72] ([Intel XE#301]) +3 other tests fail
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank@b-dp4:
- shard-dg2-set2: [PASS][73] -> [FAIL][74] ([Intel XE#301])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@c-dp4:
- shard-dg2-set2: [PASS][75] -> [FAIL][76] ([Intel XE#301] / [Intel XE#3321] / [Intel XE#3487])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-lnl: [PASS][77] -> [FAIL][78] ([Intel XE#3149] / [Intel XE#886])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-3/igt@kms_flip@plain-flip-ts-check-interruptible.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-lnl-3/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
- shard-bmg: [PASS][79] -> [DMESG-WARN][80] ([Intel XE#3468]) +66 other tests dmesg-warn
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: [PASS][81] -> [FAIL][82] ([Intel XE#2882]) +3 other tests fail
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-bmg: [PASS][83] -> [DMESG-WARN][84] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-warn
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
- shard-dg2-set2: [PASS][85] -> [SKIP][86] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode:
- shard-bmg: [PASS][87] -> [INCOMPLETE][88] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#455]) +7 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2136]) +44 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#656]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#2136]) +16 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [FAIL][94] ([Intel XE#2333]) +3 other tests fail
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-dg2-set2: [PASS][95] -> [INCOMPLETE][96] ([Intel XE#1727])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][97] ([Intel XE#3468])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2311]) +7 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#651]) +5 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#653]) +6 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2312])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-lnl: [PASS][102] -> [DMESG-WARN][103] ([Intel XE#2932] / [Intel XE#877])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2313]) +11 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#346])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_lease@empty-lease:
- shard-bmg: [PASS][106] -> [SKIP][107] ([Intel XE#3189]) +6 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_lease@empty-lease.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_lease@empty-lease.html
* igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128:
- shard-bmg: NOTRUN -> [DMESG-FAIL][108] ([Intel XE#2705])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128.html
* igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256:
- shard-bmg: NOTRUN -> [DMESG-FAIL][109] ([Intel XE#2705] / [Intel XE#3468])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256.html
* igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64:
- shard-bmg: NOTRUN -> [DMESG-FAIL][110] ([Intel XE#3468]) +2 other tests dmesg-fail
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html
* igt@kms_plane_lowres@tiling-x@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [DMESG-WARN][111] ([Intel XE#3468]) +7 other tests dmesg-warn
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-5/igt@kms_plane_lowres@tiling-x@pipe-b-dp-2.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2493])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][113] ([Intel XE#361])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling:
- shard-dg2-set2: [PASS][114] -> [SKIP][115] ([Intel XE#2423] / [i915#2575]) +44 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2763]) +9 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][117] -> [FAIL][118] ([Intel XE#718])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][119] -> [FAIL][120] ([Intel XE#1430])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][121] ([Intel XE#3527])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-6.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-lnl: [PASS][122] -> [DMESG-WARN][123] ([Intel XE#2932])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-lnl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2446]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#1489]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#1489]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2850] / [Intel XE#929])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2136] / [Intel XE#2351]) +19 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2414])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#3414])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2330])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#3414]) +3 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#1435])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][135] -> [SKIP][136] ([Intel XE#1435])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#1280] / [Intel XE#455])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1123])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_eudebug@basic-vm-access-userptr:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2905]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-7/igt@xe_eudebug@basic-vm-access-userptr.html
* igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2905]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-bmg: NOTRUN -> [TIMEOUT][141] ([Intel XE#1473])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-5/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-bmg: [PASS][142] -> [FAIL][143] ([Intel XE#2364])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@xe_evict@evict-large-multi-vm-cm.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-bmg: [PASS][144] -> [TIMEOUT][145] ([Intel XE#1473] / [Intel XE#2472])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@xe_evict@evict-mixed-threads-large.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-5/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_balancer@once-parallel-rebind:
- shard-dg2-set2: [PASS][146] -> [SKIP][147] ([Intel XE#1130]) +92 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@xe_exec_balancer@once-parallel-rebind.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@xe_exec_balancer@once-parallel-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2322])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
* igt@xe_exec_fault_mode@many-execqueues-basic-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#1130]) +90 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-basic-prefetch.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#288]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate:
- shard-bmg: [PASS][151] -> [DMESG-FAIL][152] ([Intel XE#3371])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: [PASS][153] -> [DMESG-WARN][154] ([Intel XE#3467] / [Intel XE#3468])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
- shard-bmg: NOTRUN -> [DMESG-WARN][155] ([Intel XE#3467] / [Intel XE#3468])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
* igt@xe_live_ktest@xe_migrate:
- shard-lnl: [PASS][156] -> [SKIP][157] ([Intel XE#1192])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-8/igt@xe_live_ktest@xe_migrate.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-lnl-5/igt@xe_live_ktest@xe_migrate.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][158] ([Intel XE#1999]) +2 other tests fail
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: NOTRUN -> [FAIL][159] ([Intel XE#3546])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@xe_module_load@many-reload.html
* igt@xe_oa@mmio-triggered-reports:
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#3573]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#1061])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@xe_peer2peer@read.html
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#2427])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@xe_peer2peer@read.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][163] ([Intel XE#1173])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-dg2-set2: NOTRUN -> [ABORT][164] ([Intel XE#1694])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-dg2-set2: [PASS][165] -> [ABORT][166] ([Intel XE#1694] / [Intel XE#1794] / [Intel XE#3468])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_pm@s2idle-vm-bind-userptr.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-bmg: [PASS][167] -> [DMESG-WARN][168] ([Intel XE#1727] / [Intel XE#3468])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@xe_pm@s4-d3hot-basic-exec.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm_residency@idle-residency-on-exec:
- shard-lnl: [PASS][169] -> [FAIL][170] ([Intel XE#2564]) +1 other test fail
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-1/igt@xe_pm_residency@idle-residency-on-exec.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#944]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#944])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@xe_query@multigpu-query-uc-fw-version-guc.html
#### Possible fixes ####
* igt@core_hotunplug@hotreplug-lateclose:
- shard-dg2-set2: [SKIP][173] ([Intel XE#1885]) -> [PASS][174]
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@core_hotunplug@hotreplug-lateclose.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@core_hotunplug@hotreplug-lateclose.html
* igt@core_hotunplug@hotunbind-rebind:
- shard-bmg: [DMESG-WARN][175] ([Intel XE#3468] / [Intel XE#3521]) -> [PASS][176]
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@core_hotunplug@hotunbind-rebind.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@core_hotunplug@hotunbind-rebind.html
* igt@fbdev@info:
- shard-dg2-set2: [SKIP][177] ([Intel XE#2134]) -> [PASS][178]
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@fbdev@info.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@fbdev@info.html
* igt@kms_addfb_basic@addfb25-yf-tiled-legacy:
- shard-bmg: [SKIP][179] ([Intel XE#2461]) -> [PASS][180] +1 other test pass
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-5/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html
* igt@kms_async_flips@test-time-stamp:
- shard-dg2-set2: [INCOMPLETE][181] ([Intel XE#1727]) -> [PASS][182]
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_async_flips@test-time-stamp.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_async_flips@test-time-stamp.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-dg2-set2: [SKIP][183] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][184] +7 other tests pass
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: [SKIP][185] ([Intel XE#2136]) -> [PASS][186] +23 other tests pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-0:
- shard-dg2-set2: [DMESG-WARN][187] ([Intel XE#1727]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-bmg: [SKIP][189] ([Intel XE#829]) -> [PASS][190] +1 other test pass
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][191] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][192]
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_color@ctm-0-50:
- shard-bmg: [SKIP][193] ([Intel XE#3189]) -> [PASS][194] +10 other tests pass
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_color@ctm-0-50.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-5/igt@kms_color@ctm-0-50.html
* igt@kms_color@ctm-0-75:
- shard-bmg: [INCOMPLETE][195] ([Intel XE#1727]) -> [PASS][196] +1 other test pass
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_color@ctm-0-75.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@kms_color@ctm-0-75.html
* igt@kms_cursor_edge_walk@128x128-right-edge:
- shard-bmg: [FAIL][197] -> [PASS][198]
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_cursor_edge_walk@128x128-right-edge.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_cursor_edge_walk@128x128-right-edge.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-bmg: [INCOMPLETE][199] ([Intel XE#1727] / [Intel XE#3226]) -> [PASS][200]
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [SKIP][201] ([Intel XE#2423] / [i915#2575]) -> [PASS][202] +94 other tests pass
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [SKIP][203] ([Intel XE#2291]) -> [PASS][204] +4 other tests pass
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][205] ([Intel XE#2425]) -> [PASS][206]
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][207] ([Intel XE#3321] / [Intel XE#3486]) -> [PASS][208] +1 other test pass
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-bmg: [SKIP][209] ([Intel XE#2316]) -> [PASS][210] +4 other tests pass
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3:
- shard-bmg: [FAIL][211] ([Intel XE#3486]) -> [PASS][212]
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3.html
* igt@kms_frontbuffer_tracking@basic:
- shard-dg2-set2: [SKIP][213] ([Intel XE#2351]) -> [PASS][214]
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_frontbuffer_tracking@basic.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_getfb@getfb2-handle-zero:
- shard-bmg: [SKIP][215] -> [PASS][216]
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_getfb@getfb2-handle-zero.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-4/igt@kms_getfb@getfb2-handle-zero.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-bmg: [DMESG-FAIL][217] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) -> [PASS][218]
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_hdr@bpc-switch-suspend.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][219] ([Intel XE#3012]) -> [PASS][220]
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-bmg: [INCOMPLETE][221] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][222] +1 other test pass
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_plane@plane-panning-bottom-right-suspend.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-bmg: [DMESG-FAIL][223] ([Intel XE#3468]) -> [PASS][224] +25 other tests pass
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_cursor@primary@pipe-c-dp-2-size-128:
- shard-bmg: [INCOMPLETE][225] -> [PASS][226] +1 other test pass
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@kms_plane_cursor@primary@pipe-c-dp-2-size-128.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_plane_cursor@primary@pipe-c-dp-2-size-128.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][227] ([Intel XE#718]) -> [PASS][228]
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_rpm@legacy-planes@plane-41:
- shard-lnl: [DMESG-WARN][229] ([Intel XE#3184]) -> [PASS][230] +1 other test pass
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-8/igt@kms_pm_rpm@legacy-planes@plane-41.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-lnl-1/igt@kms_pm_rpm@legacy-planes@plane-41.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [SKIP][231] ([Intel XE#2446]) -> [PASS][232] +6 other tests pass
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_pm_rpm@system-suspend-modeset.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-lnl: [FAIL][233] ([Intel XE#2808]) -> [PASS][234] +1 other test pass
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-4/igt@kms_psr@psr-cursor-plane-move.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-lnl-5/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [SKIP][235] ([Intel XE#1435]) -> [PASS][236]
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [FAIL][237] ([Intel XE#899]) -> [PASS][238] +1 other test pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vblank@query-forked@pipe-d-dp-2:
- shard-bmg: [DMESG-WARN][239] ([Intel XE#3468]) -> [PASS][240] +107 other tests pass
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_vblank@query-forked@pipe-d-dp-2.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@kms_vblank@query-forked@pipe-d-dp-2.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-bmg: [FAIL][241] ([Intel XE#2364]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch:
- shard-bmg: [DMESG-WARN][243] ([Intel XE#1727]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch.html
* igt@xe_exec_reset@close-execqueues-close-fd:
- shard-bmg: [DMESG-WARN][245] -> [PASS][246] +1 other test pass
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@xe_exec_reset@close-execqueues-close-fd.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@xe_exec_reset@close-execqueues-close-fd.html
* igt@xe_exec_reset@cm-gt-reset:
- shard-dg2-set2: [INCOMPLETE][247] -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_exec_reset@cm-gt-reset.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@xe_exec_reset@cm-gt-reset.html
* igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate:
- shard-bmg: [DMESG-WARN][249] ([Intel XE#3515]) -> [PASS][250]
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-7/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
* igt@xe_exec_threads@threads-hang-fd-userptr:
- shard-dg2-set2: [DMESG-WARN][251] ([Intel XE#1727] / [Intel XE#358]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_exec_threads@threads-hang-fd-userptr.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@xe_exec_threads@threads-hang-fd-userptr.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [DMESG-WARN][253] ([Intel XE#3467]) -> [PASS][254] +3 other tests pass
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-dg2-set2: [DMESG-WARN][255] ([Intel XE#3467]) -> [PASS][256]
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-bmg: [DMESG-WARN][257] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][258]
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-bmg: [DMESG-WARN][259] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
* igt@xe_live_ktest@xe_mocs:
- shard-bmg: [SKIP][261] ([Intel XE#1192]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@xe_live_ktest@xe_mocs.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-4/igt@xe_live_ktest@xe_mocs.html
* igt@xe_pm@d3hot-mocs:
- shard-bmg: [DMESG-WARN][263] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][264] +5 other tests pass
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-5/igt@xe_pm@d3hot-mocs.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@xe_pm@d3hot-mocs.html
* igt@xe_pm@s2idle-basic-exec:
- shard-dg2-set2: [DMESG-WARN][265] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_pm@s2idle-basic-exec.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-bmg: [DMESG-WARN][267] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm@s3-exec-after:
- shard-dg2-set2: [DMESG-WARN][269] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_pm@s3-exec-after.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s3-multiple-execs:
- shard-bmg: [DMESG-WARN][271] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@xe_pm@s3-multiple-execs.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-bmg: [DMESG-WARN][273] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_vm@large-userptr-binds-16777216:
- shard-dg2-set2: [SKIP][275] ([Intel XE#1130]) -> [PASS][276] +181 other tests pass
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_vm@large-userptr-binds-16777216.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@xe_vm@large-userptr-binds-16777216.html
#### Warnings ####
* igt@core_hotunplug@unplug-rescan:
- shard-dg2-set2: [SKIP][277] ([Intel XE#1885]) -> [DMESG-WARN][278] ([Intel XE#3468])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@core_hotunplug@unplug-rescan.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@core_hotunplug@unplug-rescan.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: [SKIP][279] ([Intel XE#2423] / [i915#2575]) -> [SKIP][280] ([Intel XE#623])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@legacy-format:
- shard-dg2-set2: [DMESG-WARN][281] -> [SKIP][282] ([Intel XE#2423] / [i915#2575])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_addfb_basic@legacy-format.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_addfb_basic@legacy-format.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-bmg: [SKIP][283] ([Intel XE#829]) -> [SKIP][284] ([Intel XE#2327])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][285] ([Intel XE#316]) -> [SKIP][286] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][287] ([Intel XE#316]) -> [SKIP][288] ([Intel XE#2136]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][289] ([Intel XE#2136]) -> [SKIP][290] ([Intel XE#316]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][291] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][292] ([Intel XE#316]) +2 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-addfb-size-overflow:
- shard-dg2-set2: [DMESG-WARN][293] ([Intel XE#1727]) -> [SKIP][294] ([Intel XE#2136] / [Intel XE#2351])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_big_fb@x-tiled-addfb-size-overflow.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_big_fb@x-tiled-addfb-size-overflow.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180:
- shard-bmg: [DMESG-FAIL][295] ([Intel XE#3468]) -> [SKIP][296] ([Intel XE#829])
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][297] ([Intel XE#619]) -> [SKIP][298] ([Intel XE#2136] / [Intel XE#2351])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: [SKIP][299] ([Intel XE#829]) -> [SKIP][300] ([Intel XE#1124]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][301] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][302] ([Intel XE#1124]) +2 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][303] ([Intel XE#2136]) -> [SKIP][304] ([Intel XE#1124]) +7 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2-set2: [SKIP][305] ([Intel XE#1124]) -> [SKIP][306] ([Intel XE#2136]) +2 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][307] ([Intel XE#2136]) -> [SKIP][308] ([Intel XE#607])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2-set2: [SKIP][309] ([Intel XE#1124]) -> [SKIP][310] ([Intel XE#2136] / [Intel XE#2351])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: [SKIP][311] ([Intel XE#2423] / [i915#2575]) -> [SKIP][312] ([Intel XE#367]) +3 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: [SKIP][313] ([Intel XE#2423] / [i915#2575]) -> [SKIP][314] ([Intel XE#2191]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][315] ([Intel XE#2191]) -> [SKIP][316] ([Intel XE#2423] / [i915#2575])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: [SKIP][317] ([Intel XE#367]) -> [SKIP][318] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][319] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][320] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][321] ([Intel XE#2136]) -> [SKIP][322] ([Intel XE#2907]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][323] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][324] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][325] ([Intel XE#2136]) -> [SKIP][326] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs:
- shard-bmg: [SKIP][327] -> [SKIP][328] ([Intel XE#2887])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][329] ([Intel XE#2136]) -> [SKIP][330] ([Intel XE#3442])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][331] ([Intel XE#3468]) -> [SKIP][332] ([Intel XE#2136])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][333] -> [SKIP][334] ([Intel XE#2652] / [Intel XE#787])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][335] ([Intel XE#787]) -> [SKIP][336] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-hdmi-a-6.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][337] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][338] ([Intel XE#2136]) +3 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][339] ([Intel XE#2907]) -> [SKIP][340] ([Intel XE#2136]) +1 other test skip
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-dg2-set2: [SKIP][341] ([Intel XE#2423] / [i915#2575]) -> [SKIP][342] ([Intel XE#306]) +1 other test skip
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_chamelium_color@ctm-0-75.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][343] ([Intel XE#306]) -> [SKIP][344] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_chamelium_color@gamma.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: [SKIP][345] ([Intel XE#3189]) -> [SKIP][346] ([Intel XE#2252]) +1 other test skip
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-resolution-list.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][347] ([Intel XE#2423] / [i915#2575]) -> [SKIP][348] ([Intel XE#373]) +10 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg2-set2: [SKIP][349] ([Intel XE#373]) -> [SKIP][350] ([Intel XE#2423] / [i915#2575]) +7 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic:
- shard-dg2-set2: [SKIP][351] ([Intel XE#2423] / [i915#2575]) -> [FAIL][352] ([Intel XE#1178])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_content_protection@atomic.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [FAIL][353] ([Intel XE#1178]) -> [SKIP][354] ([Intel XE#2423] / [i915#2575])
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_content_protection@atomic-dpms.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html
- shard-bmg: [FAIL][355] ([Intel XE#1178]) -> [SKIP][356] ([Intel XE#3189])
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-1/igt@kms_content_protection@atomic-dpms.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: [SKIP][357] ([Intel XE#2423] / [i915#2575]) -> [SKIP][358] ([Intel XE#307]) +1 other test skip
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_content_protection@dp-mst-type-0.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [INCOMPLETE][359] ([Intel XE#2715] / [Intel XE#3468]) -> [SKIP][360] ([Intel XE#2341])
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-5/igt@kms_content_protection@lic-type-0.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-bmg: [SKIP][361] ([Intel XE#3189]) -> [FAIL][362] ([Intel XE#1188])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_content_protection@uevent.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-4/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2-set2: [SKIP][363] ([Intel XE#2423] / [i915#2575]) -> [SKIP][364] ([Intel XE#308])
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_cursor_crc@cursor-random-512x512.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-bmg: [SKIP][365] ([Intel XE#3189]) -> [SKIP][366] ([Intel XE#2320])
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2-set2: [SKIP][367] ([Intel XE#2423] / [i915#2575]) -> [SKIP][368] ([Intel XE#455]) +11 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2-set2: [SKIP][369] ([Intel XE#308]) -> [SKIP][370] ([Intel XE#2423] / [i915#2575])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-512x512.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2-set2: [SKIP][371] ([Intel XE#455]) -> [SKIP][372] ([Intel XE#2423] / [i915#2575]) +8 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-max-size.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-dg2-set2: [SKIP][373] ([Intel XE#2423] / [i915#2575]) -> [SKIP][374] ([Intel XE#309]) +2 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2-set2: [SKIP][375] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][376] ([Intel XE#1727])
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [DMESG-WARN][377] ([Intel XE#877]) -> [SKIP][378] ([Intel XE#2291])
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2-set2: [SKIP][379] ([Intel XE#2136]) -> [SKIP][380] ([Intel XE#455]) +7 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_dsc@dsc-fractional-bpp.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][381] ([Intel XE#2136]) -> [SKIP][382] ([Intel XE#776])
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2-set2: [SKIP][383] ([Intel XE#2423] / [i915#2575]) -> [SKIP][384] ([Intel XE#702])
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_feature_discovery@display-2x.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: [SKIP][385] ([Intel XE#2423] / [i915#2575]) -> [SKIP][386] ([Intel XE#703])
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_feature_discovery@display-3x.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][387] ([Intel XE#1137]) -> [SKIP][388] ([Intel XE#2423] / [i915#2575])
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_feature_discovery@dp-mst.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][389] ([Intel XE#2423] / [i915#2575]) -> [SKIP][390] ([Intel XE#1135])
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_feature_discovery@psr1.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-dg2-set2: [SKIP][391] ([Intel XE#2423] / [i915#2575]) -> [SKIP][392] ([Intel XE#310]) +1 other test skip
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_flip@2x-nonexisting-fb.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [DMESG-WARN][393] ([Intel XE#3468]) -> [SKIP][394] ([Intel XE#2316])
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@basic-flip-vs-dpms:
- shard-dg2-set2: [DMESG-WARN][395] ([Intel XE#1727]) -> [SKIP][396] ([Intel XE#2423] / [i915#2575])
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_flip@basic-flip-vs-dpms.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg2-set2: [SKIP][397] ([Intel XE#2423] / [i915#2575]) -> [FAIL][398] ([Intel XE#301])
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [DMESG-FAIL][399] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][400] ([Intel XE#2423] / [i915#2575])
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [INCOMPLETE][401] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][402] ([Intel XE#2136])
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2-set2: [SKIP][403] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][404] ([Intel XE#455])
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][405] ([Intel XE#455]) -> [SKIP][406] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
- shard-bmg: [SKIP][407] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][408] ([Intel XE#3189])
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2-set2: [SKIP][409] ([Intel XE#455]) -> [SKIP][410] ([Intel XE#2136])
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: [SKIP][411] ([Intel XE#2423] / [i915#2575]) -> [SKIP][412] ([i915#5274])
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][413] ([Intel XE#651]) -> [SKIP][414] ([Intel XE#2136]) +16 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][415] ([Intel XE#3189]) -> [SKIP][416] ([Intel XE#2312])
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-bmg: [FAIL][417] ([Intel XE#2333]) -> [DMESG-FAIL][418] ([Intel XE#3468]) +4 other tests dmesg-fail
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][419] ([Intel XE#2312]) -> [INCOMPLETE][420] ([Intel XE#1727] / [Intel XE#3468])
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [DMESG-FAIL][421] ([Intel XE#3468]) -> [SKIP][422] ([Intel XE#2312])
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][423] ([Intel XE#3189]) -> [FAIL][424] ([Intel XE#2333])
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [DMESG-FAIL][425] ([Intel XE#3468]) -> [FAIL][426] ([Intel XE#2333]) +10 other tests fail
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
- shard-bmg: [SKIP][427] ([Intel XE#2312]) -> [FAIL][428] ([Intel XE#2333]) +6 other tests fail
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [FAIL][429] ([Intel XE#2333]) -> [SKIP][430] ([Intel XE#2312]) +5 other tests skip
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [INCOMPLETE][431] -> [FAIL][432] ([Intel XE#2333])
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: [SKIP][433] ([Intel XE#658]) -> [SKIP][434] ([Intel XE#2136] / [Intel XE#2351])
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][435] ([Intel XE#2311]) -> [SKIP][436] ([Intel XE#3189]) +1 other test skip
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][437] ([Intel XE#2136]) -> [SKIP][438] ([Intel XE#651]) +20 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][439] ([Intel XE#3189]) -> [SKIP][440] ([Intel XE#2311]) +3 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-render:
- shard-dg2-set2: [SKIP][441] ([Intel XE#651]) -> [SKIP][442] ([Intel XE#656])
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-render.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][443] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][444] ([Intel XE#651]) +10 other tests skip
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][445] ([Intel XE#2312]) -> [SKIP][446] ([Intel XE#2311]) +12 other tests skip
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][447] ([Intel XE#2311]) -> [SKIP][448] ([Intel XE#2312]) +8 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][449] ([Intel XE#2136]) -> [SKIP][450] ([Intel XE#656])
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: [SKIP][451] ([Intel XE#651]) -> [SKIP][452] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][453] ([Intel XE#653]) -> [SKIP][454] ([Intel XE#2136]) +17 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][455] ([Intel XE#653]) -> [SKIP][456] ([Intel XE#656])
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][457] ([Intel XE#2313]) -> [SKIP][458] ([Intel XE#2312]) +9 other tests skip
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][459] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][460] ([Intel XE#656]) +2 other tests skip
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
- shard-dg2-set2: [SKIP][461] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][462] ([Intel XE#653]) +7 other tests skip
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-bmg: [INCOMPLETE][463] ([Intel XE#1727] / [Intel XE#2050] / [Intel XE#3468]) -> [FAIL][464] ([Intel XE#2333])
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: [SKIP][465] ([Intel XE#2136]) -> [SKIP][466] ([Intel XE#1158])
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-bmg: [SKIP][467] ([Intel XE#2313]) -> [SKIP][468] ([Intel XE#3189]) +1 other test skip
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][469] ([Intel XE#2312]) -> [SKIP][470] ([Intel XE#2313]) +15 other tests skip
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][471] ([Intel XE#653]) -> [SKIP][472] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
- shard-bmg: [SKIP][473] ([Intel XE#3189]) -> [SKIP][474] ([Intel XE#2313]) +2 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-dg2-set2: [SKIP][475] ([Intel XE#2136]) -> [SKIP][476] ([Intel XE#653]) +26 other tests skip
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-suspend.html
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-bmg: [SKIP][477] -> [SKIP][478] ([Intel XE#2502])
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_getfb@getfb-reject-ccs.html
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-7/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: [SKIP][479] ([Intel XE#2136]) -> [SKIP][480] ([Intel XE#346])
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_joiner@basic-big-joiner.html
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: [SKIP][481] ([Intel XE#346]) -> [SKIP][482] ([Intel XE#2136])
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-bmg: [INCOMPLETE][483] ([Intel XE#2566] / [Intel XE#3468]) -> [INCOMPLETE][484] ([Intel XE#1035] / [Intel XE#2566] / [Intel XE#3468])
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-7/igt@kms_plane@pixel-format-source-clamping.html
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane_cursor@primary:
- shard-dg2-set2: [INCOMPLETE][485] -> [SKIP][486] ([Intel XE#2423] / [i915#2575])
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_plane_cursor@primary.html
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_plane_cursor@primary.html
* igt@kms_plane_cursor@viewport:
- shard-bmg: [FAIL][487] -> [DMESG-FAIL][488] ([Intel XE#3468])
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_plane_cursor@viewport.html
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@kms_plane_cursor@viewport.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: [SKIP][489] ([Intel XE#2423] / [i915#2575]) -> [FAIL][490] ([Intel XE#361])
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size.html
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][491] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][492] ([Intel XE#2423] / [i915#2575])
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: [SKIP][493] ([Intel XE#2136]) -> [SKIP][494] ([Intel XE#870]) +1 other test skip
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_pm_backlight@fade.html
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: [SKIP][495] ([Intel XE#3309]) -> [SKIP][496] ([Intel XE#2136])
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc9-dpms:
- shard-dg2-set2: [SKIP][497] ([Intel XE#2136] / [Intel XE#2351]) -> [DMESG-WARN][498] ([Intel XE#1727] / [Intel XE#3468])
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_pm_dc@dc9-dpms.html
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2-set2: [SKIP][499] ([Intel XE#2136]) -> [FAIL][500] ([Intel XE#3527])
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_pm_lpsp@kms-lpsp.html
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-dg2-set2: [DMESG-WARN][501] ([Intel XE#1727] / [Intel XE#3468]) -> [INCOMPLETE][502] ([Intel XE#1727] / [Intel XE#3468])
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_pm_rpm@cursor-dpms.html
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: [SKIP][503] ([Intel XE#3189]) -> [SKIP][504] ([Intel XE#1489])
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][505] ([Intel XE#1489]) -> [SKIP][506] ([Intel XE#2136]) +8 other tests skip
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][507] ([Intel XE#2136]) -> [SKIP][508] ([Intel XE#1489]) +9 other tests skip
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][509] ([Intel XE#2136]) -> [SKIP][510] ([Intel XE#1122]) +1 other test skip
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_psr2_su@page_flip-nv12.html
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][511] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][512] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-dg2-set2: [SKIP][513] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][514] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_psr@fbc-psr-no-drrs.html
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-bmg: [SKIP][515] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][516] ([Intel XE#3189]) +1 other test skip
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@kms_psr@fbc-psr-sprite-render.html
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-dg2-set2: [SKIP][517] ([Intel XE#2136]) -> [SKIP][518] ([Intel XE#2850] / [Intel XE#929]) +11 other tests skip
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_psr@fbc-psr2-dpms.html
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][519] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][520] ([Intel XE#2136]) +4 other tests skip
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@psr-basic:
- shard-bmg: [SKIP][521] ([Intel XE#3189]) -> [SKIP][522] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_psr@psr-basic.html
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@kms_psr@psr-basic.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: [SKIP][523] ([Intel XE#2939]) -> [SKIP][524] ([Intel XE#2136] / [Intel XE#2351])
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: [SKIP][525] ([Intel XE#3414]) -> [SKIP][526] ([Intel XE#2423] / [i915#2575])
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_rotation_crc@bad-pixel-format.html
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][527] ([Intel XE#1127]) -> [SKIP][528] ([Intel XE#2423] / [i915#2575])
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][529] ([Intel XE#2423] / [i915#2575]) -> [SKIP][530] ([Intel XE#1127])
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2-set2: [SKIP][531] ([Intel XE#2423] / [i915#2575]) -> [SKIP][532] ([Intel XE#3414]) +1 other test skip
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-270.html
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-bmg: [SKIP][533] ([Intel XE#2413]) -> [SKIP][534] ([Intel XE#3189])
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-none.html
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [FAIL][535] ([Intel XE#1729]) -> [SKIP][536] ([Intel XE#362])
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][537] ([Intel XE#2423] / [i915#2575]) -> [SKIP][538] ([Intel XE#1500])
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: [SKIP][539] ([Intel XE#2450]) -> [SKIP][540] ([Intel XE#540])
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-1/igt@kms_tv_load_detect@load-detect.html
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: [SKIP][541] ([Intel XE#3189]) -> [SKIP][542] ([Intel XE#1499])
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-drrs.html
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-4/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: [SKIP][543] ([Intel XE#756]) -> [SKIP][544] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: [SKIP][545] ([Intel XE#2423] / [i915#2575]) -> [SKIP][546] ([Intel XE#756]) +1 other test skip
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: [SKIP][547] ([Intel XE#2423] / [i915#2575]) -> [SKIP][548] ([Intel XE#1091] / [Intel XE#2849])
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@sriov_basic@enable-vfs-autoprobe-off.html
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][549] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][550] ([Intel XE#2423] / [i915#2575])
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute_preempt@compute-threadgroup-preempt:
- shard-dg2-set2: [SKIP][551] ([Intel XE#1130]) -> [SKIP][552] ([Intel XE#1280] / [Intel XE#455])
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_compute_preempt@compute-threadgroup-preempt.html
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@xe_compute_preempt@compute-threadgroup-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: [SKIP][553] ([Intel XE#1130]) -> [SKIP][554] ([Intel XE#1123])
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: [SKIP][555] ([Intel XE#1130]) -> [SKIP][556] ([Intel XE#1126])
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: [SKIP][557] ([Intel XE#1130]) -> [SKIP][558] ([Intel XE#2905]) +11 other tests skip
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_eudebug_online@pagefault-write:
- shard-dg2-set2: [SKIP][559] -> [SKIP][560] ([Intel XE#1130])
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@xe_eudebug_online@pagefault-write.html
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@xe_eudebug_online@pagefault-write.html
* igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram:
- shard-dg2-set2: [SKIP][561] ([Intel XE#2905]) -> [SKIP][562] ([Intel XE#1130]) +2 other tests skip
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html
* igt@xe_exec_fault_mode@once-basic-imm:
- shard-dg2-set2: [SKIP][563] ([Intel XE#1130]) -> [SKIP][564] ([Intel XE#288]) +26 other tests skip
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_exec_fault_mode@once-basic-imm.html
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@xe_exec_fault_mode@once-basic-imm.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: [SKIP][565] ([Intel XE#288]) -> [SKIP][566] ([Intel XE#1130]) +16 other tests skip
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/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][567] ([Intel XE#2360]) -> [SKIP][568] ([Intel XE#1130])
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-dg2-set2: [SKIP][569] ([Intel XE#1130]) -> [SKIP][570] ([Intel XE#2360])
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-dg2-set2: [SKIP][571] ([Intel XE#1130]) -> [DMESG-WARN][572] ([Intel XE#3343])
[571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
[572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-dg2-set2: [DMESG-WARN][573] ([Intel XE#3343]) -> [SKIP][574] ([Intel XE#1130])
[573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: [DMESG-FAIL][575] ([Intel XE#3467] / [Intel XE#3468]) -> [FAIL][576] ([Intel XE#3499])
[575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [FAIL][577] ([Intel XE#3499]) -> [DMESG-FAIL][578] ([Intel XE#3467] / [Intel XE#3468])
[577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
- shard-bmg: [FAIL][579] ([Intel XE#3499]) -> [DMESG-FAIL][580] ([Intel XE#3467])
[579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
[580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-dg2-set2: [DMESG-WARN][581] ([Intel XE#3467]) -> [SKIP][582] ([Intel XE#1130]) +2 other tests skip
[581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
- shard-dg2-set2: [SKIP][583] ([Intel XE#1130]) -> [DMESG-WARN][584] ([Intel XE#3467]) +3 other tests dmesg-warn
[583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
[584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-436/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: [SKIP][585] ([Intel XE#2833]) -> [SKIP][586] ([Intel XE#1192])
[585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-3/igt@xe_live_ktest@xe_eudebug.html
[586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-8/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_module_load@reload:
- shard-bmg: [DMESG-WARN][587] ([Intel XE#3468]) -> [DMESG-WARN][588] ([Intel XE#3467])
[587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-bmg-6/igt@xe_module_load@reload.html
[588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-bmg-1/igt@xe_module_load@reload.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: [SKIP][589] ([Intel XE#3573]) -> [SKIP][590] ([Intel XE#1130]) +4 other tests skip
[589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html
[590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_oa@invalid-remove-userspace-config:
- shard-dg2-set2: [SKIP][591] ([Intel XE#1130]) -> [SKIP][592] ([Intel XE#3573]) +6 other tests skip
[591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_oa@invalid-remove-userspace-config.html
[592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@xe_oa@invalid-remove-userspace-config.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][593] ([Intel XE#1130]) -> [SKIP][594] ([Intel XE#1337])
[593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_pat@display-vs-wb-transient.html
[594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][595] ([Intel XE#979]) -> [SKIP][596] ([Intel XE#1130])
[595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html
[596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [SKIP][597] ([Intel XE#1061]) -> [FAIL][598] ([Intel XE#1173])
[597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_peer2peer@write.html
[598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: [SKIP][599] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][600] ([Intel XE#1130])
[599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_pm@d3cold-mmap-system.html
[600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-dg2-set2: [SKIP][601] ([Intel XE#1130]) -> [DMESG-WARN][602] ([Intel XE#1727] / [Intel XE#3468])
[601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_pm@s2idle-multiple-execs.html
[602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][603] ([Intel XE#1130]) -> [SKIP][604] ([Intel XE#2284] / [Intel XE#366])
[603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_pm@s3-d3cold-basic-exec.html
[604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-463/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: [DMESG-WARN][605] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [SKIP][606] ([Intel XE#1130])
[605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_pm@s3-vm-bind-userptr.html
[606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-466/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: [SKIP][607] ([Intel XE#1130]) -> [ABORT][608] ([Intel XE#1794] / [Intel XE#3468])
[607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_pm@s4-vm-bind-unbind-all.html
[608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-432/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_query@multigpu-query-gt-list:
- shard-dg2-set2: [SKIP][609] ([Intel XE#944]) -> [SKIP][610] ([Intel XE#1130]) +1 other test skip
[609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-436/igt@xe_query@multigpu-query-gt-list.html
[610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-dg2-set2: [SKIP][611] ([Intel XE#1130]) -> [SKIP][612] ([Intel XE#944]) +2 other tests skip
[611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-huc.html
[612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_tlb@basic-tlb:
- shard-dg2-set2: [SKIP][613] ([Intel XE#1130]) -> [FAIL][614] ([Intel XE#2922])
[613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-466/igt@xe_tlb@basic-tlb.html
[614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-435/igt@xe_tlb@basic-tlb.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-dg2-set2: [ABORT][615] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][616] ([Intel XE#1130])
[615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8124/shard-dg2-463/igt@xe_wedged@wedged-mode-toggle.html
[616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/shard-dg2-434/igt@xe_wedged@wedged-mode-toggle.html
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[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#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#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[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#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694
[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#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[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#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#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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323
[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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[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#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2461]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2461
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2564
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[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#2808]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2808
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[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#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#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922
[Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[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#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[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#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#3189]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3189
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[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#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#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#3515]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3515
[Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521
[Intel XE#3527]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3527
[Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#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#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[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#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
[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_8124 -> IGTPW_12188
* Linux: xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7 -> xe-2270-b21f1413ea1860e80fd278112e820e6dadfc9df9
IGTPW_12188: 12188
IGT_8124: 8124
xe-2269-4d723d57180a3aafc1a510bc08ef42f4b03671a7: 4d723d57180a3aafc1a510bc08ef42f4b03671a7
xe-2270-b21f1413ea1860e80fd278112e820e6dadfc9df9: b21f1413ea1860e80fd278112e820e6dadfc9df9
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12188/index.html
[-- Attachment #2: Type: text/html, Size: 185487 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ i915.CI.Full: failure for GPGPU fill improvements (rev8)
2024-11-25 8:22 [PATCH i-g-t v7 0/6] GPGPU fill improvements Zbigniew Kempczyński
` (12 preceding siblings ...)
2024-11-25 15:20 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2024-11-25 15:47 ` Patchwork
2024-11-26 11:52 ` Zbigniew Kempczyński
13 siblings, 1 reply; 16+ messages in thread
From: Patchwork @ 2024-11-25 15:47 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
== Series Details ==
Series: GPGPU fill improvements (rev8)
URL : https://patchwork.freedesktop.org/series/141352/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15738_full -> IGTPW_12188_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12188_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12188_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/index.html
Participating hosts (11 -> 10)
------------------------------
Missing (1): shard-dg2-set2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12188_full:
### IGT changes ###
#### Possible regressions ####
* igt@core_getversion@all-cards:
- shard-dg2: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-8/igt@core_getversion@all-cards.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@core_getversion@all-cards.html
* igt@drm_fdinfo@context-close-stress:
- shard-dg2: [PASS][3] -> [SKIP][4] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-2/igt@drm_fdinfo@context-close-stress.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@drm_fdinfo@context-close-stress.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-dg2: [PASS][5] -> [WARN][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-1/igt@i915_suspend@basic-s2idle-without-i915.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [ABORT][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][8] -> [ABORT][9] +1 other test abort
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: [PASS][10] -> [SKIP][11] +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-1/igt@kms_pm_rpm@dpms-non-lpsp.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@perf@gen12-oa-tlb-invalidate:
- shard-dg1: NOTRUN -> [INCOMPLETE][12] +1 other test incomplete
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@perf@gen12-oa-tlb-invalidate.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][13] ([i915#8708]) -> [INCOMPLETE][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
New tests
---------
New tests have been introduced between CI_DRM_15738_full and IGTPW_12188_full:
### New IGT tests (1) ###
* igt@gem_gpgpu_fill@offset-16x16:
- Statuses : 4 pass(s) 1 skip(s)
- Exec time: [0.0, 0.03] s
Known issues
------------
Here are the changes found in IGTPW_12188_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_allocator@gem-pool:
- shard-dg2: [PASS][15] -> [SKIP][16] +19 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-1/igt@api_intel_allocator@gem-pool.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@api_intel_allocator@gem-pool.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8411])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#11078]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [ABORT][19] ([i915#11814] / [i915#11815])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
- shard-tglu: NOTRUN -> [ABORT][20] ([i915#12817] / [i915#5507])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-4/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8414]) +23 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@busy-idle@vcs1:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#8414]) +8 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@drm_fdinfo@busy-idle@vcs1.html
* igt@drm_fdinfo@memory-info-idle:
- shard-dg2: [PASS][23] -> [SKIP][24] ([i915#12506]) +4 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-1/igt@drm_fdinfo@memory-info-idle.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@drm_fdinfo@memory-info-idle.html
* igt@fbdev@unaligned-read:
- shard-dg2: [PASS][25] -> [SKIP][26] ([i915#2582]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@fbdev@unaligned-read.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@fbdev@unaligned-read.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#7697])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#3555] / [i915#9323])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#9323])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#13008])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@gem_ccs@large-ctrl-surf-copy.html
- shard-tglu: NOTRUN -> [SKIP][31] ([i915#13008])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][32] -> [INCOMPLETE][33] ([i915#7297])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][34] ([i915#6335])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#6335])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#8562])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@hang:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#8555])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@hostile:
- shard-tglu-1: NOTRUN -> [FAIL][38] ([i915#11980] / [i915#12580])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#5882]) +7 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#280])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@gem_ctx_sseu@engines.html
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#280]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@gem_ctx_sseu@engines.html
- shard-tglu: NOTRUN -> [SKIP][42] ([i915#280])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@gem_ctx_sseu@engines.html
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#280])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: NOTRUN -> [FAIL][44] ([i915#12714] / [i915#5784])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4771])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#4525])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_capture@capture-invisible:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#6334]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-1/igt@gem_exec_capture@capture-invisible.html
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#6334]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4812]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#3539])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@gem_exec_flush@basic-uc-prw-default.html
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#3539])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#3281]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3281]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#3281]) +14 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4812]) +7 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][58] ([i915#11441])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-5/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4860]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#12936])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#12193])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-glk: NOTRUN -> [SKIP][64] ([i915#4613]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-glk2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4565])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][67] -> [TIMEOUT][68] ([i915#5493]) +1 other test timeout
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify:
- shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#4613]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@gem_lmem_swapping@verify.html
* igt@gem_lmem_swapping@verify-random:
- shard-dg2: [PASS][70] -> [SKIP][71] ([i915#12936]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-7/igt@gem_lmem_swapping@verify-random.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4077]) +17 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4083]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4083]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@gem_mmap_wc@write-read.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#3282]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][76] ([i915#2658])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-glk2/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282]) +6 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@gem_pwrite@basic-exhaustion.html
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3282]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#4270]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#12975])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-tglu: [PASS][81] -> [SKIP][82] ([i915#4270]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-6/igt@gem_pxp@reject-modify-context-protection-off-2.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-2/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4270]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#2575] / [i915#5190]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#5190] / [i915#8428]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#4079])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#4885])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#4077]) +13 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#4879])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@access-control:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#3297])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#3297] / [i915#4880])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#3297]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#3281] / [i915#3297])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#3297]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_vm_create@invalid-create:
- shard-snb: NOTRUN -> [SKIP][97] +43 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb7/igt@gem_vm_create@invalid-create.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856]) +5 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-3/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#2527]) +6 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: NOTRUN -> [ABORT][103] ([i915#9820])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#7178])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#8399])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@i915_pm_freq_api@freq-basic-api.html
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#8399])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#8399])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#6590]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: NOTRUN -> [WARN][109] ([i915#2681]) +4 other tests warn
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rps@thresholds-idle:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#11681])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@i915_pm_rps@thresholds-idle.html
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#11681])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#6245])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-7/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][113] ([i915#9311]) +1 other test dmesg-warn
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][114] ([i915#7443])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu: NOTRUN -> [SKIP][115] ([i915#7707])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-6/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#7707])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4212])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#12454] / [i915#12712])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#1769] / [i915#3555])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#2575]) +90 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#5286]) +6 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5286]) +5 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#5286]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/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-hflip:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#5286]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][125] +57 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#3638]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5190]) +9 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_busy@extended-modeset-hang-newfb-with-reset:
- shard-rkl: [PASS][129] -> [DMESG-WARN][130] ([i915#12964]) +52 other tests dmesg-warn
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-1/igt@kms_busy@extended-modeset-hang-newfb-with-reset.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@kms_busy@extended-modeset-hang-newfb-with-reset.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#6095]) +44 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-4/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#10307] / [i915#6095]) +112 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#12313]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#12805])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#6095]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#6095]) +49 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#12313])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#6095]) +101 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][140] +226 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-glk5/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#6095]) +170 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@mode-transition:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#3742])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#3742])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#7828]) +4 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#7828]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#7828]) +4 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-6/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#7828]) +5 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#7828]) +11 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#3555]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@kms_color@deep-color.html
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#3555] / [i915#9979])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-7/igt@kms_color@deep-color.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#6944] / [i915#9424])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@kms_content_protection@content-type-change.html
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#9424])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-5/igt@kms_content_protection@content-type-change.html
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#9424])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@kms_content_protection@content-type-change.html
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#9424])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#3299])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#3299])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-7/igt@kms_content_protection@legacy.html
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#7118] / [i915#9424])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#7118] / [i915#9424])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#12976]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#12976])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#12976])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#4103])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#4103] / [i915#4213])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-snb: NOTRUN -> [FAIL][165] ([i915#12170])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][166] ([i915#11968])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#9723])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#1769] / [i915#3555] / [i915#3804])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#3804])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
- shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#3804])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#3555]) +4 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [PASS][172] -> [SKIP][173] ([i915#12402])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#8812])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#3840])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#3840])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#4854])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@kms_feature_discovery@chamelium.html
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#4854])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#1839]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_feature_discovery@display-3x.html
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#1839])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-7/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#658])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#658])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#9934]) +5 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#9934]) +2 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#3637]) +7 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-2/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#9934]) +8 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#3637]) +7 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-snb: [PASS][189] -> [FAIL][190] ([i915#2122]) +4 other tests fail
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb2/igt@kms_flip@plain-flip-ts-check-interruptible.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb6/igt@kms_flip@plain-flip-ts-check-interruptible.html
- shard-dg2: [PASS][191] -> [FAIL][192] ([i915#2122])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-1/igt@kms_flip@plain-flip-ts-check-interruptible.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_flip@plain-flip-ts-check-interruptible.html
- shard-rkl: [PASS][193] -> [FAIL][194] ([i915#11989] / [i915#2122])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-2/igt@kms_flip@plain-flip-ts-check-interruptible.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible.html
- shard-dg1: [PASS][195] -> [FAIL][196] ([i915#11989] / [i915#12517] / [i915#2122])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-18/igt@kms_flip@plain-flip-ts-check-interruptible.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1:
- shard-dg2: NOTRUN -> [FAIL][197] ([i915#2122]) +2 other tests fail
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html
- shard-rkl: [PASS][198] -> [FAIL][199] ([i915#2122]) +1 other test fail
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-2/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a4:
- shard-dg1: [PASS][200] -> [FAIL][201] ([i915#2122]) +3 other tests fail
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-18/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a4.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a4.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-rkl: NOTRUN -> [FAIL][202] ([i915#12840] / [i915#2122])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@kms_flip@wf_vblank-ts-check-interruptible.html
- shard-dg1: NOTRUN -> [FAIL][203] ([i915#12517] / [i915#12840] / [i915#2122])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a3:
- shard-dg1: NOTRUN -> [FAIL][204] ([i915#12517])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][205] ([i915#2122])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a3:
- shard-dg1: NOTRUN -> [FAIL][206] ([i915#11989]) +1 other test fail
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1:
- shard-tglu: NOTRUN -> [FAIL][207] ([i915#2122]) +5 other tests fail
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-7/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-1/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-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#2587] / [i915#2672]) +4 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#2672])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#2672]) +4 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#2587] / [i915#2672] / [i915#3555])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#2587] / [i915#2672]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#2672] / [i915#3555]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#2672] / [i915#3555]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#2587] / [i915#2672]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555]) +4 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555] / [i915#5190])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-snb: [PASS][220] -> [SKIP][221] +5 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#5354]) +28 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][223] +57 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
- shard-dg1: NOTRUN -> [SKIP][224] +46 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#3458]) +22 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#8708]) +23 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#1825]) +10 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][228] +70 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#10433] / [i915#3458])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#3458]) +23 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#8708]) +19 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#3023]) +3 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#13012])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch:
- shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8228])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_hdr@bpc-switch.html
- shard-dg2: [PASS][235] -> [SKIP][236] ([i915#3555] / [i915#8228])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-10/igt@kms_hdr@bpc-switch.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-7/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#12713])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#12394])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#12394])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#12339])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#6301])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][244] ([i915#12169])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-glk5/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][245] ([i915#10647]) +1 other test fail
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-glk5/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#8806])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#5354] / [i915#9423])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#6953])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#12247]) +4 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#12247]) +4 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#12247]) +2 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#12247]) +4 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#2575] / [i915#9423]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#12247] / [i915#9423])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#12247]) +7 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-dg2: [PASS][256] -> [SKIP][257] ([i915#2575] / [i915#9423]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#9812])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-6/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#5354])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu: NOTRUN -> [SKIP][260] ([i915#9685])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][261] -> [SKIP][262] ([i915#9340])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#8430])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#8430])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: [PASS][265] -> [SKIP][266] ([i915#9519])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#12937])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-dg2: [PASS][268] -> [SKIP][269] ([i915#12937]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-2/igt@kms_pm_rpm@drm-resources-equal.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#9519]) +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#9519])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][272] ([i915#9519]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#9519])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][274] -> [SKIP][275] ([i915#9519]) +3 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#6524]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-snb: NOTRUN -> [SKIP][277] ([i915#11520]) +2 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#11520]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][279] ([i915#11520]) +3 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-glk9/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#11520]) +6 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#11520]) +5 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#11520]) +9 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#11520]) +7 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#9683])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-tglu: NOTRUN -> [SKIP][285] ([i915#9683])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-5/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-sprite-plane-move:
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#9732]) +16 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-6/igt@kms_psr@fbc-psr-sprite-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#9732]) +13 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@pr-cursor-blt:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#1072] / [i915#9732]) +3 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@kms_psr@pr-cursor-blt.html
* igt@kms_psr@pr-suspend:
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#1072] / [i915#9732]) +21 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@kms_psr@pr-suspend.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#1072] / [i915#9732]) +18 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@kms_psr@psr-cursor-render.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#5289]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#5190]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#5289])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#12755] / [i915#5190]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#5289]) +2 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#12755]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#3555]) +9 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][298] ([i915#3555]) +3 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#3555]) +3 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_framebuffer:
- shard-glk: NOTRUN -> [ABORT][300] ([i915#12231]) +1 other test abort
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-glk4/igt@kms_selftest@drm_framebuffer.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [PASS][301] -> [FAIL][302] ([IGT#160])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@kms_sysfs_edid_timing.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@kms_sysfs_edid_timing.html
- shard-dg1: NOTRUN -> [FAIL][303] ([IGT#160] / [i915#6493])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#8623])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#8623])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#8623])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#8623])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][308] ([i915#8623])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#9906])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@negative-basic:
- shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#3555] / [i915#9906])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-tglu: NOTRUN -> [SKIP][311] ([i915#9906])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-2/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#9906])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#2437] / [i915#9412])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-glk: NOTRUN -> [SKIP][314] ([i915#2437])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-glk9/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#2437])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-10/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#2437] / [i915#9412])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#2436])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@non-zero-reason:
- shard-dg2: NOTRUN -> [FAIL][318] ([i915#9100]) +1 other test fail
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@perf@non-zero-reason.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#2433])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@all-busy-check-all:
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#12506]) +7 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@perf_pmu@all-busy-check-all.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][321] ([i915#12549] / [i915#6806]) +1 other test fail
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-2/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][322] ([i915#11823])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@perf_pmu@module-unload.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][323] -> [FAIL][324] ([i915#4349]) +1 other test fail
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][325] ([i915#8516])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@perf_pmu@rc6-all-gts.html
* igt@prime_busy@hang:
- shard-rkl: [PASS][326] -> [DMESG-WARN][327] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-4/igt@prime_busy@hang.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-3/igt@prime_busy@hang.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: NOTRUN -> [WARN][328] ([i915#9351])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@prime_mmap@test_aperture_limit.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][329] ([i915#9351])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_mmap@test_reprime:
- shard-dg2: [PASS][330] -> [SKIP][331] ([i915#2575]) +139 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@prime_mmap@test_reprime.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@prime_mmap@test_reprime.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#3291] / [i915#3708])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-1/igt@prime_vgem@basic-fence-read.html
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#3708])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@prime_vgem@basic-fence-read.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][334] ([i915#9917]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-2/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg1: NOTRUN -> [SKIP][335] ([i915#9917])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [FAIL][336] ([i915#12910])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#9917])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][338] +5 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@tools_test@sysfs_l3_parity.html
* igt@tools_test@tools_test:
- shard-dg2: NOTRUN -> [FAIL][339] ([i915#12875])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@tools_test@tools_test.html
* igt@vgem_basic@unload:
- shard-rkl: NOTRUN -> [DMESG-WARN][340] ([i915#12964]) +5 other tests dmesg-warn
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@vgem_basic@unload.html
#### Possible fixes ####
* igt@core_setmaster@master-drop-set-shared-fd:
- shard-dg2: [SKIP][341] -> [PASS][342] +26 other tests pass
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@core_setmaster@master-drop-set-shared-fd.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-5/igt@core_setmaster@master-drop-set-shared-fd.html
* igt@gem_eio@in-flight-suspend:
- shard-rkl: [DMESG-WARN][343] ([i915#12964]) -> [PASS][344] +44 other tests pass
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-7/igt@gem_eio@in-flight-suspend.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-1/igt@gem_eio@in-flight-suspend.html
* igt@gem_lmem_swapping@verify:
- shard-dg2: [SKIP][345] ([i915#12936]) -> [PASS][346] +1 other test pass
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_lmem_swapping@verify.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@gem_lmem_swapping@verify.html
* igt@gem_mmap_offset@close-race:
- shard-snb: [INCOMPLETE][347] -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb4/igt@gem_mmap_offset@close-race.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb2/igt@gem_mmap_offset@close-race.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-tglu: [SKIP][349] ([i915#4270]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-4/igt@gem_pxp@reject-modify-context-protection-off-1.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: [FAIL][351] -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-5/igt@gem_tiled_swapping@non-threaded.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-3/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-rkl: [DMESG-WARN][353] ([i915#12917] / [i915#12964]) -> [PASS][354] +1 other test pass
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-5/igt@gem_userptr_blits@map-fixed-invalidate.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_vm_create@execbuf:
- shard-dg2: [SKIP][355] ([i915#2575]) -> [PASS][356] +163 other tests pass
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_vm_create@execbuf.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@gem_vm_create@execbuf.html
* igt@i915_module_load@reload-no-display:
- shard-tglu: [DMESG-WARN][357] -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-4/igt@i915_module_load@reload-no-display.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-2/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [ABORT][359] ([i915#9820]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [ABORT][361] ([i915#9820]) -> [PASS][362]
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-rkl: [FAIL][363] ([i915#12942]) -> [PASS][364] +1 other test pass
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-1/igt@i915_pm_rc6_residency@rc6-accuracy.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rpm@debugfs-read:
- shard-dg2: [SKIP][365] ([i915#13014]) -> [PASS][366]
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@i915_pm_rpm@debugfs-read.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-5/igt@i915_pm_rpm@debugfs-read.html
* igt@i915_pm_rpm@reg-read-ioctl:
- shard-rkl: [SKIP][367] -> [PASS][368] +1 other test pass
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-3/igt@i915_pm_rpm@reg-read-ioctl.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@i915_pm_rpm@reg-read-ioctl.html
* igt@i915_selftest@live:
- shard-rkl: [DMESG-FAIL][369] -> [PASS][370] +1 other test pass
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-5/igt@i915_selftest@live.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@i915_selftest@live.html
* igt@i915_selftest@live@sanitycheck:
- shard-tglu: [ABORT][371] ([i915#13010]) -> [PASS][372] +1 other test pass
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-7/igt@i915_selftest@live@sanitycheck.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-5/igt@i915_selftest@live@sanitycheck.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-dg2: [WARN][373] -> [PASS][374]
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@i915_suspend@basic-s3-without-i915.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-5/igt@i915_suspend@basic-s3-without-i915.html
- shard-rkl: [INCOMPLETE][375] ([i915#12964] / [i915#4817]) -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html
- shard-dg1: [DMESG-WARN][377] ([i915#4391] / [i915#4423]) -> [PASS][378]
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-14/igt@i915_suspend@basic-s3-without-i915.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: [DMESG-FAIL][379] ([i915#12964]) -> [PASS][380] +1 other test pass
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-3/igt@i915_suspend@debugfs-reader.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@i915_suspend@debugfs-reader.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-snb: [FAIL][381] ([i915#2346]) -> [PASS][382]
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][383] ([i915#2122]) -> [PASS][384] +5 other tests pass
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@absolute-wf_vblank-interruptible:
- shard-dg1: [DMESG-WARN][385] ([i915#4423]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-13/igt@kms_flip@absolute-wf_vblank-interruptible.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@kms_flip@absolute-wf_vblank-interruptible.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-rkl: [FAIL][387] ([i915#11989] / [i915#2122]) -> [PASS][388]
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2:
- shard-rkl: [FAIL][389] ([i915#11989]) -> [PASS][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-snb: [SKIP][391] -> [PASS][392] +1 other test pass
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: [SKIP][393] ([i915#3555] / [i915#8228]) -> [PASS][394]
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-8/igt@kms_hdr@invalid-metadata-sizes.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-dg2: [SKIP][395] ([i915#2575] / [i915#9423]) -> [PASS][396] +4 other tests pass
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][397] ([i915#4281]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2: [SKIP][399] ([i915#12937]) -> [PASS][400] +2 other tests pass
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@kms_pm_rpm@basic-pci-d3-state.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-2/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [SKIP][401] ([i915#9519]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][403] ([i915#9519]) -> [PASS][404] +1 other test pass
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_setmode@basic:
- shard-tglu: [FAIL][405] ([i915#12722] / [i915#5465]) -> [PASS][406]
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-4/igt@kms_setmode@basic.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][407] ([i915#12722]) -> [PASS][408]
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-4/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-1:
- shard-tglu: [FAIL][409] ([i915#5465]) -> [PASS][410]
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-4/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
* igt@perf_pmu@busy:
- shard-dg2: [SKIP][411] ([i915#12506]) -> [PASS][412] +11 other tests pass
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@perf_pmu@busy.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@perf_pmu@busy.html
* igt@perf_pmu@most-busy-idle-check-all:
- shard-dg2: [FAIL][413] ([i915#11943] / [i915#12515]) -> [PASS][414] +1 other test pass
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-8/igt@perf_pmu@most-busy-idle-check-all.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@perf_pmu@most-busy-idle-check-all.html
* igt@perf_pmu@semaphore-busy@vcs1:
- shard-dg1: [FAIL][415] ([i915#4349]) -> [PASS][416] +3 other tests pass
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html
* igt@perf_pmu@semaphore-busy@vecs0:
- shard-dg2: [FAIL][417] ([i915#4349]) -> [PASS][418] +5 other tests pass
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-4/igt@perf_pmu@semaphore-busy@vecs0.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@perf_pmu@semaphore-busy@vecs0.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: [SKIP][419] ([i915#8411]) -> [SKIP][420] ([i915#2575])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-10/igt@api_intel_bb@blit-reloc-purge-cache.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@drm_fdinfo@busy-hang:
- shard-dg2: [SKIP][421] ([i915#12506]) -> [SKIP][422] ([i915#8414])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@drm_fdinfo@busy-hang.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@drm_fdinfo@busy-hang.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: [SKIP][423] ([i915#2575]) -> [SKIP][424] ([i915#7697])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: [SKIP][425] ([i915#2575]) -> [SKIP][426] ([i915#8555])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hostile.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: [SKIP][427] ([i915#8555]) -> [SKIP][428] ([i915#2575])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-many.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@hostile:
- shard-dg2: [SKIP][429] ([i915#2575]) -> [FAIL][430] ([i915#11980] / [i915#12580])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_ctx_persistence@hostile.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: [SKIP][431] ([i915#2575]) -> [SKIP][432] ([i915#280])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_ctx_sseu@mmap-args.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_fence@submit:
- shard-dg2: [SKIP][433] ([i915#4812]) -> [SKIP][434] ([i915#2575])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-10/igt@gem_exec_fence@submit.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: [SKIP][435] ([i915#3539] / [i915#4852]) -> [SKIP][436] ([i915#2575])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2: [SKIP][437] ([i915#2575]) -> [SKIP][438] ([i915#3539] / [i915#4852]) +1 other test skip
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-dg2: [SKIP][439] ([i915#2575]) -> [SKIP][440] ([i915#3281]) +9 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-read.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_reloc@basic-write-gtt-noreloc:
- shard-dg2: [SKIP][441] ([i915#3281]) -> [SKIP][442] ([i915#2575]) +2 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@gem_exec_reloc@basic-write-gtt-noreloc.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_exec_reloc@basic-write-gtt-noreloc.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: [SKIP][443] ([i915#4537] / [i915#4812]) -> [SKIP][444] ([i915#2575]) +1 other test skip
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-7/igt@gem_exec_schedule@reorder-wide.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [SKIP][445] ([i915#2575]) -> [INCOMPLETE][446] ([i915#11441])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_exec_suspend@basic-s0.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: [SKIP][447] ([i915#2575]) -> [SKIP][448] ([i915#4860])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: [SKIP][449] ([i915#4860]) -> [SKIP][450] ([i915#2575])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-y.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-dg2: [SKIP][451] ([i915#3282]) -> [SKIP][452] ([i915#2575]) +1 other test skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-7/igt@gem_madvise@dontneed-before-pwrite.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_media_vme:
- shard-dg2: [SKIP][453] ([i915#2575]) -> [SKIP][454] ([i915#284])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_media_vme.html
[454]
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/index.html
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: ✗ i915.CI.Full: failure for GPGPU fill improvements (rev8)
2024-11-25 15:47 ` ✗ i915.CI.Full: " Patchwork
@ 2024-11-26 11:52 ` Zbigniew Kempczyński
0 siblings, 0 replies; 16+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-26 11:52 UTC (permalink / raw)
To: igt-dev
On Mon, Nov 25, 2024 at 03:47:49PM +0000, Patchwork wrote:
> == Series Details ==
>
> Series: GPGPU fill improvements (rev8)
> URL : https://patchwork.freedesktop.org/series/141352/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_15738_full -> IGTPW_12188_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_12188_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_12188_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
> External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/index.html
>
> Participating hosts (11 -> 10)
> ------------------------------
>
> Missing (1): shard-dg2-set2
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_12188_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@core_getversion@all-cards:
> - shard-dg2: [PASS][1] -> [FAIL][2]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-8/igt@core_getversion@all-cards.html
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@core_getversion@all-cards.html
>
> * igt@drm_fdinfo@context-close-stress:
> - shard-dg2: [PASS][3] -> [SKIP][4] +1 other test skip
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-2/igt@drm_fdinfo@context-close-stress.html
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@drm_fdinfo@context-close-stress.html
>
> * igt@i915_suspend@basic-s2idle-without-i915:
> - shard-dg2: [PASS][5] -> [WARN][6]
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-1/igt@i915_suspend@basic-s2idle-without-i915.html
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@i915_suspend@basic-s2idle-without-i915.html
>
> * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
> - shard-rkl: NOTRUN -> [ABORT][7]
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
>
> * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
> - shard-tglu: [PASS][8] -> [ABORT][9] +1 other test abort
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
>
> * igt@kms_pm_rpm@dpms-non-lpsp:
> - shard-rkl: [PASS][10] -> [SKIP][11] +2 other tests skip
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-1/igt@kms_pm_rpm@dpms-non-lpsp.html
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html
>
> * igt@perf@gen12-oa-tlb-invalidate:
> - shard-dg1: NOTRUN -> [INCOMPLETE][12] +1 other test incomplete
> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@perf@gen12-oa-tlb-invalidate.html
>
>
> #### Warnings ####
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc:
> - shard-dg1: [SKIP][13] ([i915#8708]) -> [INCOMPLETE][14]
> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
>
Unrelated to the series.
>
> New tests
> ---------
>
> New tests have been introduced between CI_DRM_15738_full and IGTPW_12188_full:
>
> ### New IGT tests (1) ###
>
> * igt@gem_gpgpu_fill@offset-16x16:
> - Statuses : 4 pass(s) 1 skip(s)
> - Exec time: [0.0, 0.03] s
This was added in the series and it looks there's no failure.
--
Zbigniew
>
>
>
> Known issues
> ------------
>
> Here are the changes found in IGTPW_12188_full that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@api_intel_allocator@gem-pool:
> - shard-dg2: [PASS][15] -> [SKIP][16] +19 other tests skip
> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-1/igt@api_intel_allocator@gem-pool.html
> [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@api_intel_allocator@gem-pool.html
>
> * igt@api_intel_bb@object-reloc-keep-cache:
> - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8411])
> [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@api_intel_bb@object-reloc-keep-cache.html
>
> * igt@device_reset@cold-reset-bound:
> - shard-dg2: NOTRUN -> [SKIP][18] ([i915#11078]) +1 other test skip
> [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@device_reset@cold-reset-bound.html
>
> * igt@device_reset@unbind-reset-rebind:
> - shard-dg1: NOTRUN -> [ABORT][19] ([i915#11814] / [i915#11815])
> [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
> - shard-tglu: NOTRUN -> [ABORT][20] ([i915#12817] / [i915#5507])
> [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-4/igt@device_reset@unbind-reset-rebind.html
>
> * igt@drm_fdinfo@busy-idle@bcs0:
> - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8414]) +23 other tests skip
> [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@drm_fdinfo@busy-idle@bcs0.html
>
> * igt@drm_fdinfo@busy-idle@vcs1:
> - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8414]) +8 other tests skip
> [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@drm_fdinfo@busy-idle@vcs1.html
>
> * igt@drm_fdinfo@memory-info-idle:
> - shard-dg2: [PASS][23] -> [SKIP][24] ([i915#12506]) +4 other tests skip
> [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-1/igt@drm_fdinfo@memory-info-idle.html
> [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@drm_fdinfo@memory-info-idle.html
>
> * igt@fbdev@unaligned-read:
> - shard-dg2: [PASS][25] -> [SKIP][26] ([i915#2582]) +2 other tests skip
> [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@fbdev@unaligned-read.html
> [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@fbdev@unaligned-read.html
>
> * igt@gem_basic@multigpu-create-close:
> - shard-dg1: NOTRUN -> [SKIP][27] ([i915#7697])
> [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@gem_basic@multigpu-create-close.html
>
> * igt@gem_ccs@block-copy-compressed:
> - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3555] / [i915#9323])
> [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@gem_ccs@block-copy-compressed.html
>
> * igt@gem_ccs@ctrl-surf-copy-new-ctx:
> - shard-dg1: NOTRUN -> [SKIP][29] ([i915#9323])
> [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
>
> * igt@gem_ccs@large-ctrl-surf-copy:
> - shard-dg1: NOTRUN -> [SKIP][30] ([i915#13008])
> [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@gem_ccs@large-ctrl-surf-copy.html
> - shard-tglu: NOTRUN -> [SKIP][31] ([i915#13008])
> [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@gem_ccs@large-ctrl-surf-copy.html
>
> * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
> - shard-dg2: [PASS][32] -> [INCOMPLETE][33] ([i915#7297])
> [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
> [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
>
> * igt@gem_create@create-ext-cpu-access-big:
> - shard-tglu: NOTRUN -> [SKIP][34] ([i915#6335])
> [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@gem_create@create-ext-cpu-access-big.html
>
> * igt@gem_create@create-ext-cpu-access-sanity-check:
> - shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#6335])
> [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
>
> * igt@gem_create@create-ext-set-pat:
> - shard-dg1: NOTRUN -> [SKIP][36] ([i915#8562])
> [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@gem_create@create-ext-set-pat.html
>
> * igt@gem_ctx_persistence@hang:
> - shard-dg1: NOTRUN -> [SKIP][37] ([i915#8555])
> [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@gem_ctx_persistence@hang.html
>
> * igt@gem_ctx_persistence@hostile:
> - shard-tglu-1: NOTRUN -> [FAIL][38] ([i915#11980] / [i915#12580])
> [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@gem_ctx_persistence@hostile.html
>
> * igt@gem_ctx_persistence@saturated-hostile-nopreempt:
> - shard-dg2: NOTRUN -> [SKIP][39] ([i915#5882]) +7 other tests skip
> [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
>
> * igt@gem_ctx_sseu@engines:
> - shard-rkl: NOTRUN -> [SKIP][40] ([i915#280])
> [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@gem_ctx_sseu@engines.html
> - shard-dg1: NOTRUN -> [SKIP][41] ([i915#280]) +1 other test skip
> [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@gem_ctx_sseu@engines.html
> - shard-tglu: NOTRUN -> [SKIP][42] ([i915#280])
> [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@gem_ctx_sseu@engines.html
> - shard-dg2: NOTRUN -> [SKIP][43] ([i915#280])
> [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@gem_ctx_sseu@engines.html
>
> * igt@gem_eio@unwedge-stress:
> - shard-dg1: NOTRUN -> [FAIL][44] ([i915#12714] / [i915#5784])
> [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@gem_eio@unwedge-stress.html
>
> * igt@gem_exec_balancer@bonded-pair:
> - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4771])
> [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@gem_exec_balancer@bonded-pair.html
>
> * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
> - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4525])
> [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
>
> * igt@gem_exec_capture@capture-invisible:
> - shard-rkl: NOTRUN -> [SKIP][47] ([i915#6334]) +1 other test skip
> [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-1/igt@gem_exec_capture@capture-invisible.html
> - shard-dg1: NOTRUN -> [SKIP][48] ([i915#6334]) +2 other tests skip
> [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@gem_exec_capture@capture-invisible.html
>
> * igt@gem_exec_fence@submit3:
> - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4812]) +1 other test skip
> [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@gem_exec_fence@submit3.html
>
> * igt@gem_exec_flush@basic-uc-pro-default:
> - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) +2 other tests skip
> [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html
>
> * igt@gem_exec_flush@basic-uc-prw-default:
> - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3539])
> [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@gem_exec_flush@basic-uc-prw-default.html
> - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3539])
> [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@gem_exec_flush@basic-uc-prw-default.html
>
> * igt@gem_exec_reloc@basic-cpu-read:
> - shard-rkl: NOTRUN -> [SKIP][53] ([i915#3281]) +1 other test skip
> [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-read.html
>
> * igt@gem_exec_reloc@basic-gtt:
> - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3281]) +4 other tests skip
> [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@gem_exec_reloc@basic-gtt.html
>
> * igt@gem_exec_reloc@basic-wc-gtt-noreloc:
> - shard-dg1: NOTRUN -> [SKIP][55] ([i915#3281]) +14 other tests skip
> [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
>
> * igt@gem_exec_schedule@preempt-queue-chain:
> - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812]) +1 other test skip
> [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-chain.html
>
> * igt@gem_exec_schedule@preempt-queue-contexts:
> - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4812]) +7 other tests skip
> [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@gem_exec_schedule@preempt-queue-contexts.html
>
> * igt@gem_exec_suspend@basic-s0@lmem0:
> - shard-dg2: NOTRUN -> [INCOMPLETE][58] ([i915#11441])
> [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-5/igt@gem_exec_suspend@basic-s0@lmem0.html
>
> * igt@gem_fenced_exec_thrash@2-spare-fences:
> - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4860]) +3 other tests skip
> [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@gem_fenced_exec_thrash@2-spare-fences.html
>
> * igt@gem_fenced_exec_thrash@no-spare-fences:
> - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860]) +2 other tests skip
> [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences.html
>
> * igt@gem_lmem_swapping@heavy-verify-multi:
> - shard-dg2: NOTRUN -> [SKIP][61] ([i915#12936])
> [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi.html
>
> * igt@gem_lmem_swapping@heavy-verify-random-ccs:
> - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613])
> [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
> - shard-dg1: NOTRUN -> [SKIP][63] ([i915#12193])
> [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
> - shard-glk: NOTRUN -> [SKIP][64] ([i915#4613]) +3 other tests skip
> [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-glk2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
>
> * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
> - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4565])
> [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
>
> * igt@gem_lmem_swapping@parallel-random-verify-ccs:
> - shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613]) +3 other tests skip
> [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
>
> * igt@gem_lmem_swapping@smem-oom@lmem0:
> - shard-dg2: [PASS][67] -> [TIMEOUT][68] ([i915#5493]) +1 other test timeout
> [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html
> [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
>
> * igt@gem_lmem_swapping@verify:
> - shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#4613]) +2 other tests skip
> [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@gem_lmem_swapping@verify.html
>
> * igt@gem_lmem_swapping@verify-random:
> - shard-dg2: [PASS][70] -> [SKIP][71] ([i915#12936]) +3 other tests skip
> [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-7/igt@gem_lmem_swapping@verify-random.html
> [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_lmem_swapping@verify-random.html
>
> * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
> - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4077]) +17 other tests skip
> [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
>
> * igt@gem_mmap_wc@fault-concurrent:
> - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4083]) +3 other tests skip
> [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@gem_mmap_wc@fault-concurrent.html
>
> * igt@gem_mmap_wc@write-read:
> - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4083]) +2 other tests skip
> [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@gem_mmap_wc@write-read.html
>
> * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
> - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3282]) +2 other tests skip
> [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
>
> * igt@gem_pread@exhaustion:
> - shard-glk: NOTRUN -> [WARN][76] ([i915#2658])
> [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-glk2/igt@gem_pread@exhaustion.html
>
> * igt@gem_pwrite@basic-exhaustion:
> - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282]) +6 other tests skip
> [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@gem_pwrite@basic-exhaustion.html
> - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3282]) +1 other test skip
> [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@gem_pwrite@basic-exhaustion.html
>
> * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
> - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4270]) +2 other tests skip
> [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
>
> * igt@gem_pxp@hw-rejects-pxp-context:
> - shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#12975])
> [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html
>
> * igt@gem_pxp@reject-modify-context-protection-off-2:
> - shard-tglu: [PASS][81] -> [SKIP][82] ([i915#4270]) +1 other test skip
> [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-6/igt@gem_pxp@reject-modify-context-protection-off-2.html
> [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-2/igt@gem_pxp@reject-modify-context-protection-off-2.html
>
> * igt@gem_pxp@verify-pxp-stale-buf-execution:
> - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4270]) +2 other tests skip
> [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@gem_pxp@verify-pxp-stale-buf-execution.html
>
> * igt@gem_render_copy@linear-to-vebox-y-tiled:
> - shard-dg2: NOTRUN -> [SKIP][84] ([i915#2575] / [i915#5190]) +1 other test skip
> [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_render_copy@linear-to-vebox-y-tiled.html
>
> * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
> - shard-dg2: NOTRUN -> [SKIP][85] ([i915#5190] / [i915#8428]) +1 other test skip
> [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
>
> * igt@gem_set_tiling_vs_blt@tiled-to-untiled:
> - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4079])
> [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
>
> * igt@gem_softpin@evict-snoop-interruptible:
> - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4885])
> [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@gem_softpin@evict-snoop-interruptible.html
>
> * igt@gem_tiled_partial_pwrite_pread@writes:
> - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4077]) +13 other tests skip
> [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@gem_tiled_partial_pwrite_pread@writes.html
>
> * igt@gem_unfence_active_buffers:
> - shard-dg1: NOTRUN -> [SKIP][89] ([i915#4879])
> [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@gem_unfence_active_buffers.html
>
> * igt@gem_userptr_blits@access-control:
> - shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip
> [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@gem_userptr_blits@access-control.html
>
> * igt@gem_userptr_blits@create-destroy-unsync:
> - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#3297])
> [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
>
> * igt@gem_userptr_blits@map-fixed-invalidate-busy:
> - shard-dg2: NOTRUN -> [SKIP][92] ([i915#3297] / [i915#4880])
> [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
>
> * igt@gem_userptr_blits@readonly-pwrite-unsync:
> - shard-tglu: NOTRUN -> [SKIP][93] ([i915#3297]) +2 other tests skip
> [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html
>
> * igt@gem_userptr_blits@relocations:
> - shard-dg2: NOTRUN -> [SKIP][94] ([i915#3281] / [i915#3297])
> [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@gem_userptr_blits@relocations.html
>
> * igt@gem_userptr_blits@unsync-unmap-after-close:
> - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297]) +2 other tests skip
> [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap-after-close.html
>
> * igt@gem_userptr_blits@unsync-unmap-cycles:
> - shard-rkl: NOTRUN -> [SKIP][96] ([i915#3297]) +1 other test skip
> [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-cycles.html
>
> * igt@gem_vm_create@invalid-create:
> - shard-snb: NOTRUN -> [SKIP][97] +43 other tests skip
> [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb7/igt@gem_vm_create@invalid-create.html
>
> * igt@gen9_exec_parse@batch-invalid-length:
> - shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856]) +1 other test skip
> [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@gen9_exec_parse@batch-invalid-length.html
>
> * igt@gen9_exec_parse@batch-zero-length:
> - shard-tglu: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856]) +5 other tests skip
> [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@gen9_exec_parse@batch-zero-length.html
>
> * igt@gen9_exec_parse@bb-oversize:
> - shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527]) +3 other tests skip
> [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-3/igt@gen9_exec_parse@bb-oversize.html
>
> * igt@gen9_exec_parse@bb-secure:
> - shard-dg1: NOTRUN -> [SKIP][101] ([i915#2527]) +6 other tests skip
> [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@gen9_exec_parse@bb-secure.html
>
> * igt@gen9_exec_parse@valid-registers:
> - shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) +3 other tests skip
> [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@gen9_exec_parse@valid-registers.html
>
> * igt@i915_module_load@reload-with-fault-injection:
> - shard-dg1: NOTRUN -> [ABORT][103] ([i915#9820])
> [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
>
> * igt@i915_module_load@resize-bar:
> - shard-dg1: NOTRUN -> [SKIP][104] ([i915#7178])
> [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@i915_module_load@resize-bar.html
>
> * igt@i915_pm_freq_api@freq-basic-api:
> - shard-tglu: NOTRUN -> [SKIP][105] ([i915#8399])
> [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@i915_pm_freq_api@freq-basic-api.html
> - shard-rkl: NOTRUN -> [SKIP][106] ([i915#8399])
> [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html
>
> * igt@i915_pm_freq_api@freq-suspend:
> - shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#8399])
> [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html
>
> * igt@i915_pm_freq_mult@media-freq@gt0:
> - shard-dg1: NOTRUN -> [SKIP][108] ([i915#6590]) +1 other test skip
> [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@i915_pm_freq_mult@media-freq@gt0.html
>
> * igt@i915_pm_rc6_residency@rc6-idle:
> - shard-tglu: NOTRUN -> [WARN][109] ([i915#2681]) +4 other tests warn
> [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle.html
>
> * igt@i915_pm_rps@thresholds-idle:
> - shard-dg2: NOTRUN -> [SKIP][110] ([i915#11681])
> [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@i915_pm_rps@thresholds-idle.html
> - shard-dg1: NOTRUN -> [SKIP][111] ([i915#11681])
> [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@i915_pm_rps@thresholds-idle.html
>
> * igt@i915_query@hwconfig_table:
> - shard-tglu: NOTRUN -> [SKIP][112] ([i915#6245])
> [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-7/igt@i915_query@hwconfig_table.html
>
> * igt@i915_selftest@mock@memory_region:
> - shard-dg2: NOTRUN -> [DMESG-WARN][113] ([i915#9311]) +1 other test dmesg-warn
> [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@i915_selftest@mock@memory_region.html
>
> * igt@i915_suspend@basic-s3-without-i915:
> - shard-tglu: NOTRUN -> [INCOMPLETE][114] ([i915#7443])
> [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@i915_suspend@basic-s3-without-i915.html
>
> * igt@intel_hwmon@hwmon-read:
> - shard-tglu: NOTRUN -> [SKIP][115] ([i915#7707])
> [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-6/igt@intel_hwmon@hwmon-read.html
>
> * igt@intel_hwmon@hwmon-write:
> - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#7707])
> [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
>
> * igt@kms_addfb_basic@bo-too-small-due-to-tiling:
> - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4212])
> [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
>
> * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
> - shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#12454] / [i915#12712])
> [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
>
> * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
> - shard-dg1: NOTRUN -> [SKIP][119] ([i915#1769] / [i915#3555])
> [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
>
> * igt@kms_atomic_transition@plane-toggle-modeset-transition:
> - shard-dg2: NOTRUN -> [SKIP][120] ([i915#2575]) +90 other tests skip
> [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
>
> * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
> - shard-tglu: NOTRUN -> [SKIP][121] ([i915#5286]) +6 other tests skip
> [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
>
> * igt@kms_big_fb@4-tiled-64bpp-rotate-270:
> - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5286]) +5 other tests skip
> [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
>
> * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
> - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#5286]) +2 other tests skip
> [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/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-hflip:
> - shard-rkl: NOTRUN -> [SKIP][124] ([i915#5286]) +2 other tests skip
> [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>
> * igt@kms_big_fb@x-tiled-64bpp-rotate-180:
> - shard-dg2: NOTRUN -> [SKIP][125] +57 other tests skip
> [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
>
> * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
> - shard-dg1: NOTRUN -> [SKIP][126] ([i915#3638]) +2 other tests skip
> [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
>
> * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
> - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538]) +3 other tests skip
> [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
>
> * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
> - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5190]) +9 other tests skip
> [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
>
> * igt@kms_busy@extended-modeset-hang-newfb-with-reset:
> - shard-rkl: [PASS][129] -> [DMESG-WARN][130] ([i915#12964]) +52 other tests dmesg-warn
> [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-1/igt@kms_busy@extended-modeset-hang-newfb-with-reset.html
> [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@kms_busy@extended-modeset-hang-newfb-with-reset.html
>
> * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1:
> - shard-tglu: NOTRUN -> [SKIP][131] ([i915#6095]) +44 other tests skip
> [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-4/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html
>
> * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
> - shard-dg2: NOTRUN -> [SKIP][132] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
> [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
>
> * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
> - shard-dg2: NOTRUN -> [SKIP][133] ([i915#10307] / [i915#6095]) +112 other tests skip
> [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
>
> * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
> - shard-dg2: NOTRUN -> [SKIP][134] ([i915#12313]) +3 other tests skip
> [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
>
> * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
> - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#12805])
> [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
>
> * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-3:
> - shard-dg2: NOTRUN -> [SKIP][136] ([i915#6095]) +3 other tests skip
> [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-3.html
>
> * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-hdmi-a-1:
> - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#6095]) +49 other tests skip
> [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-hdmi-a-1.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
> - shard-dg1: NOTRUN -> [SKIP][138] ([i915#12313])
> [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
> - shard-rkl: NOTRUN -> [SKIP][139] ([i915#6095]) +101 other tests skip
> [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
>
> * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1:
> - shard-glk: NOTRUN -> [SKIP][140] +226 other tests skip
> [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-glk5/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html
>
> * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
> - shard-dg1: NOTRUN -> [SKIP][141] ([i915#6095]) +170 other tests skip
> [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
>
> * igt@kms_cdclk@mode-transition:
> - shard-tglu: NOTRUN -> [SKIP][142] ([i915#3742])
> [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@kms_cdclk@mode-transition.html
>
> * igt@kms_cdclk@mode-transition-all-outputs:
> - shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#3742])
> [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html
>
> * igt@kms_chamelium_audio@dp-audio-edid:
> - shard-dg2: NOTRUN -> [SKIP][144] ([i915#7828]) +4 other tests skip
> [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@kms_chamelium_audio@dp-audio-edid.html
>
> * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
> - shard-rkl: NOTRUN -> [SKIP][145] ([i915#7828]) +2 other tests skip
> [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
> - shard-tglu: NOTRUN -> [SKIP][146] ([i915#7828]) +4 other tests skip
> [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-6/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
>
> * igt@kms_chamelium_frames@dp-crc-single:
> - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#7828]) +5 other tests skip
> [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html
>
> * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
> - shard-dg1: NOTRUN -> [SKIP][148] ([i915#7828]) +11 other tests skip
> [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
>
> * igt@kms_color@deep-color:
> - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3555]) +1 other test skip
> [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@kms_color@deep-color.html
> - shard-tglu: NOTRUN -> [SKIP][150] ([i915#3555] / [i915#9979])
> [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-7/igt@kms_color@deep-color.html
>
> * igt@kms_content_protection@content-type-change:
> - shard-tglu: NOTRUN -> [SKIP][151] ([i915#6944] / [i915#9424])
> [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@kms_content_protection@content-type-change.html
> - shard-dg2: NOTRUN -> [SKIP][152] ([i915#9424])
> [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-5/igt@kms_content_protection@content-type-change.html
> - shard-rkl: NOTRUN -> [SKIP][153] ([i915#9424])
> [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@kms_content_protection@content-type-change.html
> - shard-dg1: NOTRUN -> [SKIP][154] ([i915#9424])
> [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_content_protection@content-type-change.html
>
> * igt@kms_content_protection@dp-mst-lic-type-1:
> - shard-dg2: NOTRUN -> [SKIP][155] ([i915#3299])
> [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html
>
> * igt@kms_content_protection@dp-mst-type-0:
> - shard-dg1: NOTRUN -> [SKIP][156] ([i915#3299])
> [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_content_protection@dp-mst-type-0.html
>
> * igt@kms_content_protection@legacy:
> - shard-tglu: NOTRUN -> [SKIP][157] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
> [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-7/igt@kms_content_protection@legacy.html
> - shard-rkl: NOTRUN -> [SKIP][158] ([i915#7118] / [i915#9424])
> [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@kms_content_protection@legacy.html
>
> * igt@kms_content_protection@type1:
> - shard-dg2: NOTRUN -> [SKIP][159] ([i915#7118] / [i915#9424])
> [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@kms_content_protection@type1.html
>
> * igt@kms_cursor_crc@cursor-offscreen-512x512:
> - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#12976]) +3 other tests skip
> [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html
>
> * igt@kms_cursor_crc@cursor-onscreen-512x170:
> - shard-dg1: NOTRUN -> [SKIP][161] ([i915#12976])
> [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x170.html
> - shard-tglu: NOTRUN -> [SKIP][162] ([i915#12976])
> [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
>
> * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
> - shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#4103])
> [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
> - shard-dg1: NOTRUN -> [SKIP][164] ([i915#4103] / [i915#4213])
> [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
>
> * igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
> - shard-snb: NOTRUN -> [FAIL][165] ([i915#12170])
> [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
>
> * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
> - shard-snb: NOTRUN -> [FAIL][166] ([i915#11968])
> [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
>
> * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
> - shard-dg1: NOTRUN -> [SKIP][167] ([i915#9723])
> [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
>
> * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
> - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#1769] / [i915#3555] / [i915#3804])
> [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
>
> * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
> - shard-rkl: NOTRUN -> [SKIP][169] ([i915#3804])
> [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
> - shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#3804])
> [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
>
> * igt@kms_dither@fb-8bpc-vs-panel-8bpc:
> - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3555]) +4 other tests skip
> [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
>
> * igt@kms_dp_linktrain_fallback@dp-fallback:
> - shard-dg2: [PASS][172] -> [SKIP][173] ([i915#12402])
> [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html
> [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
>
> * igt@kms_draw_crc@draw-method-mmap-wc:
> - shard-dg1: NOTRUN -> [SKIP][174] ([i915#8812])
> [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html
>
> * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
> - shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#3840])
> [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
>
> * igt@kms_dsc@dsc-with-bpc-formats:
> - shard-dg1: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840])
> [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@kms_dsc@dsc-with-bpc-formats.html
>
> * igt@kms_dsc@dsc-with-output-formats:
> - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#3840])
> [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats.html
>
> * igt@kms_feature_discovery@chamelium:
> - shard-dg2: NOTRUN -> [SKIP][178] ([i915#4854])
> [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@kms_feature_discovery@chamelium.html
> - shard-dg1: NOTRUN -> [SKIP][179] ([i915#4854])
> [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_feature_discovery@chamelium.html
>
> * igt@kms_feature_discovery@display-3x:
> - shard-dg1: NOTRUN -> [SKIP][180] ([i915#1839]) +1 other test skip
> [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_feature_discovery@display-3x.html
> - shard-tglu: NOTRUN -> [SKIP][181] ([i915#1839])
> [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-7/igt@kms_feature_discovery@display-3x.html
>
> * igt@kms_feature_discovery@psr1:
> - shard-dg2: NOTRUN -> [SKIP][182] ([i915#658])
> [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@kms_feature_discovery@psr1.html
>
> * igt@kms_feature_discovery@psr2:
> - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#658])
> [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_feature_discovery@psr2.html
>
> * igt@kms_flip@2x-modeset-vs-vblank-race:
> - shard-dg2: NOTRUN -> [SKIP][184] ([i915#9934]) +5 other tests skip
> [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html
> - shard-rkl: NOTRUN -> [SKIP][185] ([i915#9934]) +2 other tests skip
> [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
>
> * igt@kms_flip@2x-nonexisting-fb-interruptible:
> - shard-tglu: NOTRUN -> [SKIP][186] ([i915#3637]) +7 other tests skip
> [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-2/igt@kms_flip@2x-nonexisting-fb-interruptible.html
>
> * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
> - shard-dg1: NOTRUN -> [SKIP][187] ([i915#9934]) +8 other tests skip
> [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
>
> * igt@kms_flip@2x-plain-flip-interruptible:
> - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#3637]) +7 other tests skip
> [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html
>
> * igt@kms_flip@plain-flip-ts-check-interruptible:
> - shard-snb: [PASS][189] -> [FAIL][190] ([i915#2122]) +4 other tests fail
> [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb2/igt@kms_flip@plain-flip-ts-check-interruptible.html
> [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb6/igt@kms_flip@plain-flip-ts-check-interruptible.html
> - shard-dg2: [PASS][191] -> [FAIL][192] ([i915#2122])
> [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-1/igt@kms_flip@plain-flip-ts-check-interruptible.html
> [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_flip@plain-flip-ts-check-interruptible.html
> - shard-rkl: [PASS][193] -> [FAIL][194] ([i915#11989] / [i915#2122])
> [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-2/igt@kms_flip@plain-flip-ts-check-interruptible.html
> [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible.html
> - shard-dg1: [PASS][195] -> [FAIL][196] ([i915#11989] / [i915#12517] / [i915#2122])
> [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-18/igt@kms_flip@plain-flip-ts-check-interruptible.html
> [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_flip@plain-flip-ts-check-interruptible.html
>
> * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1:
> - shard-dg2: NOTRUN -> [FAIL][197] ([i915#2122]) +2 other tests fail
> [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html
> - shard-rkl: [PASS][198] -> [FAIL][199] ([i915#2122]) +1 other test fail
> [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-2/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html
> [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html
>
> * igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a4:
> - shard-dg1: [PASS][200] -> [FAIL][201] ([i915#2122]) +3 other tests fail
> [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-18/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a4.html
> [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a4.html
>
> * igt@kms_flip@wf_vblank-ts-check-interruptible:
> - shard-rkl: NOTRUN -> [FAIL][202] ([i915#12840] / [i915#2122])
> [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@kms_flip@wf_vblank-ts-check-interruptible.html
> - shard-dg1: NOTRUN -> [FAIL][203] ([i915#12517] / [i915#12840] / [i915#2122])
> [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_flip@wf_vblank-ts-check-interruptible.html
>
> * igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a3:
> - shard-dg1: NOTRUN -> [FAIL][204] ([i915#12517])
> [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a3.html
>
> * igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1:
> - shard-rkl: NOTRUN -> [FAIL][205] ([i915#2122])
> [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html
>
> * igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a3:
> - shard-dg1: NOTRUN -> [FAIL][206] ([i915#11989]) +1 other test fail
> [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a3.html
>
> * igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1:
> - shard-tglu: NOTRUN -> [FAIL][207] ([i915#2122]) +5 other tests fail
> [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-7/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
> - shard-rkl: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555])
> [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-1/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-valid-mode:
> - shard-dg1: NOTRUN -> [SKIP][209] ([i915#2587] / [i915#2672]) +4 other tests skip
> [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
> - shard-rkl: NOTRUN -> [SKIP][210] ([i915#2672])
> [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
> - shard-dg2: NOTRUN -> [SKIP][211] ([i915#2672]) +4 other tests skip
> [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
> - shard-tglu: NOTRUN -> [SKIP][212] ([i915#2587] / [i915#2672] / [i915#3555])
> [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
> - shard-tglu: NOTRUN -> [SKIP][213] ([i915#2587] / [i915#2672]) +2 other tests skip
> [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
> - shard-tglu: NOTRUN -> [SKIP][214] ([i915#2672] / [i915#3555]) +1 other test skip
> [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
> - shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#2672] / [i915#3555]) +1 other test skip
> [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
> - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#2587] / [i915#2672]) +1 other test skip
> [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
> - shard-dg1: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555]) +4 other tests skip
> [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
> - shard-dg2: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555])
> [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
> - shard-dg2: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555] / [i915#5190])
> [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
> - shard-snb: [PASS][220] -> [SKIP][221] +5 other tests skip
> [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
> [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-rte:
> - shard-dg2: NOTRUN -> [SKIP][222] ([i915#5354]) +28 other tests skip
> [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
> - shard-tglu-1: NOTRUN -> [SKIP][223] +57 other tests skip
> [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
> - shard-dg1: NOTRUN -> [SKIP][224] +46 other tests skip
> [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
> - shard-dg2: NOTRUN -> [SKIP][225] ([i915#3458]) +22 other tests skip
> [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
> - shard-dg2: NOTRUN -> [SKIP][226] ([i915#8708]) +23 other tests skip
> [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite:
> - shard-rkl: NOTRUN -> [SKIP][227] ([i915#1825]) +10 other tests skip
> [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
> - shard-tglu: NOTRUN -> [SKIP][228] +70 other tests skip
> [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
> - shard-dg2: NOTRUN -> [SKIP][229] ([i915#10433] / [i915#3458])
> [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
>
> * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
> - shard-dg1: NOTRUN -> [SKIP][230] ([i915#3458]) +23 other tests skip
> [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
>
> * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
> - shard-dg1: NOTRUN -> [SKIP][231] ([i915#8708]) +19 other tests skip
> [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@psr-suspend:
> - shard-rkl: NOTRUN -> [SKIP][232] ([i915#3023]) +3 other tests skip
> [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-suspend.html
>
> * igt@kms_hdmi_inject@inject-audio:
> - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#13012])
> [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_hdmi_inject@inject-audio.html
>
> * igt@kms_hdr@bpc-switch:
> - shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8228])
> [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_hdr@bpc-switch.html
> - shard-dg2: [PASS][235] -> [SKIP][236] ([i915#3555] / [i915#8228])
> [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-10/igt@kms_hdr@bpc-switch.html
> [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_hdr@bpc-switch.html
>
> * igt@kms_hdr@bpc-switch-dpms:
> - shard-tglu: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228])
> [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-7/igt@kms_hdr@bpc-switch-dpms.html
>
> * igt@kms_hdr@brightness-with-hdr:
> - shard-dg2: NOTRUN -> [SKIP][238] ([i915#12713])
> [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@kms_hdr@brightness-with-hdr.html
>
> * igt@kms_hdr@invalid-hdr:
> - shard-rkl: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228])
> [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@kms_hdr@invalid-hdr.html
>
> * igt@kms_joiner@basic-force-ultra-joiner:
> - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#12394])
> [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html
> - shard-dg1: NOTRUN -> [SKIP][241] ([i915#12394])
> [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_joiner@basic-force-ultra-joiner.html
>
> * igt@kms_joiner@invalid-modeset-ultra-joiner:
> - shard-tglu: NOTRUN -> [SKIP][242] ([i915#12339])
> [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
>
> * igt@kms_panel_fitting@legacy:
> - shard-tglu: NOTRUN -> [SKIP][243] ([i915#6301])
> [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@kms_panel_fitting@legacy.html
>
> * igt@kms_plane_alpha_blend@constant-alpha-max:
> - shard-glk: NOTRUN -> [FAIL][244] ([i915#12169])
> [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-glk5/igt@kms_plane_alpha_blend@constant-alpha-max.html
>
> * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
> - shard-glk: NOTRUN -> [FAIL][245] ([i915#10647]) +1 other test fail
> [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-glk5/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
>
> * igt@kms_plane_multiple@tiling-y:
> - shard-dg2: NOTRUN -> [SKIP][246] ([i915#8806])
> [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_plane_multiple@tiling-y.html
>
> * igt@kms_plane_scaling@2x-scaler-multi-pipe:
> - shard-dg2: NOTRUN -> [SKIP][247] ([i915#5354] / [i915#9423])
> [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
>
> * igt@kms_plane_scaling@intel-max-src-size:
> - shard-dg1: NOTRUN -> [SKIP][248] ([i915#6953])
> [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size.html
>
> * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
> - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#12247]) +4 other tests skip
> [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
>
> * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
> - shard-dg1: NOTRUN -> [SKIP][250] ([i915#12247]) +4 other tests skip
> [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
>
> * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
> - shard-rkl: NOTRUN -> [SKIP][251] ([i915#12247]) +2 other tests skip
> [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b.html
>
> * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
> - shard-tglu: NOTRUN -> [SKIP][252] ([i915#12247]) +4 other tests skip
> [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
>
> * igt@kms_plane_scaling@planes-downscale-factor-0-25:
> - shard-dg2: NOTRUN -> [SKIP][253] ([i915#2575] / [i915#9423]) +1 other test skip
> [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
>
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
> - shard-dg2: NOTRUN -> [SKIP][254] ([i915#12247] / [i915#9423])
> [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
>
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
> - shard-dg2: NOTRUN -> [SKIP][255] ([i915#12247]) +7 other tests skip
> [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
>
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
> - shard-dg2: [PASS][256] -> [SKIP][257] ([i915#2575] / [i915#9423]) +3 other tests skip
> [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
> [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
>
> * igt@kms_pm_backlight@bad-brightness:
> - shard-tglu: NOTRUN -> [SKIP][258] ([i915#9812])
> [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-6/igt@kms_pm_backlight@bad-brightness.html
>
> * igt@kms_pm_backlight@fade-with-dpms:
> - shard-dg1: NOTRUN -> [SKIP][259] ([i915#5354])
> [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_pm_backlight@fade-with-dpms.html
>
> * igt@kms_pm_dc@dc3co-vpb-simulation:
> - shard-tglu: NOTRUN -> [SKIP][260] ([i915#9685])
> [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
>
> * igt@kms_pm_lpsp@kms-lpsp:
> - shard-dg2: [PASS][261] -> [SKIP][262] ([i915#9340])
> [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
> [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@kms_pm_lpsp@kms-lpsp.html
>
> * igt@kms_pm_lpsp@screens-disabled:
> - shard-dg1: NOTRUN -> [SKIP][263] ([i915#8430])
> [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@kms_pm_lpsp@screens-disabled.html
> - shard-dg2: NOTRUN -> [SKIP][264] ([i915#8430])
> [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@kms_pm_lpsp@screens-disabled.html
>
> * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
> - shard-dg2: [PASS][265] -> [SKIP][266] ([i915#9519])
> [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
> [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
>
> * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
> - shard-dg2: NOTRUN -> [SKIP][267] ([i915#12937])
> [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
>
> * igt@kms_pm_rpm@drm-resources-equal:
> - shard-dg2: [PASS][268] -> [SKIP][269] ([i915#12937]) +1 other test skip
> [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-2/igt@kms_pm_rpm@drm-resources-equal.html
> [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@kms_pm_rpm@drm-resources-equal.html
>
> * igt@kms_pm_rpm@modeset-lpsp:
> - shard-dg1: NOTRUN -> [SKIP][270] ([i915#9519]) +2 other tests skip
> [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html
>
> * igt@kms_pm_rpm@modeset-lpsp-stress:
> - shard-dg2: NOTRUN -> [SKIP][271] ([i915#9519])
> [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
>
> * igt@kms_pm_rpm@modeset-non-lpsp:
> - shard-tglu-1: NOTRUN -> [SKIP][272] ([i915#9519]) +1 other test skip
> [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html
>
> * igt@kms_pm_rpm@modeset-non-lpsp-stress:
> - shard-tglu: NOTRUN -> [SKIP][273] ([i915#9519])
> [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
>
> * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
> - shard-rkl: [PASS][274] -> [SKIP][275] ([i915#9519]) +3 other tests skip
> [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
> [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
>
> * igt@kms_prime@basic-modeset-hybrid:
> - shard-dg1: NOTRUN -> [SKIP][276] ([i915#6524]) +1 other test skip
> [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@kms_prime@basic-modeset-hybrid.html
>
> * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
> - shard-snb: NOTRUN -> [SKIP][277] ([i915#11520]) +2 other tests skip
> [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
>
> * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
> - shard-rkl: NOTRUN -> [SKIP][278] ([i915#11520]) +2 other tests skip
> [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
>
> * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
> - shard-glk: NOTRUN -> [SKIP][279] ([i915#11520]) +3 other tests skip
> [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-glk9/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
>
> * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
> - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#11520]) +6 other tests skip
> [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
>
> * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
> - shard-tglu: NOTRUN -> [SKIP][281] ([i915#11520]) +5 other tests skip
> [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
>
> * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
> - shard-dg1: NOTRUN -> [SKIP][282] ([i915#11520]) +9 other tests skip
> [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
>
> * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
> - shard-dg2: NOTRUN -> [SKIP][283] ([i915#11520]) +7 other tests skip
> [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
>
> * igt@kms_psr2_su@frontbuffer-xrgb8888:
> - shard-dg2: NOTRUN -> [SKIP][284] ([i915#9683])
> [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
>
> * igt@kms_psr2_su@page_flip-p010:
> - shard-tglu: NOTRUN -> [SKIP][285] ([i915#9683])
> [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-5/igt@kms_psr2_su@page_flip-p010.html
>
> * igt@kms_psr@fbc-psr-sprite-plane-move:
> - shard-tglu: NOTRUN -> [SKIP][286] ([i915#9732]) +16 other tests skip
> [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-6/igt@kms_psr@fbc-psr-sprite-plane-move.html
>
> * igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
> - shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#9732]) +13 other tests skip
> [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
>
> * igt@kms_psr@pr-cursor-blt:
> - shard-rkl: NOTRUN -> [SKIP][288] ([i915#1072] / [i915#9732]) +3 other tests skip
> [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@kms_psr@pr-cursor-blt.html
>
> * igt@kms_psr@pr-suspend:
> - shard-dg1: NOTRUN -> [SKIP][289] ([i915#1072] / [i915#9732]) +21 other tests skip
> [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@kms_psr@pr-suspend.html
>
> * igt@kms_psr@psr-cursor-render:
> - shard-dg2: NOTRUN -> [SKIP][290] ([i915#1072] / [i915#9732]) +18 other tests skip
> [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@kms_psr@psr-cursor-render.html
>
> * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
> - shard-tglu: NOTRUN -> [SKIP][291] ([i915#5289]) +1 other test skip
> [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
>
> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
> - shard-dg2: NOTRUN -> [SKIP][292] ([i915#5190]) +1 other test skip
> [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
> - shard-rkl: NOTRUN -> [SKIP][293] ([i915#5289])
> [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
>
> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
> - shard-dg2: NOTRUN -> [SKIP][294] ([i915#12755] / [i915#5190]) +1 other test skip
> [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
> - shard-dg1: NOTRUN -> [SKIP][295] ([i915#5289]) +2 other tests skip
> [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
>
> * igt@kms_rotation_crc@sprite-rotation-90:
> - shard-dg2: NOTRUN -> [SKIP][296] ([i915#12755]) +1 other test skip
> [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90.html
>
> * igt@kms_scaling_modes@scaling-mode-center:
> - shard-dg1: NOTRUN -> [SKIP][297] ([i915#3555]) +9 other tests skip
> [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_scaling_modes@scaling-mode-center.html
>
> * igt@kms_scaling_modes@scaling-mode-full-aspect:
> - shard-tglu: NOTRUN -> [SKIP][298] ([i915#3555]) +3 other tests skip
> [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html
>
> * igt@kms_scaling_modes@scaling-mode-none:
> - shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#3555]) +3 other tests skip
> [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-none.html
>
> * igt@kms_selftest@drm_framebuffer:
> - shard-glk: NOTRUN -> [ABORT][300] ([i915#12231]) +1 other test abort
> [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-glk4/igt@kms_selftest@drm_framebuffer.html
>
> * igt@kms_sysfs_edid_timing:
> - shard-dg2: [PASS][301] -> [FAIL][302] ([IGT#160])
> [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@kms_sysfs_edid_timing.html
> [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@kms_sysfs_edid_timing.html
> - shard-dg1: NOTRUN -> [FAIL][303] ([IGT#160] / [i915#6493])
> [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-12/igt@kms_sysfs_edid_timing.html
>
> * igt@kms_tiled_display@basic-test-pattern:
> - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#8623])
> [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
> - shard-dg1: NOTRUN -> [SKIP][305] ([i915#8623])
> [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern.html
> - shard-dg2: NOTRUN -> [SKIP][306] ([i915#8623])
> [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@kms_tiled_display@basic-test-pattern.html
> - shard-rkl: NOTRUN -> [SKIP][307] ([i915#8623])
> [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern.html
>
> * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
> - shard-tglu: NOTRUN -> [SKIP][308] ([i915#8623])
> [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
>
> * igt@kms_vrr@flip-basic-fastset:
> - shard-dg2: NOTRUN -> [SKIP][309] ([i915#9906])
> [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@kms_vrr@flip-basic-fastset.html
>
> * igt@kms_vrr@negative-basic:
> - shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#3555] / [i915#9906])
> [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_vrr@negative-basic.html
>
> * igt@kms_vrr@seamless-rr-switch-drrs:
> - shard-tglu: NOTRUN -> [SKIP][311] ([i915#9906])
> [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-2/igt@kms_vrr@seamless-rr-switch-drrs.html
>
> * igt@kms_vrr@seamless-rr-switch-virtual:
> - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#9906])
> [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html
>
> * igt@kms_writeback@writeback-check-output-xrgb2101010:
> - shard-tglu: NOTRUN -> [SKIP][313] ([i915#2437] / [i915#9412])
> [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html
> - shard-glk: NOTRUN -> [SKIP][314] ([i915#2437])
> [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-glk9/igt@kms_writeback@writeback-check-output-xrgb2101010.html
>
> * igt@kms_writeback@writeback-fb-id:
> - shard-tglu: NOTRUN -> [SKIP][315] ([i915#2437])
> [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-10/igt@kms_writeback@writeback-fb-id.html
>
> * igt@kms_writeback@writeback-pixel-formats:
> - shard-dg2: NOTRUN -> [SKIP][316] ([i915#2437] / [i915#9412])
> [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@kms_writeback@writeback-pixel-formats.html
>
> * igt@perf@gen8-unprivileged-single-ctx-counters:
> - shard-dg2: NOTRUN -> [SKIP][317] ([i915#2436])
> [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
>
> * igt@perf@non-zero-reason:
> - shard-dg2: NOTRUN -> [FAIL][318] ([i915#9100]) +1 other test fail
> [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@perf@non-zero-reason.html
>
> * igt@perf@unprivileged-single-ctx-counters:
> - shard-dg1: NOTRUN -> [SKIP][319] ([i915#2433])
> [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@perf@unprivileged-single-ctx-counters.html
>
> * igt@perf_pmu@all-busy-check-all:
> - shard-dg2: NOTRUN -> [SKIP][320] ([i915#12506]) +7 other tests skip
> [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@perf_pmu@all-busy-check-all.html
>
> * igt@perf_pmu@frequency@gt0:
> - shard-dg2: NOTRUN -> [FAIL][321] ([i915#12549] / [i915#6806]) +1 other test fail
> [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-2/igt@perf_pmu@frequency@gt0.html
>
> * igt@perf_pmu@module-unload:
> - shard-dg2: NOTRUN -> [FAIL][322] ([i915#11823])
> [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@perf_pmu@module-unload.html
>
> * igt@perf_pmu@most-busy-idle-check-all@rcs0:
> - shard-rkl: [PASS][323] -> [FAIL][324] ([i915#4349]) +1 other test fail
> [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
> [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
>
> * igt@perf_pmu@rc6-all-gts:
> - shard-dg1: NOTRUN -> [SKIP][325] ([i915#8516])
> [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@perf_pmu@rc6-all-gts.html
>
> * igt@prime_busy@hang:
> - shard-rkl: [PASS][326] -> [DMESG-WARN][327] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn
> [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-4/igt@prime_busy@hang.html
> [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-3/igt@prime_busy@hang.html
>
> * igt@prime_mmap@test_aperture_limit:
> - shard-dg2: NOTRUN -> [WARN][328] ([i915#9351])
> [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@prime_mmap@test_aperture_limit.html
>
> * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
> - shard-dg2: NOTRUN -> [CRASH][329] ([i915#9351])
> [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
>
> * igt@prime_mmap@test_reprime:
> - shard-dg2: [PASS][330] -> [SKIP][331] ([i915#2575]) +139 other tests skip
> [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@prime_mmap@test_reprime.html
> [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@prime_mmap@test_reprime.html
>
> * igt@prime_vgem@basic-fence-read:
> - shard-rkl: NOTRUN -> [SKIP][332] ([i915#3291] / [i915#3708])
> [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-1/igt@prime_vgem@basic-fence-read.html
> - shard-dg1: NOTRUN -> [SKIP][333] ([i915#3708])
> [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@prime_vgem@basic-fence-read.html
>
> * igt@sriov_basic@bind-unbind-vf:
> - shard-dg2: NOTRUN -> [SKIP][334] ([i915#9917]) +1 other test skip
> [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-2/igt@sriov_basic@bind-unbind-vf.html
>
> * igt@sriov_basic@enable-vfs-autoprobe-on:
> - shard-dg1: NOTRUN -> [SKIP][335] ([i915#9917])
> [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-13/igt@sriov_basic@enable-vfs-autoprobe-on.html
>
> * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
> - shard-tglu: NOTRUN -> [FAIL][336] ([i915#12910])
> [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
> - shard-rkl: NOTRUN -> [SKIP][337] ([i915#9917])
> [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
>
> * igt@tools_test@sysfs_l3_parity:
> - shard-rkl: NOTRUN -> [SKIP][338] +5 other tests skip
> [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@tools_test@sysfs_l3_parity.html
>
> * igt@tools_test@tools_test:
> - shard-dg2: NOTRUN -> [FAIL][339] ([i915#12875])
> [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@tools_test@tools_test.html
>
> * igt@vgem_basic@unload:
> - shard-rkl: NOTRUN -> [DMESG-WARN][340] ([i915#12964]) +5 other tests dmesg-warn
> [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@vgem_basic@unload.html
>
>
> #### Possible fixes ####
>
> * igt@core_setmaster@master-drop-set-shared-fd:
> - shard-dg2: [SKIP][341] -> [PASS][342] +26 other tests pass
> [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@core_setmaster@master-drop-set-shared-fd.html
> [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-5/igt@core_setmaster@master-drop-set-shared-fd.html
>
> * igt@gem_eio@in-flight-suspend:
> - shard-rkl: [DMESG-WARN][343] ([i915#12964]) -> [PASS][344] +44 other tests pass
> [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-7/igt@gem_eio@in-flight-suspend.html
> [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-1/igt@gem_eio@in-flight-suspend.html
>
> * igt@gem_lmem_swapping@verify:
> - shard-dg2: [SKIP][345] ([i915#12936]) -> [PASS][346] +1 other test pass
> [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_lmem_swapping@verify.html
> [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@gem_lmem_swapping@verify.html
>
> * igt@gem_mmap_offset@close-race:
> - shard-snb: [INCOMPLETE][347] -> [PASS][348]
> [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb4/igt@gem_mmap_offset@close-race.html
> [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb2/igt@gem_mmap_offset@close-race.html
>
> * igt@gem_pxp@reject-modify-context-protection-off-1:
> - shard-tglu: [SKIP][349] ([i915#4270]) -> [PASS][350]
> [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-4/igt@gem_pxp@reject-modify-context-protection-off-1.html
> [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@gem_pxp@reject-modify-context-protection-off-1.html
>
> * igt@gem_tiled_swapping@non-threaded:
> - shard-rkl: [FAIL][351] -> [PASS][352]
> [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-5/igt@gem_tiled_swapping@non-threaded.html
> [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-3/igt@gem_tiled_swapping@non-threaded.html
>
> * igt@gem_userptr_blits@map-fixed-invalidate:
> - shard-rkl: [DMESG-WARN][353] ([i915#12917] / [i915#12964]) -> [PASS][354] +1 other test pass
> [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-5/igt@gem_userptr_blits@map-fixed-invalidate.html
> [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-2/igt@gem_userptr_blits@map-fixed-invalidate.html
>
> * igt@gem_vm_create@execbuf:
> - shard-dg2: [SKIP][355] ([i915#2575]) -> [PASS][356] +163 other tests pass
> [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_vm_create@execbuf.html
> [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@gem_vm_create@execbuf.html
>
> * igt@i915_module_load@reload-no-display:
> - shard-tglu: [DMESG-WARN][357] -> [PASS][358]
> [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-4/igt@i915_module_load@reload-no-display.html
> [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-2/igt@i915_module_load@reload-no-display.html
>
> * igt@i915_module_load@reload-with-fault-injection:
> - shard-rkl: [ABORT][359] ([i915#9820]) -> [PASS][360]
> [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
> [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
> - shard-dg2: [ABORT][361] ([i915#9820]) -> [PASS][362]
> [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
> [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
>
> * igt@i915_pm_rc6_residency@rc6-accuracy:
> - shard-rkl: [FAIL][363] ([i915#12942]) -> [PASS][364] +1 other test pass
> [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-1/igt@i915_pm_rc6_residency@rc6-accuracy.html
> [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
>
> * igt@i915_pm_rpm@debugfs-read:
> - shard-dg2: [SKIP][365] ([i915#13014]) -> [PASS][366]
> [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@i915_pm_rpm@debugfs-read.html
> [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-5/igt@i915_pm_rpm@debugfs-read.html
>
> * igt@i915_pm_rpm@reg-read-ioctl:
> - shard-rkl: [SKIP][367] -> [PASS][368] +1 other test pass
> [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-3/igt@i915_pm_rpm@reg-read-ioctl.html
> [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@i915_pm_rpm@reg-read-ioctl.html
>
> * igt@i915_selftest@live:
> - shard-rkl: [DMESG-FAIL][369] -> [PASS][370] +1 other test pass
> [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-5/igt@i915_selftest@live.html
> [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@i915_selftest@live.html
>
> * igt@i915_selftest@live@sanitycheck:
> - shard-tglu: [ABORT][371] ([i915#13010]) -> [PASS][372] +1 other test pass
> [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-7/igt@i915_selftest@live@sanitycheck.html
> [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-5/igt@i915_selftest@live@sanitycheck.html
>
> * igt@i915_suspend@basic-s3-without-i915:
> - shard-dg2: [WARN][373] -> [PASS][374]
> [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@i915_suspend@basic-s3-without-i915.html
> [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-5/igt@i915_suspend@basic-s3-without-i915.html
> - shard-rkl: [INCOMPLETE][375] ([i915#12964] / [i915#4817]) -> [PASS][376]
> [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
> [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html
> - shard-dg1: [DMESG-WARN][377] ([i915#4391] / [i915#4423]) -> [PASS][378]
> [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-14/igt@i915_suspend@basic-s3-without-i915.html
> [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-14/igt@i915_suspend@basic-s3-without-i915.html
>
> * igt@i915_suspend@debugfs-reader:
> - shard-rkl: [DMESG-FAIL][379] ([i915#12964]) -> [PASS][380] +1 other test pass
> [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-3/igt@i915_suspend@debugfs-reader.html
> [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@i915_suspend@debugfs-reader.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
> - shard-snb: [FAIL][381] ([i915#2346]) -> [PASS][382]
> [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>
> * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1:
> - shard-snb: [FAIL][383] ([i915#2122]) -> [PASS][384] +5 other tests pass
> [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
> [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
>
> * igt@kms_flip@absolute-wf_vblank-interruptible:
> - shard-dg1: [DMESG-WARN][385] ([i915#4423]) -> [PASS][386]
> [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-13/igt@kms_flip@absolute-wf_vblank-interruptible.html
> [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-18/igt@kms_flip@absolute-wf_vblank-interruptible.html
>
> * igt@kms_flip@wf_vblank-ts-check:
> - shard-rkl: [FAIL][387] ([i915#11989] / [i915#2122]) -> [PASS][388]
> [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check.html
> [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check.html
>
> * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2:
> - shard-rkl: [FAIL][389] ([i915#11989]) -> [PASS][390]
> [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html
> [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
> - shard-snb: [SKIP][391] -> [PASS][392] +1 other test pass
> [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
> [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
>
> * igt@kms_hdr@invalid-metadata-sizes:
> - shard-dg2: [SKIP][393] ([i915#3555] / [i915#8228]) -> [PASS][394]
> [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-8/igt@kms_hdr@invalid-metadata-sizes.html
> [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html
>
> * igt@kms_plane_scaling@planes-downscale-factor-0-75:
> - shard-dg2: [SKIP][395] ([i915#2575] / [i915#9423]) -> [PASS][396] +4 other tests pass
> [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
> [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
>
> * igt@kms_pm_dc@dc9-dpms:
> - shard-tglu: [SKIP][397] ([i915#4281]) -> [PASS][398]
> [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html
> [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html
>
> * igt@kms_pm_rpm@basic-pci-d3-state:
> - shard-dg2: [SKIP][399] ([i915#12937]) -> [PASS][400] +2 other tests pass
> [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@kms_pm_rpm@basic-pci-d3-state.html
> [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-2/igt@kms_pm_rpm@basic-pci-d3-state.html
>
> * igt@kms_pm_rpm@dpms-lpsp:
> - shard-dg2: [SKIP][401] ([i915#9519]) -> [PASS][402]
> [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html
> [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html
>
> * igt@kms_pm_rpm@modeset-non-lpsp:
> - shard-rkl: [SKIP][403] ([i915#9519]) -> [PASS][404] +1 other test pass
> [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
> [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
>
> * igt@kms_setmode@basic:
> - shard-tglu: [FAIL][405] ([i915#12722] / [i915#5465]) -> [PASS][406]
> [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-4/igt@kms_setmode@basic.html
> [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@kms_setmode@basic.html
>
> * igt@kms_setmode@basic@pipe-a-hdmi-a-1:
> - shard-tglu: [FAIL][407] ([i915#12722]) -> [PASS][408]
> [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-4/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
> [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
>
> * igt@kms_setmode@basic@pipe-b-hdmi-a-1:
> - shard-tglu: [FAIL][409] ([i915#5465]) -> [PASS][410]
> [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-tglu-4/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
> [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-tglu-3/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
>
> * igt@perf_pmu@busy:
> - shard-dg2: [SKIP][411] ([i915#12506]) -> [PASS][412] +11 other tests pass
> [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@perf_pmu@busy.html
> [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@perf_pmu@busy.html
>
> * igt@perf_pmu@most-busy-idle-check-all:
> - shard-dg2: [FAIL][413] ([i915#11943] / [i915#12515]) -> [PASS][414] +1 other test pass
> [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-8/igt@perf_pmu@most-busy-idle-check-all.html
> [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-7/igt@perf_pmu@most-busy-idle-check-all.html
>
> * igt@perf_pmu@semaphore-busy@vcs1:
> - shard-dg1: [FAIL][415] ([i915#4349]) -> [PASS][416] +3 other tests pass
> [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html
> [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html
>
> * igt@perf_pmu@semaphore-busy@vecs0:
> - shard-dg2: [FAIL][417] ([i915#4349]) -> [PASS][418] +5 other tests pass
> [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-4/igt@perf_pmu@semaphore-busy@vecs0.html
> [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@perf_pmu@semaphore-busy@vecs0.html
>
>
> #### Warnings ####
>
> * igt@api_intel_bb@blit-reloc-purge-cache:
> - shard-dg2: [SKIP][419] ([i915#8411]) -> [SKIP][420] ([i915#2575])
> [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-10/igt@api_intel_bb@blit-reloc-purge-cache.html
> [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@api_intel_bb@blit-reloc-purge-cache.html
>
> * igt@drm_fdinfo@busy-hang:
> - shard-dg2: [SKIP][421] ([i915#12506]) -> [SKIP][422] ([i915#8414])
> [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@drm_fdinfo@busy-hang.html
> [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-10/igt@drm_fdinfo@busy-hang.html
>
> * igt@gem_close_race@multigpu-basic-threads:
> - shard-dg2: [SKIP][423] ([i915#2575]) -> [SKIP][424] ([i915#7697])
> [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html
> [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-6/igt@gem_close_race@multigpu-basic-threads.html
>
> * igt@gem_ctx_persistence@heartbeat-hostile:
> - shard-dg2: [SKIP][425] ([i915#2575]) -> [SKIP][426] ([i915#8555])
> [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hostile.html
> [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hostile.html
>
> * igt@gem_ctx_persistence@heartbeat-many:
> - shard-dg2: [SKIP][427] ([i915#8555]) -> [SKIP][428] ([i915#2575])
> [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-many.html
> [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-many.html
>
> * igt@gem_ctx_persistence@hostile:
> - shard-dg2: [SKIP][429] ([i915#2575]) -> [FAIL][430] ([i915#11980] / [i915#12580])
> [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_ctx_persistence@hostile.html
> [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@gem_ctx_persistence@hostile.html
>
> * igt@gem_ctx_sseu@mmap-args:
> - shard-dg2: [SKIP][431] ([i915#2575]) -> [SKIP][432] ([i915#280])
> [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_ctx_sseu@mmap-args.html
> [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-4/igt@gem_ctx_sseu@mmap-args.html
>
> * igt@gem_exec_fence@submit:
> - shard-dg2: [SKIP][433] ([i915#4812]) -> [SKIP][434] ([i915#2575])
> [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-10/igt@gem_exec_fence@submit.html
> [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_exec_fence@submit.html
>
> * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
> - shard-dg2: [SKIP][435] ([i915#3539] / [i915#4852]) -> [SKIP][436] ([i915#2575])
> [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
> [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
>
> * igt@gem_exec_flush@basic-batch-kernel-default-uc:
> - shard-dg2: [SKIP][437] ([i915#2575]) -> [SKIP][438] ([i915#3539] / [i915#4852]) +1 other test skip
> [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
> [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-8/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
>
> * igt@gem_exec_reloc@basic-cpu-read:
> - shard-dg2: [SKIP][439] ([i915#2575]) -> [SKIP][440] ([i915#3281]) +9 other tests skip
> [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-read.html
> [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-read.html
>
> * igt@gem_exec_reloc@basic-write-gtt-noreloc:
> - shard-dg2: [SKIP][441] ([i915#3281]) -> [SKIP][442] ([i915#2575]) +2 other tests skip
> [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@gem_exec_reloc@basic-write-gtt-noreloc.html
> [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_exec_reloc@basic-write-gtt-noreloc.html
>
> * igt@gem_exec_schedule@reorder-wide:
> - shard-dg2: [SKIP][443] ([i915#4537] / [i915#4812]) -> [SKIP][444] ([i915#2575]) +1 other test skip
> [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-7/igt@gem_exec_schedule@reorder-wide.html
> [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_exec_schedule@reorder-wide.html
>
> * igt@gem_exec_suspend@basic-s0:
> - shard-dg2: [SKIP][445] ([i915#2575]) -> [INCOMPLETE][446] ([i915#11441])
> [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_exec_suspend@basic-s0.html
> [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html
>
> * igt@gem_fence_thrash@bo-copy:
> - shard-dg2: [SKIP][447] ([i915#2575]) -> [SKIP][448] ([i915#4860])
> [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html
> [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-1/igt@gem_fence_thrash@bo-copy.html
>
> * igt@gem_fence_thrash@bo-write-verify-y:
> - shard-dg2: [SKIP][449] ([i915#4860]) -> [SKIP][450] ([i915#2575])
> [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-y.html
> [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-y.html
>
> * igt@gem_madvise@dontneed-before-pwrite:
> - shard-dg2: [SKIP][451] ([i915#3282]) -> [SKIP][452] ([i915#2575]) +1 other test skip
> [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-7/igt@gem_madvise@dontneed-before-pwrite.html
> [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/shard-dg2-11/igt@gem_madvise@dontneed-before-pwrite.html
>
> * igt@gem_media_vme:
> - shard-dg2: [SKIP][453] ([i915#2575]) -> [SKIP][454] ([i915#284])
> [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15738/shard-dg2-11/igt@gem_media_vme.html
> [454]
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12188/index.html
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2024-11-26 11:53 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-25 8:22 [PATCH i-g-t v7 0/6] GPGPU fill improvements Zbigniew Kempczyński
2024-11-25 8:22 ` [PATCH i-g-t v7 1/6] tests/xe_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
2024-11-25 8:22 ` [PATCH i-g-t v7 2/6] tests/xe_gpgpu_fill: Add width/height/x/y command line args Zbigniew Kempczyński
2024-11-25 8:22 ` [PATCH i-g-t v7 3/6] tests/xe_gpgpu_fill: Add offset-16x16 subtest Zbigniew Kempczyński
2024-11-25 8:22 ` [PATCH i-g-t v7 4/6] tests/gem_gpgpu_fill: Add command line switch to dump the surface Zbigniew Kempczyński
2024-11-25 8:22 ` [PATCH i-g-t v7 5/6] tests/gem_gpgpu_fill: Add width/height/x/y command line args Zbigniew Kempczyński
2024-11-25 8:22 ` [PATCH i-g-t v7 6/6] tests/gem_gpgpu_fill: Add offset-16x16 subtest Zbigniew Kempczyński
2024-11-25 9:50 ` ✓ Xe.CI.BAT: success for GPGPU fill improvements (rev7) Patchwork
2024-11-25 10:03 ` ✗ i915.CI.BAT: failure " Patchwork
2024-11-25 11:20 ` ✗ Xe.CI.Full: " Patchwork
2024-11-25 13:36 ` ✗ GitLab.Pipeline: warning for GPGPU fill improvements (rev8) Patchwork
2024-11-25 13:48 ` ✓ Xe.CI.BAT: success " Patchwork
2024-11-25 14:01 ` ✓ i915.CI.BAT: " Patchwork
2024-11-25 15:20 ` ✗ Xe.CI.Full: failure " Patchwork
2024-11-25 15:47 ` ✗ i915.CI.Full: " Patchwork
2024-11-26 11:52 ` Zbigniew Kempczyński
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox