* [PATCH i-g-t v2 0/4] Fill block-copy test gap for unaligned sizes
@ 2024-01-31 13:25 Zbigniew Kempczyński
2024-01-31 13:25 ` [PATCH i-g-t v2 1/4] lib/intel_blt: Add helpers for calculating stride and aligned height Zbigniew Kempczyński
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: Zbigniew Kempczyński @ 2024-01-31 13:25 UTC (permalink / raw)
To: igt-dev
Using 512x512 resolution for testing is too optimistic and hides intel_blt
limitation for using different (smaller) resolutions which also might
not be aligned to expected stride and height.
Address this by adding few helpers, change blt buffer creation size
calculation and add "increment" version of the test in xe_ccs.
v2: fix handling Tile64 what also requires bpp in dumping to
png as helper for aligned height depend on it (Zbigniew)
Zbigniew Kempczyński (4):
lib/intel_blt: Add helpers for calculating stride and aligned height
lib/intel_blt: Change surface size calculation
lib/intel_blt: Use object pitch and aligned height on png write
tests/xe-ccs: Add tests which exercise small to large blit sizes
lib/intel_blt.c | 83 +++++++++++++++-
lib/intel_blt.h | 2 +-
tests/intel/gem_ccs.c | 23 ++---
tests/intel/gem_exercise_blt.c | 16 ++--
tests/intel/xe_ccs.c | 167 ++++++++++++++++++++++++---------
tests/intel/xe_exercise_blt.c | 16 ++--
6 files changed, 233 insertions(+), 74 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH i-g-t v2 1/4] lib/intel_blt: Add helpers for calculating stride and aligned height
2024-01-31 13:25 [PATCH i-g-t v2 0/4] Fill block-copy test gap for unaligned sizes Zbigniew Kempczyński
@ 2024-01-31 13:25 ` Zbigniew Kempczyński
2024-01-31 13:25 ` [PATCH i-g-t v2 2/4] lib/intel_blt: Change surface size calculation Zbigniew Kempczyński
` (5 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Zbigniew Kempczyński @ 2024-01-31 13:25 UTC (permalink / raw)
To: igt-dev; +Cc: Karolina Drobnik
Tiled surfaces have stride / aligned height constraints. Currently
blt library has limitation and doesn't work properly when surface
stride is not valid for specific tiling.
As an example lets say we want to copy from linear to xmajor
33 x 33 x 32bpp surface. Xmajor surface expects stride aligned to
512 bytes and height to 8 rows so this surface will occupy 512B x 40
(128 x 40 x 32 bpp).
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Karolina Drobnik <karolina.drobnik@intel.com>
---
v2: Fix stride/aligned height calculation for Tile64
---
lib/intel_blt.c | 63 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 63 insertions(+)
diff --git a/lib/intel_blt.c b/lib/intel_blt.c
index 25d251c4f8..6d1aa0608f 100644
--- a/lib/intel_blt.c
+++ b/lib/intel_blt.c
@@ -521,6 +521,69 @@ static int __block_tiling(enum blt_tiling_type tiling)
return 0;
}
+/**
+ * blt_get_min_stride
+ * @width: width in pixels
+ * @bpp: bits per pixel
+ * @tiling: tiling
+ *
+ * Function returns minimum posibble stride in bytes for width, bpp and tiling.
+ *
+ * Returns:
+ * minimum possible stride in bytes.
+ */
+static uint32_t blt_get_min_stride(uint32_t width, uint32_t bpp,
+ enum blt_tiling_type tiling)
+{
+ switch (tiling) {
+ case T_LINEAR:
+ return width * bpp / 8;
+ case T_XMAJOR:
+ case T_TILE64:
+ if (bpp == 8)
+ return ALIGN(width, 256);
+ else if (bpp == 16 || bpp == 32)
+ return ALIGN(width * bpp / 8, 512);
+ return ALIGN(width * bpp / 8, 1024);
+
+ default:
+ return ALIGN(width * bpp / 8, 128);
+ }
+}
+
+/**
+ * blt_get_aligned_height
+ * @height: height in pixels
+ * @bpp: bits per pixel (used for Tile64 due to different tile organization
+ * in pixels)
+ * @tiling: tiling
+ *
+ * Function returns aligned height for specific tiling. Height returned is
+ * important from memory allocation perspective, because each tiling has
+ * specific memory constraints.
+ *
+ * Returns:
+ * height (rows) expected for specific tiling
+ */
+static uint32_t blt_get_aligned_height(uint32_t height, uint32_t bpp,
+ enum blt_tiling_type tiling)
+{
+ switch (tiling) {
+ case T_LINEAR:
+ return height;
+ case T_XMAJOR:
+ return ALIGN(height, 8);
+ case T_TILE64:
+ if (bpp == 8)
+ return ALIGN(height, 256);
+ else if (bpp == 16 || bpp == 32)
+ return ALIGN(height, 128);
+ return ALIGN(height, 64);
+ default:
+ return ALIGN(height, 32);
+ }
+}
+
static int __special_mode(const struct blt_copy_data *blt)
{
if (blt->src.handle == blt->dst.handle &&
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH i-g-t v2 2/4] lib/intel_blt: Change surface size calculation
2024-01-31 13:25 [PATCH i-g-t v2 0/4] Fill block-copy test gap for unaligned sizes Zbigniew Kempczyński
2024-01-31 13:25 ` [PATCH i-g-t v2 1/4] lib/intel_blt: Add helpers for calculating stride and aligned height Zbigniew Kempczyński
@ 2024-01-31 13:25 ` Zbigniew Kempczyński
2024-01-31 13:25 ` [PATCH i-g-t v2 3/4] lib/intel_blt: Use object pitch and aligned height on png write Zbigniew Kempczyński
` (4 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Zbigniew Kempczyński @ 2024-01-31 13:25 UTC (permalink / raw)
To: igt-dev; +Cc: Karolina Drobnik
For tiled surfaces we need to ensure stride and height are valid
from the blit operation perspective. Calculate required surface
size according to tiling constraints.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Karolina Drobnik <karolina.drobnik@intel.com>
---
lib/intel_blt.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/lib/intel_blt.c b/lib/intel_blt.c
index 6d1aa0608f..2076cb56c4 100644
--- a/lib/intel_blt.c
+++ b/lib/intel_blt.c
@@ -1857,13 +1857,21 @@ blt_create_object(const struct blt_copy_data *blt, uint32_t region,
bool create_mapping)
{
struct blt_copy_object *obj;
- uint64_t size = width * height * bpp / 8;
- uint32_t stride = tiling == T_LINEAR ? width * 4 : width;
+ uint32_t stride, aligned_height;
+ uint64_t size;
uint32_t handle;
uint8_t pat_index = DEFAULT_PAT_INDEX;
igt_assert_f(blt->driver, "Driver isn't set, have you called blt_copy_init()?\n");
+ stride = blt_get_min_stride(width, bpp, tiling);
+ aligned_height = blt_get_aligned_height(height, bpp, tiling);
+ size = stride * aligned_height;
+
+ /* blitter command expects stride in dwords on tiled surfaces */
+ if (tiling)
+ stride /= 4;
+
obj = calloc(1, sizeof(*obj));
obj->size = size;
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH i-g-t v2 3/4] lib/intel_blt: Use object pitch and aligned height on png write
2024-01-31 13:25 [PATCH i-g-t v2 0/4] Fill block-copy test gap for unaligned sizes Zbigniew Kempczyński
2024-01-31 13:25 ` [PATCH i-g-t v2 1/4] lib/intel_blt: Add helpers for calculating stride and aligned height Zbigniew Kempczyński
2024-01-31 13:25 ` [PATCH i-g-t v2 2/4] lib/intel_blt: Change surface size calculation Zbigniew Kempczyński
@ 2024-01-31 13:25 ` Zbigniew Kempczyński
2024-01-31 13:25 ` [PATCH i-g-t v2 4/4] tests/xe-ccs: Add tests which exercise small to large blit sizes Zbigniew Kempczyński
` (3 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Zbigniew Kempczyński @ 2024-01-31 13:25 UTC (permalink / raw)
To: igt-dev; +Cc: Karolina Drobnik
Pitch and buffer height on tiled surfaces might be bigger than
image width and height so dump memory to png using pitch size
instead width and aligned height instead height.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Karolina Drobnik <karolina.drobnik@intel.com>
---
lib/intel_blt.c | 8 +++++++-
lib/intel_blt.h | 2 +-
tests/intel/gem_ccs.c | 23 ++++++++++++-----------
tests/intel/gem_exercise_blt.c | 16 ++++++++--------
tests/intel/xe_ccs.c | 23 ++++++++++++-----------
tests/intel/xe_exercise_blt.c | 16 ++++++++--------
6 files changed, 48 insertions(+), 40 deletions(-)
diff --git a/lib/intel_blt.c b/lib/intel_blt.c
index 2076cb56c4..5ed98293f9 100644
--- a/lib/intel_blt.c
+++ b/lib/intel_blt.c
@@ -2075,12 +2075,13 @@ void blt_surface_info(const char *info, const struct blt_copy_object *obj)
* @obj: blitter copy object (@blt_copy_object) to save to png
* @width: width
* @height: height
+ * @bpp: bits per pixel
*
* Function save surface to png file. Assumes ARGB format where A == 0xff.
*/
void blt_surface_to_png(int fd, uint32_t run_id, const char *fileid,
const struct blt_copy_object *obj,
- uint32_t width, uint32_t height)
+ uint32_t width, uint32_t height, uint32_t bpp)
{
cairo_surface_t *surface;
cairo_status_t ret;
@@ -2090,6 +2091,11 @@ void blt_surface_to_png(int fd, uint32_t run_id, const char *fileid,
char filename[FILENAME_MAX];
bool is_xe = is_xe_device(fd);
+ if (obj->tiling) {
+ width = obj->pitch;
+ height = blt_get_aligned_height(height, bpp, obj->tiling);
+ }
+
snprintf(filename, FILENAME_MAX-1, "%d-%s-%s-%ux%u-%s.png",
run_id, fileid, blt_tiling_name(obj->tiling), width, height,
obj->compression ? "compressed" : "uncompressed");
diff --git a/lib/intel_blt.h b/lib/intel_blt.h
index d9be22fdf4..59382f8f71 100644
--- a/lib/intel_blt.h
+++ b/lib/intel_blt.h
@@ -311,7 +311,7 @@ void blt_surface_fill_rect(int fd, const struct blt_copy_object *obj,
uint32_t width, uint32_t height);
void blt_surface_to_png(int fd, uint32_t run_id, const char *fileid,
const struct blt_copy_object *obj,
- uint32_t width, uint32_t height);
+ uint32_t width, uint32_t height, uint32_t bpp);
void blt_dump_corruption_info_32b(const struct blt_copy_object *surf1,
const struct blt_copy_object *surf2);
diff --git a/tests/intel/gem_ccs.c b/tests/intel/gem_ccs.c
index 80a29ecab7..e8f16d7d88 100644
--- a/tests/intel/gem_ccs.c
+++ b/tests/intel/gem_ccs.c
@@ -82,9 +82,9 @@ struct test_config {
if (param.print_surface_info) \
blt_surface_info((name), (obj)); } while (0)
-#define WRITE_PNG(fd, id, name, obj, w, h) do { \
+#define WRITE_PNG(fd, id, name, obj, w, h, bpp) do { \
if (param.write_png) \
- blt_surface_to_png((fd), (id), (name), (obj), (w), (h)); } while (0)
+ blt_surface_to_png((fd), (id), (name), (obj), (w), (h), (bpp)); } while (0)
static void surf_copy(int i915,
const intel_ctx_t *ctx,
@@ -98,6 +98,7 @@ static void surf_copy(int i915,
struct blt_copy_data blt = {};
struct blt_block_copy_data_ext ext = {};
struct blt_ctrl_surf_copy_data surf = {};
+ const uint32_t bpp = 32;
uint32_t bb1, bb2, ccs, ccs2, *ccsmap, *ccsmap2;
uint64_t bb_size, ccssize = mid->size / CCS_RATIO(i915);
uint32_t *ccscopy;
@@ -172,7 +173,7 @@ static void surf_copy(int i915,
blt_set_batch(&blt.bb, bb2, bb_size, REGION_SMEM);
blt_block_copy(i915, ctx, e, ahnd, &blt, &ext);
gem_sync(i915, blt.dst.handle);
- WRITE_PNG(i915, run_id, "corrupted", &blt.dst, dst->x2, dst->y2);
+ WRITE_PNG(i915, run_id, "corrupted", &blt.dst, dst->x2, dst->y2, bpp);
result = memcmp(src->ptr, dst->ptr, src->size);
igt_assert(result != 0);
@@ -182,7 +183,7 @@ static void surf_copy(int i915,
blt_block_copy(i915, ctx, e, ahnd, &blt, &ext);
gem_sync(i915, blt.dst.handle);
- WRITE_PNG(i915, run_id, "corrected", &blt.dst, dst->x2, dst->y2);
+ WRITE_PNG(i915, run_id, "corrected", &blt.dst, dst->x2, dst->y2, bpp);
result = memcmp(src->ptr, dst->ptr, src->size);
if (result)
blt_dump_corruption_info_32b(src, dst);
@@ -346,7 +347,7 @@ static void block_copy(int i915,
PRINT_SURFACE_INFO("dst", dst);
blt_surface_fill_rect(i915, src, width, height);
- WRITE_PNG(i915, run_id, "src", src, width, height);
+ WRITE_PNG(i915, run_id, "src", src, width, height, bpp);
blt.color_depth = CD_32bit;
blt.print_bb = param.print_bb;
@@ -363,7 +364,7 @@ static void block_copy(int i915,
if (mid->compression)
igt_assert(memcmp(src->ptr, mid->ptr, src->size) != 0);
- WRITE_PNG(i915, run_id, "mid", &blt.dst, width, height);
+ WRITE_PNG(i915, run_id, "mid", &blt.dst, width, height, bpp);
if (config->surfcopy && pext) {
const intel_ctx_t *surf_ctx = ctx;
@@ -408,7 +409,7 @@ static void block_copy(int i915,
blt_set_batch(&blt.bb, bb, bb_size, region1);
blt_block_copy(i915, ctx, e, ahnd, &blt, pext);
gem_sync(i915, blt.dst.handle);
- WRITE_PNG(i915, run_id, "dst", &blt.dst, width, height);
+ WRITE_PNG(i915, run_id, "dst", &blt.dst, width, height, bpp);
result = memcmp(src->ptr, blt.dst.ptr, src->size);
@@ -491,11 +492,11 @@ static void block_multicopy(int i915,
blt_block_copy3(i915, ctx, e, ahnd, &blt3, pext3);
gem_sync(i915, blt3.final.handle);
- WRITE_PNG(i915, run_id, "src", &blt3.src, width, height);
+ WRITE_PNG(i915, run_id, "src", &blt3.src, width, height, bpp);
if (!config->inplace)
- WRITE_PNG(i915, run_id, "mid", &blt3.mid, width, height);
- WRITE_PNG(i915, run_id, "dst", &blt3.dst, width, height);
- WRITE_PNG(i915, run_id, "final", &blt3.final, width, height);
+ WRITE_PNG(i915, run_id, "mid", &blt3.mid, width, height, bpp);
+ WRITE_PNG(i915, run_id, "dst", &blt3.dst, width, height, bpp);
+ WRITE_PNG(i915, run_id, "final", &blt3.final, width, height, bpp);
result = memcmp(src->ptr, blt3.final.ptr, src->size);
diff --git a/tests/intel/gem_exercise_blt.c b/tests/intel/gem_exercise_blt.c
index 7355eabbe9..4a9bc37298 100644
--- a/tests/intel/gem_exercise_blt.c
+++ b/tests/intel/gem_exercise_blt.c
@@ -50,9 +50,9 @@ static struct param {
if (param.print_surface_info) \
blt_surface_info((name), (obj)); } while (0)
-#define WRITE_PNG(fd, id, name, obj, w, h) do { \
+#define WRITE_PNG(fd, id, name, obj, w, h, bpp) do { \
if (param.write_png) \
- blt_surface_to_png((fd), (id), (name), (obj), (w), (h)); } while (0)
+ blt_surface_to_png((fd), (id), (name), (obj), (w), (h), (bpp)); } while (0)
struct blt_fast_copy_data {
int i915;
@@ -167,7 +167,7 @@ static void fast_copy_emit(int i915, const intel_ctx_t *ctx,
PRINT_SURFACE_INFO("dst", dst);
blt_surface_fill_rect(i915, src, width, height);
- WRITE_PNG(i915, mid_tiling, "src", src, width, height);
+ WRITE_PNG(i915, mid_tiling, "src", src, width, height, bpp);
memset(&blt, 0, sizeof(blt));
blt.color_depth = CD_32bit;
@@ -180,8 +180,8 @@ static void fast_copy_emit(int i915, const intel_ctx_t *ctx,
fast_copy_one_bb(i915, ctx, e, ahnd, &blt);
gem_sync(i915, blt.dst.handle);
- WRITE_PNG(i915, mid_tiling, "mid", &blt.mid, width, height);
- WRITE_PNG(i915, mid_tiling, "dst", &blt.dst, width, height);
+ WRITE_PNG(i915, mid_tiling, "mid", &blt.mid, width, height, bpp);
+ WRITE_PNG(i915, mid_tiling, "dst", &blt.dst, width, height, bpp);
result = memcmp(src->ptr, blt.dst.ptr, src->size);
@@ -234,8 +234,8 @@ static void fast_copy(int i915, const intel_ctx_t *ctx,
blt_fast_copy(i915, ctx, e, ahnd, &blt);
gem_sync(i915, mid->handle);
- WRITE_PNG(i915, mid_tiling, "src", &blt.src, width, height);
- WRITE_PNG(i915, mid_tiling, "mid", &blt.dst, width, height);
+ WRITE_PNG(i915, mid_tiling, "src", &blt.src, width, height, bpp);
+ WRITE_PNG(i915, mid_tiling, "mid", &blt.dst, width, height, bpp);
blt_copy_init(i915, &blt);
blt.color_depth = CD_32bit;
@@ -247,7 +247,7 @@ static void fast_copy(int i915, const intel_ctx_t *ctx,
blt_fast_copy(i915, ctx, e, ahnd, &blt);
gem_sync(i915, blt.dst.handle);
- WRITE_PNG(i915, mid_tiling, "dst", &blt.dst, width, height);
+ WRITE_PNG(i915, mid_tiling, "dst", &blt.dst, width, height, bpp);
result = memcmp(src->ptr, blt.dst.ptr, src->size);
diff --git a/tests/intel/xe_ccs.c b/tests/intel/xe_ccs.c
index 7d0e8ed7a5..a7785edcb1 100644
--- a/tests/intel/xe_ccs.c
+++ b/tests/intel/xe_ccs.c
@@ -79,9 +79,9 @@ struct test_config {
if (param.print_surface_info) \
blt_surface_info((name), (obj)); } while (0)
-#define WRITE_PNG(fd, id, name, obj, w, h) do { \
+#define WRITE_PNG(fd, id, name, obj, w, h, bpp) do { \
if (param.write_png) \
- blt_surface_to_png((fd), (id), (name), (obj), (w), (h)); } while (0)
+ blt_surface_to_png((fd), (id), (name), (obj), (w), (h), (bpp)); } while (0)
static void surf_copy(int xe,
intel_ctx_t *ctx,
@@ -94,6 +94,7 @@ static void surf_copy(int xe,
struct blt_copy_data blt = {};
struct blt_block_copy_data_ext ext = {};
struct blt_ctrl_surf_copy_data surf = {};
+ const uint32_t bpp = 32;
uint32_t bb1, bb2, ccs, ccs2, *ccsmap, *ccsmap2;
uint64_t bb_size, ccssize = mid->size / CCS_RATIO(xe);
uint64_t ccs_bo_size = xe_get_default_alignment(xe);
@@ -179,7 +180,7 @@ static void surf_copy(int xe,
blt_set_batch(&blt.bb, bb2, bb_size, sysmem);
blt_block_copy(xe, ctx, NULL, ahnd, &blt, &ext);
intel_ctx_xe_sync(ctx, true);
- WRITE_PNG(xe, run_id, "corrupted", &blt.dst, dst->x2, dst->y2);
+ WRITE_PNG(xe, run_id, "corrupted", &blt.dst, dst->x2, dst->y2, bpp);
result = memcmp(src->ptr, dst->ptr, src->size);
igt_assert(result != 0);
@@ -189,7 +190,7 @@ static void surf_copy(int xe,
blt_block_copy(xe, ctx, NULL, ahnd, &blt, &ext);
intel_ctx_xe_sync(ctx, true);
- WRITE_PNG(xe, run_id, "corrected", &blt.dst, dst->x2, dst->y2);
+ WRITE_PNG(xe, run_id, "corrected", &blt.dst, dst->x2, dst->y2, bpp);
result = memcmp(src->ptr, dst->ptr, src->size);
if (result)
blt_dump_corruption_info_32b(src, dst);
@@ -326,7 +327,7 @@ static void block_copy(int xe,
PRINT_SURFACE_INFO("dst", dst);
blt_surface_fill_rect(xe, src, width, height);
- WRITE_PNG(xe, run_id, "src", src, width, height);
+ WRITE_PNG(xe, run_id, "src", src, width, height, bpp);
blt.color_depth = CD_32bit;
blt.print_bb = param.print_bb;
@@ -342,7 +343,7 @@ static void block_copy(int xe,
if (mid->compression)
igt_assert(memcmp(src->ptr, mid->ptr, src->size) != 0);
- WRITE_PNG(xe, run_id, "mid", &blt.dst, width, height);
+ WRITE_PNG(xe, run_id, "mid", &blt.dst, width, height, bpp);
if (config->surfcopy && pext) {
struct drm_xe_engine_class_instance inst = {
@@ -393,7 +394,7 @@ static void block_copy(int xe,
blt_block_copy(xe, ctx, NULL, ahnd, &blt, pext);
intel_ctx_xe_sync(ctx, true);
- WRITE_PNG(xe, run_id, "dst", &blt.dst, width, height);
+ WRITE_PNG(xe, run_id, "dst", &blt.dst, width, height, bpp);
result = memcmp(src->ptr, blt.dst.ptr, src->size);
@@ -486,11 +487,11 @@ static void block_multicopy(int xe,
blt_block_copy3(xe, ctx, ahnd, &blt3, pext3);
intel_ctx_xe_sync(ctx, true);
- WRITE_PNG(xe, run_id, "src", &blt3.src, width, height);
+ WRITE_PNG(xe, run_id, "src", &blt3.src, width, height, bpp);
if (!config->inplace)
- WRITE_PNG(xe, run_id, "mid", &blt3.mid, width, height);
- WRITE_PNG(xe, run_id, "dst", &blt3.dst, width, height);
- WRITE_PNG(xe, run_id, "final", &blt3.final, width, height);
+ WRITE_PNG(xe, run_id, "mid", &blt3.mid, width, height, bpp);
+ WRITE_PNG(xe, run_id, "dst", &blt3.dst, width, height, bpp);
+ WRITE_PNG(xe, run_id, "final", &blt3.final, width, height, bpp);
result = memcmp(src->ptr, blt3.final.ptr, src->size);
diff --git a/tests/intel/xe_exercise_blt.c b/tests/intel/xe_exercise_blt.c
index c908800cf4..ddf9d188a7 100644
--- a/tests/intel/xe_exercise_blt.c
+++ b/tests/intel/xe_exercise_blt.c
@@ -53,9 +53,9 @@ static struct param {
if (param.print_surface_info) \
blt_surface_info((name), (obj)); } while (0)
-#define WRITE_PNG(fd, id, name, obj, w, h) do { \
+#define WRITE_PNG(fd, id, name, obj, w, h, bpp) do { \
if (param.write_png) \
- blt_surface_to_png((fd), (id), (name), (obj), (w), (h)); } while (0)
+ blt_surface_to_png((fd), (id), (name), (obj), (w), (h), (bpp)); } while (0)
struct blt_fast_copy_data {
int xe;
@@ -141,7 +141,7 @@ static void fast_copy_emit(int xe, const intel_ctx_t *ctx,
PRINT_SURFACE_INFO("dst", dst);
blt_surface_fill_rect(xe, src, width, height);
- WRITE_PNG(xe, mid_tiling, "src", src, width, height);
+ WRITE_PNG(xe, mid_tiling, "src", src, width, height, bpp);
memset(&blt, 0, sizeof(blt));
blt.color_depth = CD_32bit;
@@ -153,8 +153,8 @@ static void fast_copy_emit(int xe, const intel_ctx_t *ctx,
fast_copy_one_bb(xe, ctx, ahnd, &blt);
- WRITE_PNG(xe, mid_tiling, "mid", &blt.mid, width, height);
- WRITE_PNG(xe, mid_tiling, "dst", &blt.dst, width, height);
+ WRITE_PNG(xe, mid_tiling, "mid", &blt.mid, width, height, bpp);
+ WRITE_PNG(xe, mid_tiling, "dst", &blt.dst, width, height, bpp);
result = memcmp(src->ptr, blt.dst.ptr, src->size);
@@ -205,8 +205,8 @@ static void fast_copy(int xe, const intel_ctx_t *ctx,
blt_fast_copy(xe, ctx, NULL, ahnd, &blt);
- WRITE_PNG(xe, mid_tiling, "src", &blt.src, width, height);
- WRITE_PNG(xe, mid_tiling, "mid", &blt.dst, width, height);
+ WRITE_PNG(xe, mid_tiling, "src", &blt.src, width, height, bpp);
+ WRITE_PNG(xe, mid_tiling, "mid", &blt.dst, width, height, bpp);
blt_copy_init(xe, &blt);
blt.color_depth = CD_32bit;
@@ -217,7 +217,7 @@ static void fast_copy(int xe, const intel_ctx_t *ctx,
blt_fast_copy(xe, ctx, NULL, ahnd, &blt);
- WRITE_PNG(xe, mid_tiling, "dst", &blt.dst, width, height);
+ WRITE_PNG(xe, mid_tiling, "dst", &blt.dst, width, height, bpp);
result = memcmp(src->ptr, blt.dst.ptr, src->size);
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH i-g-t v2 4/4] tests/xe-ccs: Add tests which exercise small to large blit sizes
2024-01-31 13:25 [PATCH i-g-t v2 0/4] Fill block-copy test gap for unaligned sizes Zbigniew Kempczyński
` (2 preceding siblings ...)
2024-01-31 13:25 ` [PATCH i-g-t v2 3/4] lib/intel_blt: Use object pitch and aligned height on png write Zbigniew Kempczyński
@ 2024-01-31 13:25 ` Zbigniew Kempczyński
2024-01-31 15:01 ` ✓ Fi.CI.BAT: success for Fill block-copy test gap for unaligned sizes (rev2) Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Zbigniew Kempczyński @ 2024-01-31 13:25 UTC (permalink / raw)
To: igt-dev; +Cc: Karolina Drobnik
Testing block-copy for 512 x 512 x 32bpp is not enough to verify
blit is working for different (small) and not always aligned
resolutions. Add 'increment' subtests which checks blits from
small (1x1) to large (512x512) resolutions.
To avoid too long execution resolution increment equals 15x15 pixels.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Karolina Drobnik <karolina.drobnik@intel.com>
---
tests/intel/xe_ccs.c | 144 +++++++++++++++++++++++++++++++++----------
1 file changed, 112 insertions(+), 32 deletions(-)
diff --git a/tests/intel/xe_ccs.c b/tests/intel/xe_ccs.c
index a7785edcb1..627976049c 100644
--- a/tests/intel/xe_ccs.c
+++ b/tests/intel/xe_ccs.c
@@ -28,9 +28,15 @@
* SUBTEST: block-copy-compressed
* Description: Check block-copy flatccs compressed blit
*
+ * SUBTEST: block-copy-compressed-inc-dimension
+ * Description: Check block-copy compressed blit for different sizes
+ *
* SUBTEST: block-copy-uncompressed
* Description: Check block-copy uncompressed blit
*
+ * SUBTEST: block-copy-uncompressed-inc-dimension
+ * Description: Check block-copy uncompressed blit for different sizes
+ *
* SUBTEST: block-multicopy-compressed
* Description: Check block-multicopy flatccs compressed blit
*
@@ -73,6 +79,8 @@ struct test_config {
bool surfcopy;
bool new_ctx;
bool suspend_resume;
+ int width_increment;
+ int width_steps;
};
#define PRINT_SURFACE_INFO(name, obj) do { \
@@ -286,9 +294,17 @@ static int blt_block_copy3(int xe,
return ret;
}
+#define CHECK_MIN_WIDTH 2
+#define CHECK_MIN_HEIGHT 2
+#define MIN_EXP_WH(w, h) ((w) >= CHECK_MIN_WIDTH && (h) >= CHECK_MIN_HEIGHT)
+#define CHECK_FROM_WIDTH 256
+#define CHECK_FROM_HEIGHT 256
+#define FROM_EXP_WH(w, h) ((w) >= CHECK_FROM_WIDTH && (h) >= CHECK_FROM_HEIGHT)
+
static void block_copy(int xe,
intel_ctx_t *ctx,
uint32_t region1, uint32_t region2,
+ uint32_t width, uint32_t height,
enum blt_tiling_type mid_tiling,
const struct test_config *config)
{
@@ -301,7 +317,7 @@ static void block_copy(int xe,
uint32_t run_id = mid_tiling;
uint32_t mid_region = (AT_LEAST_GEN(intel_get_drm_devid(xe), 20) &
!xe_has_vram(xe)) ? region1 : region2;
- uint32_t width = param.width, height = param.height, bb;
+ uint32_t bb;
enum blt_compression mid_compression = config->compression;
int mid_compression_format = param.compression_format;
enum blt_compression_type comp_type = COMPRESSION_TYPE_3D;
@@ -339,9 +355,16 @@ static void block_copy(int xe,
blt_block_copy(xe, ctx, NULL, ahnd, &blt, pext);
intel_ctx_xe_sync(ctx, true);
- /* We expect mid != src if there's compression */
- if (mid->compression)
- igt_assert(memcmp(src->ptr, mid->ptr, src->size) != 0);
+ /*
+ * We expect mid != src if there's compression. Ignore this for small
+ * width x height for linear as compression for gradient occurs in the
+ * middle for bigger sizes. We also ignore 1x1 as this looks same for
+ * xmajor.
+ */
+ if (mid->compression && MIN_EXP_WH(width, height)) {
+ if (mid_tiling != T_LINEAR || FROM_EXP_WH(width, height))
+ igt_assert(memcmp(src->ptr, mid->ptr, src->size) != 0);
+ }
WRITE_PNG(xe, run_id, "mid", &blt.dst, width, height, bpp);
@@ -416,6 +439,7 @@ static void block_copy(int xe,
static void block_multicopy(int xe,
intel_ctx_t *ctx,
uint32_t region1, uint32_t region2,
+ uint32_t width, uint32_t height,
enum blt_tiling_type mid_tiling,
const struct test_config *config)
{
@@ -429,7 +453,7 @@ static void block_multicopy(int xe,
uint32_t run_id = mid_tiling;
uint32_t mid_region = (AT_LEAST_GEN(intel_get_drm_devid(xe), 20) &
!xe_has_vram(xe)) ? region1 : region2;
- uint32_t width = param.width, height = param.height, bb;
+ uint32_t bb;
enum blt_compression mid_compression = config->compression;
int mid_compression_format = param.compression_format;
enum blt_compression_type comp_type = COMPRESSION_TYPE_3D;
@@ -521,6 +545,7 @@ static const struct {
void (*copyfn)(int fd,
intel_ctx_t *ctx,
uint32_t region1, uint32_t region2,
+ uint32_t width, uint32_t height,
enum blt_tiling_type btype,
const struct test_config *config);
} copyfns[] = {
@@ -528,17 +553,44 @@ static const struct {
[BLOCK_MULTICOPY] = { "-multicopy", block_multicopy },
};
-static void block_copy_test(int xe,
- const struct test_config *config,
- struct igt_collection *set,
- enum copy_func copy_function)
+static void single_copy(int xe, const struct test_config *config,
+ int32_t region1, uint32_t region2,
+ uint32_t width, uint32_t height,
+ int tiling, enum copy_func copy_function)
{
struct drm_xe_engine_class_instance inst = {
.engine_class = DRM_XE_ENGINE_CLASS_COPY,
};
+ uint32_t vm, exec_queue;
+ uint32_t sync_bind, sync_out;
intel_ctx_t *ctx;
+
+ vm = xe_vm_create(xe, 0, 0);
+ exec_queue = xe_exec_queue_create(xe, vm, &inst, 0);
+ sync_bind = syncobj_create(xe, 0);
+ sync_out = syncobj_create(xe, 0);
+ ctx = intel_ctx_xe(xe, vm, exec_queue,
+ 0, sync_bind, sync_out);
+
+ copyfns[copy_function].copyfn(xe, ctx,
+ region1, region2,
+ width, height,
+ tiling, config);
+
+ xe_exec_queue_destroy(xe, exec_queue);
+ xe_vm_destroy(xe, vm);
+ syncobj_destroy(xe, sync_bind);
+ syncobj_destroy(xe, sync_out);
+ free(ctx);
+}
+
+static void block_copy_test(int xe,
+ const struct test_config *config,
+ struct igt_collection *set,
+ enum copy_func copy_function)
+{
+
struct igt_collection *regions;
- uint32_t vm, exec_queue;
int tiling;
if (config->compression && !blt_block_copy_supports_compression(xe))
@@ -555,6 +607,7 @@ static void block_copy_test(int xe,
for_each_variation_r(regions, 2, set) {
uint32_t region1, region2;
char *regtxt;
+ char testname[256];
region1 = igt_collection_get_value(regions, 0);
region2 = igt_collection_get_value(regions, 1);
@@ -566,30 +619,36 @@ static void block_copy_test(int xe,
regtxt = xe_memregion_dynamic_subtest_name(xe, regions);
- igt_dynamic_f("%s-%s-compfmt%d-%s%s",
- blt_tiling_name(tiling),
- config->compression ?
- "compressed" : "uncompressed",
- param.compression_format, regtxt,
- copyfns[copy_function].suffix) {
- uint32_t sync_bind, sync_out;
+ snprintf(testname, sizeof(testname),
+ "%s-%s-compfmt%d-%s%s",
+ blt_tiling_name(tiling),
+ config->compression ?
+ "compressed" : "uncompressed",
+ param.compression_format, regtxt,
+ copyfns[copy_function].suffix);
- vm = xe_vm_create(xe, 0, 0);
- exec_queue = xe_exec_queue_create(xe, vm, &inst, 0);
- sync_bind = syncobj_create(xe, 0);
- sync_out = syncobj_create(xe, 0);
- ctx = intel_ctx_xe(xe, vm, exec_queue,
- 0, sync_bind, sync_out);
+ if (!config->width_increment) {
+ igt_dynamic(testname)
+ single_copy(xe, config, region1, region2,
+ param.width, param.height,
+ tiling, copy_function);
+ } else {
+ for (int w = param.width;
+ w < param.width + config->width_steps;
+ w += config->width_increment) {
+ snprintf(testname, sizeof(testname),
+ "%s-%s-compfmt%d-%s%s-%dx%d",
+ blt_tiling_name(tiling),
+ config->compression ?
+ "compressed" : "uncompressed",
+ param.compression_format, regtxt,
+ copyfns[copy_function].suffix,
+ w, w);
+ igt_dynamic(testname)
+ single_copy(xe, config, region1, region2,
+ w, w, tiling, copy_function);
+ }
- copyfns[copy_function].copyfn(xe, ctx,
- region1, region2,
- tiling, config);
-
- xe_exec_queue_destroy(xe, exec_queue);
- xe_vm_destroy(xe, vm);
- syncobj_destroy(xe, sync_bind);
- syncobj_destroy(xe, sync_out);
- free(ctx);
}
free(regtxt);
@@ -669,6 +728,16 @@ igt_main_args("bf:pst:W:H:", NULL, help_str, opt_handler, NULL)
block_copy_test(xe, &config, set, BLOCK_COPY);
}
+ igt_describe("Check block-copy uncompressed blit with increment width/height");
+ igt_subtest_with_dynamic("block-copy-uncompressed-inc-dimension") {
+ struct test_config config = { .width_increment = 15,
+ .width_steps = 512 };
+ param.width = 1;
+ param.height = 1;
+
+ block_copy_test(xe, &config, set, BLOCK_COPY);
+ }
+
igt_describe("Check block-copy flatccs compressed blit");
igt_subtest_with_dynamic("block-copy-compressed") {
struct test_config config = { .compression = true };
@@ -676,6 +745,17 @@ igt_main_args("bf:pst:W:H:", NULL, help_str, opt_handler, NULL)
block_copy_test(xe, &config, set, BLOCK_COPY);
}
+ igt_describe("Check block-copy compressed blit with increment width/height");
+ igt_subtest_with_dynamic("block-copy-compressed-inc-dimension") {
+ struct test_config config = { .compression = true,
+ .width_increment = 15,
+ .width_steps = 512 };
+ param.width = 1;
+ param.height = 1;
+
+ block_copy_test(xe, &config, set, BLOCK_COPY);
+ }
+
igt_describe("Check block-multicopy flatccs compressed blit");
igt_subtest_with_dynamic("block-multicopy-compressed") {
struct test_config config = { .compression = true };
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✓ Fi.CI.BAT: success for Fill block-copy test gap for unaligned sizes (rev2)
2024-01-31 13:25 [PATCH i-g-t v2 0/4] Fill block-copy test gap for unaligned sizes Zbigniew Kempczyński
` (3 preceding siblings ...)
2024-01-31 13:25 ` [PATCH i-g-t v2 4/4] tests/xe-ccs: Add tests which exercise small to large blit sizes Zbigniew Kempczyński
@ 2024-01-31 15:01 ` Patchwork
2024-01-31 15:24 ` ✗ CI.xeBAT: failure " Patchwork
2024-01-31 17:10 ` ✗ Fi.CI.IGT: " Patchwork
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-01-31 15:01 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6881 bytes --]
== Series Details ==
Series: Fill block-copy test gap for unaligned sizes (rev2)
URL : https://patchwork.freedesktop.org/series/129362/
State : success
== Summary ==
CI Bug Log - changes from IGT_7699 -> IGTPW_10612
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/index.html
Participating hosts (38 -> 38)
------------------------------
Additional (2): bat-arls-1 bat-arls-2
Missing (2): bat-mtlp-8 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10612:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@core_hotunplug@unbind-rebind:
- {bat-arls-1}: NOTRUN -> [SKIP][1] +144 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/bat-arls-1/igt@core_hotunplug@unbind-rebind.html
* igt@gem_exec_create@basic@smem:
- {bat-arls-2}: NOTRUN -> [DMESG-WARN][2] +9 other tests dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/bat-arls-2/igt@gem_exec_create@basic@smem.html
* igt@i915_selftest@live@gt_mocs:
- {bat-arls-2}: NOTRUN -> [ABORT][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/bat-arls-2/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@objects:
- {bat-arls-1}: NOTRUN -> [DMESG-FAIL][4] +38 other tests dmesg-fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/bat-arls-1/igt@i915_selftest@live@objects.html
* igt@prime_vgem@basic-fence-read:
- {bat-arls-2}: NOTRUN -> [SKIP][5] +32 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/bat-arls-2/igt@prime_vgem@basic-fence-read.html
Known issues
------------
Here are the changes found in IGTPW_10612 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-jsl-1: NOTRUN -> [SKIP][6] ([i915#9318])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/bat-jsl-1/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- bat-jsl-1: NOTRUN -> [SKIP][7] ([i915#2190])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/bat-jsl-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@verify-random:
- bat-jsl-1: NOTRUN -> [SKIP][8] ([i915#4613]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html
* igt@i915_hangman@error-state-basic:
- bat-mtlp-6: [PASS][9] -> [ABORT][10] ([i915#9414])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/bat-mtlp-6/igt@i915_hangman@error-state-basic.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/bat-mtlp-6/igt@i915_hangman@error-state-basic.html
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [PASS][11] -> [DMESG-WARN][12] ([i915#9730]) +36 other tests dmesg-warn
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@kms_addfb_basic@invalid-set-prop:
- fi-kbl-7567u: [PASS][13] -> [DMESG-WARN][14] ([i915#8585]) +41 other tests dmesg-warn
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/fi-kbl-7567u/igt@kms_addfb_basic@invalid-set-prop.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/fi-kbl-7567u/igt@kms_addfb_basic@invalid-set-prop.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-jsl-1: NOTRUN -> [SKIP][15] ([i915#4103]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-jsl-1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9886])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/bat-jsl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-jsl-1: NOTRUN -> [SKIP][17] ([fdo#109285])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- bat-dg2-11: NOTRUN -> [SKIP][18] ([i915#9197])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [PASS][19] -> [DMESG-WARN][20] ([i915#180] / [i915#8585]) +45 other tests dmesg-warn
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-jsl-1: NOTRUN -> [SKIP][21] ([i915#3555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#8585]: https://gitlab.freedesktop.org/drm/intel/issues/8585
[i915#9197]: https://gitlab.freedesktop.org/drm/intel/issues/9197
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
[i915#9730]: https://gitlab.freedesktop.org/drm/intel/issues/9730
[i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7699 -> IGTPW_10612
CI-20190529: 20190529
CI_DRM_14193: c655e0fd28045dbaa581d04bf7cc266eec1c3457 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10612: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/index.html
IGT_7699: 7699
Testlist changes
----------------
+igt@xe_ccs@block-copy-compressed-inc-dimension
+igt@xe_ccs@block-copy-uncompressed-inc-dimension
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/index.html
[-- Attachment #2: Type: text/html, Size: 8007 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ CI.xeBAT: failure for Fill block-copy test gap for unaligned sizes (rev2)
2024-01-31 13:25 [PATCH i-g-t v2 0/4] Fill block-copy test gap for unaligned sizes Zbigniew Kempczyński
` (4 preceding siblings ...)
2024-01-31 15:01 ` ✓ Fi.CI.BAT: success for Fill block-copy test gap for unaligned sizes (rev2) Patchwork
@ 2024-01-31 15:24 ` Patchwork
2024-01-31 17:10 ` ✗ Fi.CI.IGT: " Patchwork
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-01-31 15:24 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5303 bytes --]
== Series Details ==
Series: Fill block-copy test gap for unaligned sizes (rev2)
URL : https://patchwork.freedesktop.org/series/129362/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7699_BAT -> XEIGTPW_10612_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_10612_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_10612_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_10612_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@basic-flip-vs-dpms:
- bat-adlp-7: [PASS][1] -> [SKIP][2] +9 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7699/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10612/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html
#### Warnings ####
* igt@kms_dsc@dsc-basic:
- bat-adlp-7: [SKIP][3] ([Intel XE#455]) -> [SKIP][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7699/bat-adlp-7/igt@kms_dsc@dsc-basic.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10612/bat-adlp-7/igt@kms_dsc@dsc-basic.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_psr@psr-cursor-plane-move}:
- bat-adlp-7: [PASS][5] -> [SKIP][6] +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7699/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10612/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html
Known issues
------------
Here are the changes found in XEIGTPW_10612_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@invalid-set-prop:
- bat-adlp-7: [PASS][7] -> [SKIP][8] ([i915#6077]) +30 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7699/bat-adlp-7/igt@kms_addfb_basic@invalid-set-prop.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10612/bat-adlp-7/igt@kms_addfb_basic@invalid-set-prop.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-adlp-7: [PASS][9] -> [SKIP][10] ([Intel XE#540]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7699/bat-adlp-7/igt@kms_force_connector_basic@force-connector-state.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10612/bat-adlp-7/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-adlp-7: [PASS][11] -> [SKIP][12] ([Intel XE#829]) +6 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7699/bat-adlp-7/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10612/bat-adlp-7/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_prop_blob@basic:
- bat-adlp-7: [PASS][13] -> [SKIP][14] ([Intel XE#780])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7699/bat-adlp-7/igt@kms_prop_blob@basic.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10612/bat-adlp-7/igt@kms_prop_blob@basic.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [DMESG-FAIL][15] ([Intel XE#1033]) -> [SKIP][16] ([Intel XE#783])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7699/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10612/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077
Build changes
-------------
* IGT: IGT_7699 -> IGTPW_10612
* Linux: xe-699-c655e0fd28045dbaa581d04bf7cc266eec1c3457 -> xe-709-5838c317a0ee7374a555d6a030748e6f0f6638f8
IGTPW_10612: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/index.html
IGT_7699: 7699
xe-699-c655e0fd28045dbaa581d04bf7cc266eec1c3457: c655e0fd28045dbaa581d04bf7cc266eec1c3457
xe-709-5838c317a0ee7374a555d6a030748e6f0f6638f8: 5838c317a0ee7374a555d6a030748e6f0f6638f8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10612/index.html
[-- Attachment #2: Type: text/html, Size: 6085 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.IGT: failure for Fill block-copy test gap for unaligned sizes (rev2)
2024-01-31 13:25 [PATCH i-g-t v2 0/4] Fill block-copy test gap for unaligned sizes Zbigniew Kempczyński
` (5 preceding siblings ...)
2024-01-31 15:24 ` ✗ CI.xeBAT: failure " Patchwork
@ 2024-01-31 17:10 ` Patchwork
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-01-31 17:10 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100271 bytes --]
== Series Details ==
Series: Fill block-copy test gap for unaligned sizes (rev2)
URL : https://patchwork.freedesktop.org/series/129362/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7699_full -> IGTPW_10612_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10612_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10612_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_10612/index.html
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10612_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-mtlp: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-mtlp-8/igt@i915_suspend@basic-s2idle-without-i915.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-6/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_cursor_legacy@torture-move@pipe-b:
- shard-glk: [PASS][3] -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-glk7/igt@kms_cursor_legacy@torture-move@pipe-b.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-glk9/igt@kms_cursor_legacy@torture-move@pipe-b.html
Known issues
------------
Here are the changes found in IGTPW_10612_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@drm_fdinfo@busy-idle-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414]) +7 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-7/igt@drm_fdinfo@busy-idle-check-all@ccs0.html
* igt@drm_fdinfo@busy@rcs0:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +22 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-2/igt@drm_fdinfo@busy@rcs0.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: [PASS][8] -> [FAIL][9] ([i915#7742]) +1 other test fail
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html
* igt@fbdev@pan:
- shard-snb: [PASS][10] -> [FAIL][11] ([i915#4435])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb5/igt@fbdev@pan.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-snb7/igt@fbdev@pan.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#3281]) +4 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-3/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_ccs@suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-7/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-16/igt@gem_close_race@multigpu-basic-threads.html
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-4/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-dg2: [PASS][16] -> [TIMEOUT][17] ([i915#10088])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg2-3/igt@gem_ctx_exec@basic-nohangcheck.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-3/igt@gem_ctx_exec@basic-nohangcheck.html
- shard-tglu: [PASS][18] -> [FAIL][19] ([i915#6268])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-rkl: NOTRUN -> [SKIP][20] ([fdo#109314])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@legacy-engines-persistence:
- shard-snb: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#1099])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-snb4/igt@gem_ctx_persistence@legacy-engines-persistence.html
* igt@gem_ctx_sseu@invalid-args:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-10/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#280]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-7/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][24] ([i915#10030] / [i915#7975] / [i915#8213])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@gem_eio@hibernate.html
- shard-rkl: NOTRUN -> [ABORT][25] ([i915#7975] / [i915#8213])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@gem_eio@hibernate.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#6344])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-dg2: NOTRUN -> [FAIL][27] ([i915#9606])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-10/igt@gem_exec_capture@many-4k-incremental.html
- shard-tglu: NOTRUN -> [FAIL][28] ([i915#9606])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-5/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: NOTRUN -> [FAIL][29] ([i915#2846])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-glk6/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-rkl: [PASS][30] -> [FAIL][31] ([i915#2842])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-2/igt@gem_exec_fair@basic-none-rrul@rcs0.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-7/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-vip:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-10/igt@gem_exec_fair@basic-none-vip.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-glk: NOTRUN -> [FAIL][33] ([i915#2842]) +1 other test fail
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-glk8/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-pace:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4473] / [i915#4771]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-6/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: NOTRUN -> [FAIL][35] ([i915#2842]) +1 other test fail
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [PASS][36] -> [FAIL][37] ([i915#2842])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-10/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-rkl: NOTRUN -> [SKIP][39] ([fdo#109313])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-rkl: NOTRUN -> [SKIP][40] ([fdo#109283])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-master:
- shard-rkl: NOTRUN -> [SKIP][41] ([fdo#112283]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_params@secure-non-root:
- shard-tglu: NOTRUN -> [SKIP][42] ([fdo#112283])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-4/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +12 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-wc:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +11 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-5/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_reloc@basic-wc-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#3281])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-active.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: NOTRUN -> [ABORT][46] ([i915#7975] / [i915#8213])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-tglu: [PASS][47] -> [ABORT][48] ([i915#7975] / [i915#8213])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-8/igt@gem_exec_suspend@basic-s4-devices@smem.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4860]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-10/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4860])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613] / [i915#7582])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-glk: NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#4613])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-glk3/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#4613]) +5 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#4613]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@random:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-7/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][56] -> [TIMEOUT][57] ([i915#5493])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html
- shard-dg1: [PASS][58] -> [TIMEOUT][59] ([i915#5493])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#284])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-7/igt@gem_media_vme.html
* igt@gem_mmap@big-bo:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-5/igt@gem_mmap@big-bo.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4077]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-2/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +14 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-2/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4083]) +6 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4083]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-16/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#3282]) +5 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-3/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +8 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-context-1:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4270])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-8/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@create-regular-context-2:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#4270]) +4 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-3/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@display-protected-crc:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-12/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#4270]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-1/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4270]) +4 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][74] ([fdo#109271]) +163 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-glk8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-6/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4079])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4079])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-3/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4885])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#4077]) +5 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-16/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: NOTRUN -> [SKIP][80] ([fdo#110542])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-3/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#3297]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#3323])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-5/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#4880]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3297])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-12/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#3297])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-10/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-mtlp: [PASS][88] -> [FAIL][89] ([i915#10177])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-mtlp-4/igt@gem_workarounds@suspend-resume-fd.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-6/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen3_render_tiledx_blits:
- shard-dg2: NOTRUN -> [SKIP][90] ([fdo#109289]) +5 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@gen3_render_tiledx_blits.html
- shard-rkl: NOTRUN -> [SKIP][91] ([fdo#109289]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-4/igt@gen3_render_tiledx_blits.html
* igt@gen7_exec_parse@batch-without-end:
- shard-tglu: NOTRUN -> [SKIP][92] ([fdo#109289]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-2/igt@gen7_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@allowed-all:
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#2527]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-12/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#2856]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-4/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#2856]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@gen9_exec_parse@bb-start-far.html
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#2527]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-4/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-3/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_module_load@load:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#6227])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-7/igt@i915_module_load@load.html
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#6227])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-5/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][100] -> [INCOMPLETE][101] ([i915#10137] / [i915#9820] / [i915#9849])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][102] -> [ABORT][103] ([i915#10131])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#8399])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#6590])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-4/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rps@basic-api:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#6621])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-10/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@reset:
- shard-snb: NOTRUN -> [INCOMPLETE][107] ([i915#10137] / [i915#7790])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-snb4/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#8925])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-5/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#6188])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-2/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][110] ([i915#9311])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-7/igt@i915_selftest@mock@memory_region.html
- shard-tglu: NOTRUN -> [DMESG-WARN][111] ([i915#9311])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-7/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#3826])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4212])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-10/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#8709]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#9531])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-snb: NOTRUN -> [SKIP][116] ([fdo#109271] / [i915#1769])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#1769] / [i915#3555])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-glk: NOTRUN -> [SKIP][118] ([fdo#109271] / [i915#1769])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#1769] / [i915#3555])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#5286]) +6 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][121] -> [FAIL][122] ([i915#5138])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5286]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][124] ([fdo#111615] / [i915#5286]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][125] ([fdo#111614]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-5/igt@kms_big_fb@linear-16bpp-rotate-90.html
- shard-dg2: NOTRUN -> [SKIP][126] ([fdo#111614]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][127] ([fdo#111614] / [i915#3638]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-3/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [PASS][128] -> [FAIL][129] ([i915#3743])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [FAIL][130] ([i915#3743])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#5190]) +11 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5190]) +6 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][133] ([fdo#111615])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][134] ([fdo#110723]) +7 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][135] ([fdo#111615]) +4 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][136] ([fdo#111615]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#4538]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_joiner@2x-modeset:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#2705])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@kms_big_joiner@2x-modeset.html
* igt@kms_big_joiner@basic:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#2705])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-2/igt@kms_big_joiner@basic.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-ccs:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#5354] / [i915#6095]) +36 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-7/igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-ccs.html
* igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#5354] / [i915#6095]) +26 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-7/igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-b-random-ccs-data-y-tiled-gen12-mc-ccs:
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#5354] / [i915#6095]) +9 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-12/igt@kms_ccs@pipe-b-random-ccs-data-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-c-bad-pixel-format-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#5354] / [i915#6095]) +11 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-5/igt@kms_ccs@pipe-c-bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#5354]) +31 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-1/igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#5354]) +100 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#3742]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-3/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@plane-scaling:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#3742])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-10/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#4087]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html
* igt@kms_chamelium_audio@dp-audio:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#7828]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-8/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#7828]) +10 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-10/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][151] ([fdo#111827])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-2/igt@kms_chamelium_color@ctm-blue-to-red.html
- shard-dg2: NOTRUN -> [SKIP][152] ([fdo#111827]) +3 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-3/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-max:
- shard-tglu: NOTRUN -> [SKIP][153] ([fdo#111827])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-7/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@gamma:
- shard-rkl: NOTRUN -> [SKIP][154] ([fdo#111827]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#7828]) +10 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#7828]) +6 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-3/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#7828]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-18/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_content_protection@atomic:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#7118])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#3299])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#3116])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#3116] / [i915#3299])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3299])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-6/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][163] ([fdo#109279] / [i915#3359])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#8814])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#8814]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#3359]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#3359]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#3555]) +6 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3359])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#4103]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][171] ([fdo#109274] / [i915#5354]) +7 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][172] ([fdo#111825]) +12 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][173] ([fdo#109274] / [fdo#111767] / [i915#5354])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-tglu: NOTRUN -> [SKIP][174] ([fdo#109274])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-3/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@torture-bo@pipe-a:
- shard-snb: [PASS][175] -> [DMESG-WARN][176] ([i915#10166])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb2/igt@kms_cursor_legacy@torture-bo@pipe-a.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-snb7/igt@kms_cursor_legacy@torture-bo@pipe-a.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#9833])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#9723])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][179] ([fdo#110189] / [i915#9227])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
- shard-rkl: NOTRUN -> [SKIP][180] ([fdo#110189] / [i915#9723])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][181] ([fdo#110189] / [i915#9723])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-13/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1:
- shard-snb: NOTRUN -> [SKIP][182] ([fdo#109271] / [fdo#110189])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-snb7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#3555]) +7 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@kms_display_modes@extended-mode-basic.html
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#3555]) +4 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#8588])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-7/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3804])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-10/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#2065] / [i915#4854])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-6/igt@kms_feature_discovery@chamelium.html
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#4854])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-17/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#1839]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#1839]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-3/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-dg1: NOTRUN -> [SKIP][193] ([fdo#111825] / [i915#9934]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-15/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3637]) +2 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-2/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-tglu: NOTRUN -> [SKIP][195] ([fdo#109274] / [fdo#111767] / [i915#3637])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-10/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][196] ([fdo#111767] / [i915#3637])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][197] ([fdo#109274]) +6 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][198] ([fdo#109274] / [i915#3637]) +6 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-8/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#8381]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/igt@kms_flip@flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#8381])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-7/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#2587] / [i915#2672]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#2672]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#2672]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#2672]) +7 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/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-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8810])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#2672] / [i915#3555])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#2672] / [i915#3555])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#8708]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#8708]) +18 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-snb: [PASS][210] -> [SKIP][211] ([fdo#109271]) +5 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][212] ([fdo#109280] / [fdo#111767])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][213] ([fdo#111767] / [i915#5354]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][214] ([fdo#111825]) +3 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#10055])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#3458]) +21 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#8708]) +6 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][218] ([fdo#109280]) +31 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][219] ([fdo#111825] / [i915#1825]) +38 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][220] ([fdo#111767] / [i915#1825])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#3458]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#9766])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#9766])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#10070])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-17/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][225] ([i915#10070])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#3023]) +24 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][227] ([fdo#110189]) +11 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
- shard-rkl: NOTRUN -> [SKIP][228] ([fdo#111767] / [fdo#111825] / [i915#1825]) +4 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#1825]) +10 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8228])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-3/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8228])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-5/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8228]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-3/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#9457]) +3 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-5/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg1: NOTRUN -> [SKIP][234] ([fdo#109289]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-12/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][235] ([fdo#109289]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-5/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][236] ([i915#4573]) +1 other test fail
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-glk2/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8821])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-2/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: [PASS][238] -> [FAIL][239] ([i915#8292])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#9423]) +3 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#9423]) +15 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#9423]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#9423]) +7 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#5176]) +5 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#5176] / [i915#9423]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#5235]) +11 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#5235] / [i915#9423]) +15 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#5235]) +7 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#5235]) +19 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-3.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#5978])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-10/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: [PASS][251] -> [FAIL][252] ([i915#9295])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#3361])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#9340])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][255] -> [SKIP][256] ([i915#9519]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-pc8-residency-stress:
- shard-mtlp: NOTRUN -> [SKIP][257] ([fdo#109293])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-8/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#6524])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-5/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@d3hot:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#6524] / [i915#6805])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-5/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#9683])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-3/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#4348])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#9683]) +4 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][263] ([fdo#109642] / [fdo#111068] / [i915#9683]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][264] ([fdo#111068] / [i915#9683])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-16/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#9685])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#4235]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#4235])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-3/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#5289])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][269] ([fdo#111615] / [i915#5289])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#4235] / [i915#5190])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset:
- shard-rkl: [PASS][271] -> [DMESG-WARN][272] ([i915#10143])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
- shard-glk: [PASS][273] -> [DMESG-WARN][274] ([i915#10143] / [i915#10165])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-glk7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab:
- shard-dg2: [PASS][275] -> [DMESG-WARN][276] ([i915#10143])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg2-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888:
- shard-tglu: [PASS][277] -> [DMESG-WARN][278] ([i915#10143]) +1 other test dmesg-warn
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-6/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_mono:
- shard-snb: [PASS][279] -> [DMESG-WARN][280] ([i915#10143])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_mono.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-snb2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_mono.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#8623])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][282] ([i915#9196])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-2.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][283] ([i915#9196])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][284] ([i915#9196])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3.html
* igt@kms_vrr@flip-basic:
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#3555])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-13/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#9906])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/igt@kms_vrr@flip-basic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#9906])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-1/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#2437])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-5/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][289] ([fdo#109271] / [i915#2437]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-glk4/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@global-sseu-config:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#7387])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-3/igt@perf@global-sseu-config.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: NOTRUN -> [FAIL][291] ([i915#4349]) +2 other tests fail
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-5/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][292] ([i915#5793])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-10/igt@perf_pmu@module-unload.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#3708] / [i915#4077])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-7/igt@prime_vgem@basic-fence-mmap.html
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#3708] / [i915#4077])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-1/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#3708])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#3291] / [i915#3708])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-3/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][297] ([fdo#109295] / [fdo#111656] / [i915#3708])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-7/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-write-hang:
- shard-tglu: NOTRUN -> [SKIP][298] ([fdo#109295])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-7/igt@prime_vgem@fence-write-hang.html
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#3708])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#9917])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#9917])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#9917])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-dg2: NOTRUN -> [FAIL][303] ([i915#9781])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][304] ([i915#9779])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-5/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@v3d/v3d_get_param@get-bad-flags:
- shard-mtlp: NOTRUN -> [SKIP][305] ([i915#2575]) +6 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-2/igt@v3d/v3d_get_param@get-bad-flags.html
* igt@v3d/v3d_job_submission@array-job-submission:
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#2575]) +3 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-19/igt@v3d/v3d_job_submission@array-job-submission.html
* igt@v3d/v3d_submit_cl@multisync-out-syncs:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#2575]) +14 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-10/igt@v3d/v3d_submit_cl@multisync-out-syncs.html
* igt@v3d/v3d_submit_cl@simple-flush-cache:
- shard-rkl: NOTRUN -> [SKIP][308] ([fdo#109315]) +13 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@v3d/v3d_submit_cl@simple-flush-cache.html
* igt@v3d/v3d_submit_csd@multi-and-single-sync:
- shard-snb: NOTRUN -> [SKIP][309] ([fdo#109271]) +40 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-snb1/igt@v3d/v3d_submit_csd@multi-and-single-sync.html
- shard-tglu: NOTRUN -> [SKIP][310] ([fdo#109315] / [i915#2575]) +10 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-4/igt@v3d/v3d_submit_csd@multi-and-single-sync.html
* igt@vc4/vc4_perfmon@get-values-invalid-perfmon:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#7711]) +14 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-2/igt@vc4/vc4_perfmon@get-values-invalid-perfmon.html
* igt@vc4/vc4_tiling@set-bad-flags:
- shard-tglu: NOTRUN -> [SKIP][312] ([i915#2575]) +6 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-3/igt@vc4/vc4_tiling@set-bad-flags.html
* igt@vc4/vc4_tiling@set-bad-modifier:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#7711]) +8 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-7/igt@vc4/vc4_tiling@set-bad-modifier.html
* igt@vc4/vc4_wait_bo@used-bo-0ns:
- shard-mtlp: NOTRUN -> [SKIP][314] ([i915#7711]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-8/igt@vc4/vc4_wait_bo@used-bo-0ns.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg1: NOTRUN -> [SKIP][315] ([i915#7711]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-13/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@drm_fdinfo@context-close-stress:
- shard-rkl: [ABORT][316] ([i915#10154]) -> [PASS][317]
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-1/igt@drm_fdinfo@context-close-stress.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-3/igt@drm_fdinfo@context-close-stress.html
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: [FAIL][318] ([i915#7742]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-1/igt@drm_fdinfo@idle@rcs0.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html
* igt@gem_eio@kms:
- shard-dg2: [FAIL][320] ([i915#5784]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg2-7/igt@gem_eio@kms.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-2/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][322] ([i915#5784]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-17/igt@gem_eio@unwedge-stress.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [FAIL][324] ([i915#2842]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-1/igt@gem_exec_fair@basic-none@vcs0.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-3/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-tglu: [FAIL][326] ([i915#2842]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: [FAIL][328] ([i915#2842]) -> [PASS][329] +1 other test pass
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-glk3/igt@gem_exec_fair@basic-throttle@rcs0.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_gttfill@engines@vcs0:
- shard-glk: [INCOMPLETE][330] ([i915#10137]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-glk5/igt@gem_exec_gttfill@engines@vcs0.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-glk5/igt@gem_exec_gttfill@engines@vcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [INCOMPLETE][332] ([i915#10137] / [i915#9200] / [i915#9849]) -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: [INCOMPLETE][334] ([i915#10137] / [i915#9820] / [i915#9849]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [INCOMPLETE][336] ([i915#10137] / [i915#9200]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [FAIL][338] ([i915#3591]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [FAIL][340] ([i915#10031]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html
- shard-snb: [INCOMPLETE][342] ([i915#10044]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb5/igt@i915_suspend@basic-s3-without-i915.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-snb4/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@basic:
- shard-dg1: [DMESG-WARN][344] ([i915#4423]) -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-16/igt@kms_addfb_basic@basic.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-16/igt@kms_addfb_basic@basic.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [FAIL][346] ([i915#3743]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][348] ([i915#2346]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][350] ([i915#79]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-snb: [SKIP][352] ([fdo#109271]) -> [PASS][353] +9 other tests pass
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-dg1: [DMESG-WARN][354] ([i915#1982] / [i915#4423]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][356] ([i915#4281]) -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-2/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [SKIP][358] ([i915#9519]) -> [PASS][359] +1 other test pass
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-10/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][360] ([i915#9519]) -> [PASS][361] +1 other test pass
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* {igt@kms_psr@psr2-cursor-plane-move@edp-1}:
- shard-mtlp: [FAIL][362] -> [PASS][363]
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-mtlp-1/igt@kms_psr@psr2-cursor-plane-move@edp-1.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-7/igt@kms_psr@psr2-cursor-plane-move@edp-1.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-rkl: [ABORT][364] ([i915#8875]) -> [PASS][365]
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-3/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset:
- shard-tglu: [DMESG-WARN][366] ([i915#10143]) -> [PASS][367]
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-6/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab:
- shard-glk: [DMESG-WARN][368] ([i915#10143] / [i915#10165]) -> [PASS][369] +1 other test pass
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-glk7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888:
- shard-dg2: [DMESG-WARN][370] ([i915#10143]) -> [PASS][371]
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg2-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xbgr8888:
- shard-snb: [DMESG-WARN][372] ([i915#10143]) -> [PASS][373]
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xbgr8888.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-snb2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xbgr8888.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xrgb2101010:
- shard-rkl: [DMESG-WARN][374] ([i915#10143]) -> [PASS][375]
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xrgb2101010.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_xrgb2101010.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [FAIL][376] ([i915#9196]) -> [PASS][377]
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1:
- shard-tglu: [ABORT][378] -> [PASS][379] +1 other test pass
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-9/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html
* igt@perf_pmu@busy-idle-check-all@bcs0:
- shard-mtlp: [FAIL][380] ([i915#4349]) -> [PASS][381] +4 other tests pass
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-mtlp-8/igt@perf_pmu@busy-idle-check-all@bcs0.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-mtlp-5/igt@perf_pmu@busy-idle-check-all@bcs0.html
* igt@perf_pmu@busy-idle-check-all@ccs2:
- shard-dg2: [FAIL][382] -> [PASS][383]
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg2-10/igt@perf_pmu@busy-idle-check-all@ccs2.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@perf_pmu@busy-idle-check-all@ccs2.html
* igt@perf_pmu@busy-idle-check-all@vcs0:
- shard-dg2: [FAIL][384] ([i915#4349]) -> [PASS][385] +7 other tests pass
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg2-10/igt@perf_pmu@busy-idle-check-all@vcs0.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg2-6/igt@perf_pmu@busy-idle-check-all@vcs0.html
- shard-dg1: [FAIL][386] ([i915#4349]) -> [PASS][387] +4 other tests pass
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-19/igt@perf_pmu@busy-idle-check-all@vcs0.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vcs0.html
#### Warnings ####
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: [SKIP][388] ([i915#4565]) -> [SKIP][389] ([i915#4423] / [i915#4565])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-19/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-15/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_pread@exhaustion:
- shard-glk: [INCOMPLETE][390] ([i915#10042] / [i915#10137]) -> [WARN][391] ([i915#2658])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-glk4/igt@gem_pread@exhaustion.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-glk3/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: [WARN][392] ([i915#2658]) -> [INCOMPLETE][393] ([i915#10042] / [i915#10137])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-10/igt@gem_pwrite@basic-exhaustion.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-7/igt@gem_pwrite@basic-exhaustion.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-dg1: [SKIP][394] ([i915#7828]) -> [SKIP][395] ([i915#4423] / [i915#7828])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-14/igt@kms_chamelium_edid@hdmi-mode-timings.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-15/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_content_protection@atomic-dpms:
- shard-snb: [INCOMPLETE][396] ([i915#8816]) -> [SKIP][397] ([fdo#109271])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb7/igt@kms_content_protection@atomic-dpms.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-snb4/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][398] ([i915#9424]) -> [SKIP][399] ([i915#9433])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-dg1-18/igt@kms_content_protection@mei-interface.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-dg1-16/igt@kms_content_protection@mei-interface.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][400] ([i915#3955]) -> [SKIP][401] ([fdo#110189] / [i915#3955])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][402] ([fdo#110189] / [i915#3955]) -> [SKIP][403] ([i915#3955])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render:
- shard-snb: [SKIP][404] ([fdo#109271]) -> [SKIP][405] ([fdo#109271] / [fdo#111767])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-snb4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-snb: [SKIP][406] ([fdo#109271] / [fdo#111767]) -> [SKIP][407] ([fdo#109271]) +2 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-snb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [SKIP][408] ([i915#3361]) -> [FAIL][409] ([i915#9295])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-7/igt@kms_pm_dc@dc6-dpms.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list:
- shard-rkl: [FAIL][410] ([i915#10136]) -> [DMESG-FAIL][411] ([i915#10143])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-rkl-4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-rkl-6/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
- shard-tglu: [DMESG-FAIL][412] ([i915#10143]) -> [FAIL][413] ([i915#10136])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-tglu-6/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-tglu-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
- shard-glk: [FAIL][414] ([i915#10136]) -> [DMESG-FAIL][415] ([i915#10143] / [i915#10165])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7699/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/shard-glk7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030
[i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031
[i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042
[i915#10044]: https://gitlab.freedesktop.org/drm/intel/issues/10044
[i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055
[i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070
[i915#10088]: https://gitlab.freedesktop.org/drm/intel/issues/10088
[i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131
[i915#10136]: https://gitlab.freedesktop.org/drm/intel/issues/10136
[i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137
[i915#10143]: https://gitlab.freedesktop.org/drm/intel/issues/10143
[i915#10154]: https://gitlab.freedesktop.org/drm/intel/issues/10154
[i915#10165]: https://gitlab.freedesktop.org/drm/intel/issues/10165
[i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166
[i915#10177]: https://gitlab.freedesktop.org/drm/intel/issues/10177
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2065]: https://gitlab.freedesktop.org/drm/intel/issues/2065
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://g
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10612/index.html
[-- Attachment #2: Type: text/html, Size: 118394 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-01-31 17:10 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-31 13:25 [PATCH i-g-t v2 0/4] Fill block-copy test gap for unaligned sizes Zbigniew Kempczyński
2024-01-31 13:25 ` [PATCH i-g-t v2 1/4] lib/intel_blt: Add helpers for calculating stride and aligned height Zbigniew Kempczyński
2024-01-31 13:25 ` [PATCH i-g-t v2 2/4] lib/intel_blt: Change surface size calculation Zbigniew Kempczyński
2024-01-31 13:25 ` [PATCH i-g-t v2 3/4] lib/intel_blt: Use object pitch and aligned height on png write Zbigniew Kempczyński
2024-01-31 13:25 ` [PATCH i-g-t v2 4/4] tests/xe-ccs: Add tests which exercise small to large blit sizes Zbigniew Kempczyński
2024-01-31 15:01 ` ✓ Fi.CI.BAT: success for Fill block-copy test gap for unaligned sizes (rev2) Patchwork
2024-01-31 15:24 ` ✗ CI.xeBAT: failure " Patchwork
2024-01-31 17:10 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox