* [PATCH i-g-t v2 0/4] intel: igt_draw and intel_bufops improvements
@ 2024-11-22 8:48 Ville Syrjala
2024-11-22 8:48 ` [PATCH i-g-t v2 1/4] lib/intel_bufops: Add support for gen2 and i915 tiling layouts Ville Syrjala
` (7 more replies)
0 siblings, 8 replies; 12+ messages in thread
From: Ville Syrjala @ 2024-11-22 8:48 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Remainder of the earlier bigger igt_draw/bufops stuff:
- hook in all gen2/gen3 tile layouts
- pread/pwrite fallback in intel_bufops for !WC systems
- new gem_draw test to validate igt_draw mmap cpu/wc and pwrite
support w/o display limitations getting in the way
Ville Syrjälä (4):
lib/intel_bufops: Add support for gen2 and i915 tiling layouts
lib/intel_bufops: Provide pread/pwrite based fallback when we don't
have WC
tests/kms_draw_crc: Test 64bpp
tests/intel/gem_draw: Test igt_draw without kms
lib/intel_bufops.c | 151 +++++++++++++++++-------
tests/intel/gem_draw.c | 233 +++++++++++++++++++++++++++++++++++++
tests/intel/kms_draw_crc.c | 19 ++-
tests/meson.build | 1 +
4 files changed, 363 insertions(+), 41 deletions(-)
create mode 100644 tests/intel/gem_draw.c
--
2.45.2
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH i-g-t v2 1/4] lib/intel_bufops: Add support for gen2 and i915 tiling layouts 2024-11-22 8:48 [PATCH i-g-t v2 0/4] intel: igt_draw and intel_bufops improvements Ville Syrjala @ 2024-11-22 8:48 ` Ville Syrjala 2024-11-25 7:09 ` Zbigniew Kempczyński 2024-11-22 8:48 ` [PATCH i-g-t v2 2/4] lib/intel_bufops: Provide pread/pwrite based fallback when we don't have WC Ville Syrjala ` (6 subsequent siblings) 7 siblings, 1 reply; 12+ messages in thread From: Ville Syrjala @ 2024-11-22 8:48 UTC (permalink / raw) To: igt-dev From: Ville Syrjälä <ville.syrjala@linux.intel.com> Add support for tiling formats on gen2/3. Our tile formats are as follows: X-tile: gen2: 128B x 16, made of 8B QWords gen3: 512B x 8, made of 32B SWords gen4+: 512B x 8, made of 16B OWords Y-tile: gen2: 128B x 16, made of 8B QWords i915: 512B x 8, made of 32B SWords i945+: 128B x 32, made of 16B OWords We already had the i945+ Y-tile and i915+ X-tile (since the i945 OW vs. i915 SW makes no difference for X-tile). So just need to deal with gen2 X/Y-tile and i915 Y-tile. Note that the gen2 check that was there was incorrect becasue it completely forgot about i915 Y-tile. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- lib/intel_bufops.c | 83 +++++++++++++++++++++++++++++++--------------- 1 file changed, 56 insertions(+), 27 deletions(-) diff --git a/lib/intel_bufops.c b/lib/intel_bufops.c index 600a485362b5..619222019fd8 100644 --- a/lib/intel_bufops.c +++ b/lib/intel_bufops.c @@ -307,10 +307,9 @@ static void *linear_ptr(void *ptr, static void *x_ptr(void *ptr, unsigned int x, unsigned int y, - unsigned int stride, unsigned int cpp) + unsigned int stride, unsigned int cpp, + const int tile_width, const int tile_height) { - const int tile_width = 512; - const int tile_height = 8; const int tile_size = tile_width * tile_height; int offset_x, offset_y, pos; int tile_x, tile_y; @@ -327,13 +326,27 @@ static void *x_ptr(void *ptr, return ptr + pos; } +static void *gen2_x_ptr(void *ptr, + unsigned int x, unsigned int y, + unsigned int stride, unsigned int cpp) +{ + return x_ptr(ptr, x, y, stride, cpp, 128, 16); +} + +static void *gen3_x_ptr(void *ptr, + unsigned int x, unsigned int y, + unsigned int stride, unsigned int cpp) +{ + return x_ptr(ptr, x, y, stride, cpp, 512, 8); +} + static void *y_ptr(void *ptr, unsigned int x, unsigned int y, - unsigned int stride, unsigned int cpp) + unsigned int stride, unsigned int cpp, + const int tile_width, + const int tile_height, + const int owords) { - const int tile_width = 128; - const int tile_height = 32; - const int owords = 16; const int tile_size = tile_width * tile_height; int offset_x, offset_y, pos; int shift_x, shift_y; @@ -352,6 +365,27 @@ static void *y_ptr(void *ptr, return ptr + pos; } +static void *gen2_y_ptr(void *ptr, + unsigned int x, unsigned int y, + unsigned int stride, unsigned int cpp) +{ + return y_ptr(ptr, x, y, stride, cpp, 128, 16, 8); +} + +static void *i915_y_ptr(void *ptr, + unsigned int x, unsigned int y, + unsigned int stride, unsigned int cpp) +{ + return y_ptr(ptr, x, y, stride, cpp, 512, 8, 32); +} + +static void *i945_y_ptr(void *ptr, + unsigned int x, unsigned int y, + unsigned int stride, unsigned int cpp) +{ + return y_ptr(ptr, x, y, stride, cpp, 128, 32, 16); +} + /* * (x,y) to memory location in tiled-4 surface * @@ -426,8 +460,10 @@ static void *yf_ptr(void *ptr, typedef void *(*tile_fn)(void *, unsigned int, unsigned int, unsigned int, unsigned int); -static tile_fn __get_tile_fn_ptr(int tiling) +static tile_fn __get_tile_fn_ptr(int fd, int tiling) { + const struct intel_device_info *info = + intel_get_device_info(intel_get_drm_devid(fd)); tile_fn fn = NULL; switch (tiling) { @@ -435,10 +471,18 @@ static tile_fn __get_tile_fn_ptr(int tiling) fn = linear_ptr; break; case I915_TILING_X: - fn = x_ptr; + if (info->graphics_ver == 2) + fn = gen2_x_ptr; + else + fn = gen3_x_ptr; break; case I915_TILING_Y: - fn = y_ptr; + if (info->graphics_ver == 2) + fn = gen2_y_ptr; + else if (info->is_grantsdale || info->is_alviso) + fn = i915_y_ptr; + else + fn = i945_y_ptr; break; case I915_TILING_Yf: fn = yf_ptr; @@ -595,7 +639,7 @@ static void __copy_linear_to(int fd, struct intel_buf *buf, const uint32_t *linear, int tiling, uint32_t swizzle) { - const tile_fn fn = __get_tile_fn_ptr(tiling); + const tile_fn fn = __get_tile_fn_ptr(fd, tiling); int height = intel_buf_height(buf); int width = intel_buf_width(buf); void *map = mmap_write(fd, buf); @@ -659,7 +703,7 @@ static void copy_linear_to_tile4(struct buf_ops *bops, struct intel_buf *buf, static void __copy_to_linear(int fd, struct intel_buf *buf, uint32_t *linear, int tiling, uint32_t swizzle) { - const tile_fn fn = __get_tile_fn_ptr(tiling); + const tile_fn fn = __get_tile_fn_ptr(fd, tiling); int height = intel_buf_height(buf); int width = intel_buf_width(buf); void *map = mmap_write(fd, buf); @@ -1699,21 +1743,6 @@ static struct buf_ops *__buf_ops_create(int fd, bool check_idempotency) return bops; } - /* - * Warning! - * - * Gen2 software tiling/detiling is not supported! (yet). - * - * If you are brave hero with an access to Gen2 you can save the world. - * Until then we're doomed to use only hardware (de)tiling. - * - * Ok, you have been warned. - */ - if (bops->intel_gen == 2) { - igt_warn("Gen2 detected. HW (de)tiling support only."); - return bops; - } - /* Let's probe X and Y hw tiling support */ if (is_hw_tiling_supported(bops, I915_TILING_X)) { bool swizzling_supported; -- 2.45.2 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t v2 1/4] lib/intel_bufops: Add support for gen2 and i915 tiling layouts 2024-11-22 8:48 ` [PATCH i-g-t v2 1/4] lib/intel_bufops: Add support for gen2 and i915 tiling layouts Ville Syrjala @ 2024-11-25 7:09 ` Zbigniew Kempczyński 0 siblings, 0 replies; 12+ messages in thread From: Zbigniew Kempczyński @ 2024-11-25 7:09 UTC (permalink / raw) To: Ville Syrjala; +Cc: igt-dev On Fri, Nov 22, 2024 at 10:48:01AM +0200, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Add support for tiling formats on gen2/3. > > Our tile formats are as follows: > X-tile: > gen2: 128B x 16, made of 8B QWords > gen3: 512B x 8, made of 32B SWords > gen4+: 512B x 8, made of 16B OWords > Y-tile: > gen2: 128B x 16, made of 8B QWords > i915: 512B x 8, made of 32B SWords > i945+: 128B x 32, made of 16B OWords > > We already had the i945+ Y-tile and i915+ X-tile > (since the i945 OW vs. i915 SW makes no difference > for X-tile). So just need to deal with gen2 X/Y-tile > and i915 Y-tile. > > Note that the gen2 check that was there was incorrect > becasue it completely forgot about i915 Y-tile. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > lib/intel_bufops.c | 83 +++++++++++++++++++++++++++++++--------------- > 1 file changed, 56 insertions(+), 27 deletions(-) > > diff --git a/lib/intel_bufops.c b/lib/intel_bufops.c > index 600a485362b5..619222019fd8 100644 > --- a/lib/intel_bufops.c > +++ b/lib/intel_bufops.c > @@ -307,10 +307,9 @@ static void *linear_ptr(void *ptr, > > static void *x_ptr(void *ptr, > unsigned int x, unsigned int y, > - unsigned int stride, unsigned int cpp) > + unsigned int stride, unsigned int cpp, > + const int tile_width, const int tile_height) > { > - const int tile_width = 512; > - const int tile_height = 8; > const int tile_size = tile_width * tile_height; > int offset_x, offset_y, pos; > int tile_x, tile_y; > @@ -327,13 +326,27 @@ static void *x_ptr(void *ptr, > return ptr + pos; > } > > +static void *gen2_x_ptr(void *ptr, > + unsigned int x, unsigned int y, > + unsigned int stride, unsigned int cpp) > +{ > + return x_ptr(ptr, x, y, stride, cpp, 128, 16); > +} > + > +static void *gen3_x_ptr(void *ptr, > + unsigned int x, unsigned int y, > + unsigned int stride, unsigned int cpp) > +{ > + return x_ptr(ptr, x, y, stride, cpp, 512, 8); > +} > + > static void *y_ptr(void *ptr, > unsigned int x, unsigned int y, > - unsigned int stride, unsigned int cpp) > + unsigned int stride, unsigned int cpp, > + const int tile_width, > + const int tile_height, > + const int owords) > { > - const int tile_width = 128; > - const int tile_height = 32; > - const int owords = 16; > const int tile_size = tile_width * tile_height; > int offset_x, offset_y, pos; > int shift_x, shift_y; > @@ -352,6 +365,27 @@ static void *y_ptr(void *ptr, > return ptr + pos; > } > > +static void *gen2_y_ptr(void *ptr, > + unsigned int x, unsigned int y, > + unsigned int stride, unsigned int cpp) > +{ > + return y_ptr(ptr, x, y, stride, cpp, 128, 16, 8); > +} > + > +static void *i915_y_ptr(void *ptr, > + unsigned int x, unsigned int y, > + unsigned int stride, unsigned int cpp) > +{ > + return y_ptr(ptr, x, y, stride, cpp, 512, 8, 32); > +} > + > +static void *i945_y_ptr(void *ptr, > + unsigned int x, unsigned int y, > + unsigned int stride, unsigned int cpp) > +{ > + return y_ptr(ptr, x, y, stride, cpp, 128, 32, 16); > +} > + > /* > * (x,y) to memory location in tiled-4 surface > * > @@ -426,8 +460,10 @@ static void *yf_ptr(void *ptr, > > typedef void *(*tile_fn)(void *, unsigned int, unsigned int, > unsigned int, unsigned int); > -static tile_fn __get_tile_fn_ptr(int tiling) > +static tile_fn __get_tile_fn_ptr(int fd, int tiling) > { > + const struct intel_device_info *info = > + intel_get_device_info(intel_get_drm_devid(fd)); > tile_fn fn = NULL; > > switch (tiling) { > @@ -435,10 +471,18 @@ static tile_fn __get_tile_fn_ptr(int tiling) > fn = linear_ptr; > break; > case I915_TILING_X: > - fn = x_ptr; > + if (info->graphics_ver == 2) > + fn = gen2_x_ptr; > + else > + fn = gen3_x_ptr; > break; > case I915_TILING_Y: > - fn = y_ptr; > + if (info->graphics_ver == 2) > + fn = gen2_y_ptr; > + else if (info->is_grantsdale || info->is_alviso) > + fn = i915_y_ptr; > + else > + fn = i945_y_ptr; > break; > case I915_TILING_Yf: > fn = yf_ptr; > @@ -595,7 +639,7 @@ static void __copy_linear_to(int fd, struct intel_buf *buf, > const uint32_t *linear, > int tiling, uint32_t swizzle) > { > - const tile_fn fn = __get_tile_fn_ptr(tiling); > + const tile_fn fn = __get_tile_fn_ptr(fd, tiling); > int height = intel_buf_height(buf); > int width = intel_buf_width(buf); > void *map = mmap_write(fd, buf); > @@ -659,7 +703,7 @@ static void copy_linear_to_tile4(struct buf_ops *bops, struct intel_buf *buf, > static void __copy_to_linear(int fd, struct intel_buf *buf, > uint32_t *linear, int tiling, uint32_t swizzle) > { > - const tile_fn fn = __get_tile_fn_ptr(tiling); > + const tile_fn fn = __get_tile_fn_ptr(fd, tiling); > int height = intel_buf_height(buf); > int width = intel_buf_width(buf); > void *map = mmap_write(fd, buf); > @@ -1699,21 +1743,6 @@ static struct buf_ops *__buf_ops_create(int fd, bool check_idempotency) > return bops; > } > > - /* > - * Warning! > - * > - * Gen2 software tiling/detiling is not supported! (yet). > - * > - * If you are brave hero with an access to Gen2 you can save the world. > - * Until then we're doomed to use only hardware (de)tiling. You're the brave one we were waiting for :) I'm not able to test this as I have no access to such old platforms but imo code looks good, so: Acked-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> Thanks! -- Zbigniew > - * > - * Ok, you have been warned. > - */ > - if (bops->intel_gen == 2) { > - igt_warn("Gen2 detected. HW (de)tiling support only."); > - return bops; > - } > - > /* Let's probe X and Y hw tiling support */ > if (is_hw_tiling_supported(bops, I915_TILING_X)) { > bool swizzling_supported; > -- > 2.45.2 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t v2 2/4] lib/intel_bufops: Provide pread/pwrite based fallback when we don't have WC 2024-11-22 8:48 [PATCH i-g-t v2 0/4] intel: igt_draw and intel_bufops improvements Ville Syrjala 2024-11-22 8:48 ` [PATCH i-g-t v2 1/4] lib/intel_bufops: Add support for gen2 and i915 tiling layouts Ville Syrjala @ 2024-11-22 8:48 ` Ville Syrjala 2024-12-18 15:08 ` Juha-Pekka Heikkilä 2024-11-22 8:48 ` [PATCH i-g-t v2 3/4] tests/kms_draw_crc: Test 64bpp Ville Syrjala ` (5 subsequent siblings) 7 siblings, 1 reply; 12+ messages in thread From: Ville Syrjala @ 2024-11-22 8:48 UTC (permalink / raw) To: igt-dev; +Cc: Kamil Konieczny From: Ville Syrjälä <ville.syrjala@linux.intel.com> The linear<->tiled conversion code currently assume that we may be able to use either cpu or wc mmaps. That is not true on all systems. As a last resort provide a pread/pwrite based fallback. v2: Add missing *malloced=true (Kamil) Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- lib/intel_bufops.c | 68 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 56 insertions(+), 12 deletions(-) diff --git a/lib/intel_bufops.c b/lib/intel_bufops.c index 619222019fd8..15f23d0e1375 100644 --- a/lib/intel_bufops.c +++ b/lib/intel_bufops.c @@ -549,10 +549,12 @@ static void __copy_ccs(struct buf_ops *bops, struct intel_buf *buf, munmap(map, size); } -static void *mmap_write(int fd, struct intel_buf *buf) +static void *mmap_write(int fd, const struct intel_buf *buf, bool *malloced) { void *map = NULL; + *malloced = false; + if (buf->bops->driver == INTEL_DRIVER_XE) return xe_bo_map(fd, buf->handle, buf->surface[0].size); @@ -580,7 +582,7 @@ static void *mmap_write(int fd, struct intel_buf *buf) I915_GEM_DOMAIN_CPU); } - if (!map) { + if (!map && gem_mmap__has_wc(fd)) { map = __gem_mmap_offset__wc(fd, buf->handle, 0, buf->surface[0].size, PROT_READ | PROT_WRITE); if (!map) @@ -591,13 +593,31 @@ static void *mmap_write(int fd, struct intel_buf *buf) I915_GEM_DOMAIN_WC, I915_GEM_DOMAIN_WC); } + if (!map) { + map = malloc(buf->surface[0].size); + igt_assert(map); + *malloced = true; + } + return map; } -static void *mmap_read(int fd, struct intel_buf *buf) +static void munmap_write(void *map, int fd, const struct intel_buf *buf, bool malloced) +{ + if (malloced) { + igt_assert(__gem_write(fd, buf->handle, 0, map, buf->surface[0].size) == 0); + free(map); + } else { + munmap(map, buf->surface[0].size); + } +} + +static void *mmap_read(int fd, struct intel_buf *buf, bool *malloced) { void *map = NULL; + *malloced = false; + if (buf->bops->driver == INTEL_DRIVER_XE) return xe_bo_map(fd, buf->handle, buf->surface[0].size); @@ -622,7 +642,7 @@ static void *mmap_read(int fd, struct intel_buf *buf) gem_set_domain(fd, buf->handle, I915_GEM_DOMAIN_CPU, 0); } - if (!map) { + if (!map && gem_mmap__has_wc(fd)) { map = __gem_mmap_offset__wc(fd, buf->handle, 0, buf->surface[0].size, PROT_READ); if (!map) @@ -632,9 +652,25 @@ static void *mmap_read(int fd, struct intel_buf *buf) gem_set_domain(fd, buf->handle, I915_GEM_DOMAIN_WC, 0); } + if (!map) { + map = malloc(buf->surface[0].size); + igt_assert(map); + *malloced = true; + + igt_assert(__gem_read(fd, buf->handle, 0, map, buf->surface[0].size) == 0); + } + return map; } +static void munmap_read(void *map, int fd, const struct intel_buf *buf, bool malloced) +{ + if (malloced) + free(map); + else + munmap(map, buf->surface[0].size); +} + static void __copy_linear_to(int fd, struct intel_buf *buf, const uint32_t *linear, int tiling, uint32_t swizzle) @@ -642,7 +678,10 @@ static void __copy_linear_to(int fd, struct intel_buf *buf, const tile_fn fn = __get_tile_fn_ptr(fd, tiling); int height = intel_buf_height(buf); int width = intel_buf_width(buf); - void *map = mmap_write(fd, buf); + bool malloced; + void *map; + + map = mmap_write(fd, buf, &malloced); for (int y = 0; y < height; y++) { for (int x = 0; x < width; x++) { @@ -655,7 +694,7 @@ static void __copy_linear_to(int fd, struct intel_buf *buf, } } - munmap(map, buf->surface[0].size); + munmap_write(map, fd, buf, malloced); } static void copy_linear_to_none(struct buf_ops *bops, struct intel_buf *buf, @@ -706,7 +745,10 @@ static void __copy_to_linear(int fd, struct intel_buf *buf, const tile_fn fn = __get_tile_fn_ptr(fd, tiling); int height = intel_buf_height(buf); int width = intel_buf_width(buf); - void *map = mmap_write(fd, buf); + bool malloced; + void *map; + + map = mmap_write(fd, buf, &malloced); for (int y = 0; y < height; y++) { for (int x = 0; x < width; x++) { @@ -719,7 +761,7 @@ static void __copy_to_linear(int fd, struct intel_buf *buf, } } - munmap(map, buf->surface[0].size); + munmap_write(map, fd, buf, malloced); } static void copy_none_to_linear(struct buf_ops *bops, struct intel_buf *buf, @@ -803,25 +845,27 @@ static void copy_gtt_to_linear(struct buf_ops *bops, struct intel_buf *buf, static void copy_linear_to_wc(struct buf_ops *bops, struct intel_buf *buf, uint32_t *linear) { + bool malloced; void *map; DEBUGFN(); - map = mmap_write(bops->fd, buf); + map = mmap_write(bops->fd, buf, &malloced); memcpy(map, linear, buf->surface[0].size); - munmap(map, buf->surface[0].size); + munmap_write(map, bops->fd, buf, malloced); } static void copy_wc_to_linear(struct buf_ops *bops, struct intel_buf *buf, uint32_t *linear) { + bool malloced; void *map; DEBUGFN(); - map = mmap_read(bops->fd, buf); + map = mmap_read(bops->fd, buf, &malloced); igt_memcpy_from_wc(linear, map, buf->surface[0].size); - munmap(map, buf->surface[0].size); + munmap_read(map, bops->fd, buf, malloced); } void intel_buf_to_linear(struct buf_ops *bops, struct intel_buf *buf, -- 2.45.2 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t v2 2/4] lib/intel_bufops: Provide pread/pwrite based fallback when we don't have WC 2024-11-22 8:48 ` [PATCH i-g-t v2 2/4] lib/intel_bufops: Provide pread/pwrite based fallback when we don't have WC Ville Syrjala @ 2024-12-18 15:08 ` Juha-Pekka Heikkilä 0 siblings, 0 replies; 12+ messages in thread From: Juha-Pekka Heikkilä @ 2024-12-18 15:08 UTC (permalink / raw) To: Ville Syrjala; +Cc: igt-dev, Kamil Konieczny Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> On Fri, Nov 22, 2024 at 10:48 AM Ville Syrjala <ville.syrjala@linux.intel.com> wrote: > > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > The linear<->tiled conversion code currently assume that we may > be able to use either cpu or wc mmaps. That is not true on all > systems. As a last resort provide a pread/pwrite based fallback. > > v2: Add missing *malloced=true (Kamil) > > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > lib/intel_bufops.c | 68 ++++++++++++++++++++++++++++++++++++++-------- > 1 file changed, 56 insertions(+), 12 deletions(-) > > diff --git a/lib/intel_bufops.c b/lib/intel_bufops.c > index 619222019fd8..15f23d0e1375 100644 > --- a/lib/intel_bufops.c > +++ b/lib/intel_bufops.c > @@ -549,10 +549,12 @@ static void __copy_ccs(struct buf_ops *bops, struct intel_buf *buf, > munmap(map, size); > } > > -static void *mmap_write(int fd, struct intel_buf *buf) > +static void *mmap_write(int fd, const struct intel_buf *buf, bool *malloced) > { > void *map = NULL; > > + *malloced = false; > + > if (buf->bops->driver == INTEL_DRIVER_XE) > return xe_bo_map(fd, buf->handle, buf->surface[0].size); > > @@ -580,7 +582,7 @@ static void *mmap_write(int fd, struct intel_buf *buf) > I915_GEM_DOMAIN_CPU); > } > > - if (!map) { > + if (!map && gem_mmap__has_wc(fd)) { > map = __gem_mmap_offset__wc(fd, buf->handle, 0, buf->surface[0].size, > PROT_READ | PROT_WRITE); > if (!map) > @@ -591,13 +593,31 @@ static void *mmap_write(int fd, struct intel_buf *buf) > I915_GEM_DOMAIN_WC, I915_GEM_DOMAIN_WC); > } > > + if (!map) { > + map = malloc(buf->surface[0].size); > + igt_assert(map); > + *malloced = true; > + } > + > return map; > } > > -static void *mmap_read(int fd, struct intel_buf *buf) > +static void munmap_write(void *map, int fd, const struct intel_buf *buf, bool malloced) > +{ > + if (malloced) { > + igt_assert(__gem_write(fd, buf->handle, 0, map, buf->surface[0].size) == 0); > + free(map); > + } else { > + munmap(map, buf->surface[0].size); > + } > +} > + > +static void *mmap_read(int fd, struct intel_buf *buf, bool *malloced) > { > void *map = NULL; > > + *malloced = false; > + > if (buf->bops->driver == INTEL_DRIVER_XE) > return xe_bo_map(fd, buf->handle, buf->surface[0].size); > > @@ -622,7 +642,7 @@ static void *mmap_read(int fd, struct intel_buf *buf) > gem_set_domain(fd, buf->handle, I915_GEM_DOMAIN_CPU, 0); > } > > - if (!map) { > + if (!map && gem_mmap__has_wc(fd)) { > map = __gem_mmap_offset__wc(fd, buf->handle, 0, buf->surface[0].size, > PROT_READ); > if (!map) > @@ -632,9 +652,25 @@ static void *mmap_read(int fd, struct intel_buf *buf) > gem_set_domain(fd, buf->handle, I915_GEM_DOMAIN_WC, 0); > } > > + if (!map) { > + map = malloc(buf->surface[0].size); > + igt_assert(map); > + *malloced = true; > + > + igt_assert(__gem_read(fd, buf->handle, 0, map, buf->surface[0].size) == 0); > + } > + > return map; > } > > +static void munmap_read(void *map, int fd, const struct intel_buf *buf, bool malloced) > +{ > + if (malloced) > + free(map); > + else > + munmap(map, buf->surface[0].size); > +} > + > static void __copy_linear_to(int fd, struct intel_buf *buf, > const uint32_t *linear, > int tiling, uint32_t swizzle) > @@ -642,7 +678,10 @@ static void __copy_linear_to(int fd, struct intel_buf *buf, > const tile_fn fn = __get_tile_fn_ptr(fd, tiling); > int height = intel_buf_height(buf); > int width = intel_buf_width(buf); > - void *map = mmap_write(fd, buf); > + bool malloced; > + void *map; > + > + map = mmap_write(fd, buf, &malloced); > > for (int y = 0; y < height; y++) { > for (int x = 0; x < width; x++) { > @@ -655,7 +694,7 @@ static void __copy_linear_to(int fd, struct intel_buf *buf, > } > } > > - munmap(map, buf->surface[0].size); > + munmap_write(map, fd, buf, malloced); > } > > static void copy_linear_to_none(struct buf_ops *bops, struct intel_buf *buf, > @@ -706,7 +745,10 @@ static void __copy_to_linear(int fd, struct intel_buf *buf, > const tile_fn fn = __get_tile_fn_ptr(fd, tiling); > int height = intel_buf_height(buf); > int width = intel_buf_width(buf); > - void *map = mmap_write(fd, buf); > + bool malloced; > + void *map; > + > + map = mmap_write(fd, buf, &malloced); > > for (int y = 0; y < height; y++) { > for (int x = 0; x < width; x++) { > @@ -719,7 +761,7 @@ static void __copy_to_linear(int fd, struct intel_buf *buf, > } > } > > - munmap(map, buf->surface[0].size); > + munmap_write(map, fd, buf, malloced); > } > > static void copy_none_to_linear(struct buf_ops *bops, struct intel_buf *buf, > @@ -803,25 +845,27 @@ static void copy_gtt_to_linear(struct buf_ops *bops, struct intel_buf *buf, > static void copy_linear_to_wc(struct buf_ops *bops, struct intel_buf *buf, > uint32_t *linear) > { > + bool malloced; > void *map; > > DEBUGFN(); > > - map = mmap_write(bops->fd, buf); > + map = mmap_write(bops->fd, buf, &malloced); > memcpy(map, linear, buf->surface[0].size); > - munmap(map, buf->surface[0].size); > + munmap_write(map, bops->fd, buf, malloced); > } > > static void copy_wc_to_linear(struct buf_ops *bops, struct intel_buf *buf, > uint32_t *linear) > { > + bool malloced; > void *map; > > DEBUGFN(); > > - map = mmap_read(bops->fd, buf); > + map = mmap_read(bops->fd, buf, &malloced); > igt_memcpy_from_wc(linear, map, buf->surface[0].size); > - munmap(map, buf->surface[0].size); > + munmap_read(map, bops->fd, buf, malloced); > } > > void intel_buf_to_linear(struct buf_ops *bops, struct intel_buf *buf, > -- > 2.45.2 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t v2 3/4] tests/kms_draw_crc: Test 64bpp 2024-11-22 8:48 [PATCH i-g-t v2 0/4] intel: igt_draw and intel_bufops improvements Ville Syrjala 2024-11-22 8:48 ` [PATCH i-g-t v2 1/4] lib/intel_bufops: Add support for gen2 and i915 tiling layouts Ville Syrjala 2024-11-22 8:48 ` [PATCH i-g-t v2 2/4] lib/intel_bufops: Provide pread/pwrite based fallback when we don't have WC Ville Syrjala @ 2024-11-22 8:48 ` Ville Syrjala 2024-11-22 8:48 ` [PATCH i-g-t v2 4/4] tests/intel/gem_draw: Test igt_draw without kms Ville Syrjala ` (4 subsequent siblings) 7 siblings, 0 replies; 12+ messages in thread From: Ville Syrjala @ 2024-11-22 8:48 UTC (permalink / raw) To: igt-dev; +Cc: Juha-Pekka Heikkila From: Ville Syrjälä <ville.syrjala@linux.intel.com> Test 64bpp formats to make sure igt_draw is working correctly. Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- tests/intel/kms_draw_crc.c | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/tests/intel/kms_draw_crc.c b/tests/intel/kms_draw_crc.c index e3d1c0ba9bd8..078a6f46d31a 100644 --- a/tests/intel/kms_draw_crc.c +++ b/tests/intel/kms_draw_crc.c @@ -34,6 +34,7 @@ #include "i915/gem.h" #include "igt.h" +#include "igt_halffloat.h" /** * SUBTEST: fill-fb @@ -76,6 +77,7 @@ static const uint32_t formats[] = { DRM_FORMAT_XRGB8888, DRM_FORMAT_RGB565, DRM_FORMAT_XRGB2101010, + DRM_FORMAT_XBGR16161616F, }; static const uint64_t modifiers[] = { @@ -109,9 +111,11 @@ static void find_modeset_params(void) } } -static uint32_t get_color(uint32_t drm_format, bool r, bool g, bool b) +static uint64_t get_color(uint32_t drm_format, bool r, bool g, bool b) { - uint32_t color = 0; + uint64_t color = 0; + uint16_t h[3]; + float f[3]; switch (drm_format) { case DRM_FORMAT_RGB565: @@ -129,6 +133,15 @@ static uint32_t get_color(uint32_t drm_format, bool r, bool g, bool b) color |= g ? 0x3FF << 10 : 0; color |= b ? 0x3FF : 0; break; + case DRM_FORMAT_XBGR16161616F: + f[0] = r ? 1.0f : 0.0f; + f[1] = g ? 1.0f : 0.0f; + f[2] = b ? 1.0f : 0.0f; + igt_float_to_half(f, h, 3); + color |= (uint64_t)h[2] << 32 | + (uint64_t)h[1] << 16 | + (uint64_t)h[0] << 0; + break; default: igt_assert(false); } @@ -290,6 +303,8 @@ static const char *format_str(int format_index) return "xrgb8888"; case DRM_FORMAT_XRGB2101010: return "xrgb2101010"; + case DRM_FORMAT_XBGR16161616F: + return "xbgr16161616f"; default: igt_assert(false); } -- 2.45.2 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH i-g-t v2 4/4] tests/intel/gem_draw: Test igt_draw without kms 2024-11-22 8:48 [PATCH i-g-t v2 0/4] intel: igt_draw and intel_bufops improvements Ville Syrjala ` (2 preceding siblings ...) 2024-11-22 8:48 ` [PATCH i-g-t v2 3/4] tests/kms_draw_crc: Test 64bpp Ville Syrjala @ 2024-11-22 8:48 ` Ville Syrjala 2024-12-18 15:09 ` Juha-Pekka Heikkilä 2024-11-22 10:09 ` ✗ GitLab.Pipeline: warning for intel: igt_draw and intel_bufops improvements (rev4) Patchwork ` (3 subsequent siblings) 7 siblings, 1 reply; 12+ messages in thread From: Ville Syrjala @ 2024-11-22 8:48 UTC (permalink / raw) To: igt-dev From: Ville Syrjälä <ville.syrjala@linux.intel.com> kms_draw_crc is our only way to confirm that igt_draw linear<->tiled conversion routines are correct. That may not cover every case as we could be hitting display specific limitations that prevent testing everything. Introduce a new gem_draw test case that compares igt_draw mmap/pwrite methods against GTT mmaps. This will verify that the software conversion routines match the hardware (de)tiling peformed via the fenced region. TODO: could verify against blt/rendercopy when gtt mmaps are not available... v2: Drop the "driver requirement: i915" to make it past the documentation build scripts Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- tests/intel/gem_draw.c | 233 +++++++++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 234 insertions(+) create mode 100644 tests/intel/gem_draw.c diff --git a/tests/intel/gem_draw.c b/tests/intel/gem_draw.c new file mode 100644 index 000000000000..86df7c33ff2d --- /dev/null +++ b/tests/intel/gem_draw.c @@ -0,0 +1,233 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2024 Intel Corporation + */ + +/** + * TEST: gem draw + * Category: GEM + * Description: Tests whether the igt_draw library actually works. + * Functionality: tiling + * Test category: functionality test + */ + +/** + * SUBTEST: draw-method-%s + * Description: Verify that igt draw library works for the %arg[1] method with + * different tilings and color depths. + * + * arg[1]: + * + * @mmap-cpu: MMAP-CPU + * @mmap-wc: MMAP-WC + * @pwrite: PWRITE + */ + +#include "i915/gem.h" +#include "i915/gem_create.h" +#include "igt.h" +#include "igt_halffloat.h" +#include "igt_primes.h" + +int drm_fd; +struct buf_ops *bops; + +static const enum igt_draw_method draw_methods[] = { + IGT_DRAW_MMAP_CPU, + IGT_DRAW_MMAP_WC, + IGT_DRAW_PWRITE, +}; + +static const uint32_t tilings[] = { + I915_TILING_NONE, + I915_TILING_X, + I915_TILING_Y, +}; + +static uint64_t read_pixel(const void *ptr, int stride, int x, int y, int bpp) +{ + ptr += y * stride + x * bpp / 8; + + switch (bpp) { + case 8: + return *(const uint8_t*)ptr; + case 16: + return *(const uint16_t*)ptr; + case 32: + return *(const uint32_t*)ptr; + case 64: + return *(const uint64_t*)ptr; + default: + return 0; + } +} + +static void check_rect(const void *ptr, int stride, + int x0, int y0, int w, int h, + uint64_t color, int bpp) +{ + int x1 = x0 + w - 1; + int y1 = y0 + h - 1; + + if (bpp < 64) + color &= (1ull << bpp) - 1; + + /* only check the corners to speed this up a bit */ + igt_assert_eq(read_pixel(ptr, stride, x0, y0, bpp), color); + igt_assert_eq(read_pixel(ptr, stride, x0, y1, bpp), color); + igt_assert_eq(read_pixel(ptr, stride, x1, y0, bpp), color); + igt_assert_eq(read_pixel(ptr, stride, x1, y1, bpp), color); +} + +static void draw(enum igt_draw_method method, + int width, int height, + uint32_t stride, int bpp, uint32_t tiling) +{ + uint64_t size = stride * height; + uint64_t color; + uint32_t handle; + void *ptr; + + igt_require(buf_ops_has_tiling_support(bops, tiling)); + + handle = gem_create(drm_fd, size); + gem_set_tiling(drm_fd, handle, tiling, stride); + + color = 0x0123456789abcdef; + for (int y = 0 ; y < height;) { + int y_next = min(height, (int)igt_next_prime_number(y)); + int h = y_next - y; + + for (int x = 0; x < width; ) { + int x_next = min(width, (int)igt_next_prime_number(x)); + int w = x_next - x; + + igt_draw_rect(drm_fd, bops, 0, handle, size, stride, + width, height, tiling, method, + x, y, w, h, color, bpp); + + color = igt_ror(color, 1, 64); + + x = x_next; + } + + y = y_next; + } + + gem_set_domain(drm_fd, handle, I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT); + + ptr = gem_mmap__gtt(drm_fd, handle, size, PROT_READ); + + color = 0x0123456789abcdef; + for (int y = 0 ; y < height;) { + int y_next = min(height, (int)igt_next_prime_number(y)); + int h = y_next - y; + + for (int x = 0; x < width; ) { + int x_next = min(width, (int)igt_next_prime_number(x)); + int w = x_next - x; + + check_rect(ptr, stride, x, y, w, h, color, bpp); + + color = igt_ror(color, 1, 64); + + x = x_next; + } + + y = y_next; + } + + munmap(ptr, size); + + gem_close(drm_fd, handle); +} + +static void draw_method_subtest(enum igt_draw_method method, + int bpp, uint32_t tiling) +{ + const struct intel_device_info *info = + intel_get_device_info(intel_get_drm_devid(drm_fd)); + int width, height, stride; + int tile_w, tile_h; + + if (info->graphics_ver == 2) { + tile_w = 128; + tile_h = 16; + } else if (tiling == I915_TILING_X || + info->is_grantsdale || info->is_alviso) { + tile_w = 512; + tile_h = 8; + } else { + tile_w = 128; + tile_h = 32; + } + + stride = 4 * tile_w; + width = stride * 8 / bpp; + height = 4 * tile_h; + + draw(method, width, height, stride, bpp, tiling); +} + +static void setup_environment(void) +{ + drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); + igt_require(drm_fd >= 0); + bops = buf_ops_create(drm_fd); + + /* need hardware to untile for verification */ + gem_require_mappable_ggtt(drm_fd); +} + +static void teardown_environment(void) +{ + buf_ops_destroy(bops); + drm_close_driver(drm_fd); +} + +static const char *tiling_str(uint32_t tiling) +{ + switch (tiling) { + case I915_TILING_NONE : + return "untiled"; + case I915_TILING_X : + return "xtiled"; + case I915_TILING_Y : + return "ytiled"; + default: + igt_assert(false); + } +} + +igt_main +{ + int method_idx, tiling_idx; + + igt_fixture + setup_environment(); + + for (method_idx = 0; method_idx < ARRAY_SIZE(draw_methods); method_idx++) { + enum igt_draw_method method = draw_methods[method_idx]; + + igt_describe_f("Verify that igt draw library works for the draw " + "method (%s) with different tilings and color depths.", + igt_draw_get_method_name(method)); + + igt_subtest_with_dynamic_f("draw-method-%s", igt_draw_get_method_name(method)) { + if (!igt_draw_supports_method(drm_fd, method)) + continue; + + for (tiling_idx = 0; tiling_idx < ARRAY_SIZE(tilings); tiling_idx++) { + uint32_t tiling = tilings[tiling_idx]; + + for (int bpp = 8; bpp <= 64; bpp *= 2) { + igt_dynamic_f("%dbpp-%s", bpp, tiling_str(tiling)) + draw_method_subtest(method, bpp, tiling); + } + } + } + } + + igt_fixture + teardown_environment(); +} diff --git a/tests/meson.build b/tests/meson.build index 2724c7a9a6e6..9bcace851c33 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -118,6 +118,7 @@ intel_i915_progs = [ 'gem_ctx_shared', 'gem_ctx_sseu', 'gem_ctx_switch', + 'gem_draw', 'gem_eio', 'gem_evict_alignment', 'gem_evict_everything', -- 2.45.2 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t v2 4/4] tests/intel/gem_draw: Test igt_draw without kms 2024-11-22 8:48 ` [PATCH i-g-t v2 4/4] tests/intel/gem_draw: Test igt_draw without kms Ville Syrjala @ 2024-12-18 15:09 ` Juha-Pekka Heikkilä 0 siblings, 0 replies; 12+ messages in thread From: Juha-Pekka Heikkilä @ 2024-12-18 15:09 UTC (permalink / raw) To: Ville Syrjala; +Cc: igt-dev Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> On Fri, Nov 22, 2024 at 10:48 AM Ville Syrjala <ville.syrjala@linux.intel.com> wrote: > > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > kms_draw_crc is our only way to confirm that igt_draw > linear<->tiled conversion routines are correct. That may > not cover every case as we could be hitting display > specific limitations that prevent testing everything. > > Introduce a new gem_draw test case that compares igt_draw > mmap/pwrite methods against GTT mmaps. This will verify that > the software conversion routines match the hardware (de)tiling > peformed via the fenced region. > > TODO: could verify against blt/rendercopy > when gtt mmaps are not available... > > v2: Drop the "driver requirement: i915" to make it past > the documentation build scripts > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > tests/intel/gem_draw.c | 233 +++++++++++++++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 2 files changed, 234 insertions(+) > create mode 100644 tests/intel/gem_draw.c > > diff --git a/tests/intel/gem_draw.c b/tests/intel/gem_draw.c > new file mode 100644 > index 000000000000..86df7c33ff2d > --- /dev/null > +++ b/tests/intel/gem_draw.c > @@ -0,0 +1,233 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright © 2024 Intel Corporation > + */ > + > +/** > + * TEST: gem draw > + * Category: GEM > + * Description: Tests whether the igt_draw library actually works. > + * Functionality: tiling > + * Test category: functionality test > + */ > + > +/** > + * SUBTEST: draw-method-%s > + * Description: Verify that igt draw library works for the %arg[1] method with > + * different tilings and color depths. > + * > + * arg[1]: > + * > + * @mmap-cpu: MMAP-CPU > + * @mmap-wc: MMAP-WC > + * @pwrite: PWRITE > + */ > + > +#include "i915/gem.h" > +#include "i915/gem_create.h" > +#include "igt.h" > +#include "igt_halffloat.h" > +#include "igt_primes.h" > + > +int drm_fd; > +struct buf_ops *bops; > + > +static const enum igt_draw_method draw_methods[] = { > + IGT_DRAW_MMAP_CPU, > + IGT_DRAW_MMAP_WC, > + IGT_DRAW_PWRITE, > +}; > + > +static const uint32_t tilings[] = { > + I915_TILING_NONE, > + I915_TILING_X, > + I915_TILING_Y, > +}; > + > +static uint64_t read_pixel(const void *ptr, int stride, int x, int y, int bpp) > +{ > + ptr += y * stride + x * bpp / 8; > + > + switch (bpp) { > + case 8: > + return *(const uint8_t*)ptr; > + case 16: > + return *(const uint16_t*)ptr; > + case 32: > + return *(const uint32_t*)ptr; > + case 64: > + return *(const uint64_t*)ptr; > + default: > + return 0; > + } > +} > + > +static void check_rect(const void *ptr, int stride, > + int x0, int y0, int w, int h, > + uint64_t color, int bpp) > +{ > + int x1 = x0 + w - 1; > + int y1 = y0 + h - 1; > + > + if (bpp < 64) > + color &= (1ull << bpp) - 1; > + > + /* only check the corners to speed this up a bit */ > + igt_assert_eq(read_pixel(ptr, stride, x0, y0, bpp), color); > + igt_assert_eq(read_pixel(ptr, stride, x0, y1, bpp), color); > + igt_assert_eq(read_pixel(ptr, stride, x1, y0, bpp), color); > + igt_assert_eq(read_pixel(ptr, stride, x1, y1, bpp), color); > +} > + > +static void draw(enum igt_draw_method method, > + int width, int height, > + uint32_t stride, int bpp, uint32_t tiling) > +{ > + uint64_t size = stride * height; > + uint64_t color; > + uint32_t handle; > + void *ptr; > + > + igt_require(buf_ops_has_tiling_support(bops, tiling)); > + > + handle = gem_create(drm_fd, size); > + gem_set_tiling(drm_fd, handle, tiling, stride); > + > + color = 0x0123456789abcdef; > + for (int y = 0 ; y < height;) { > + int y_next = min(height, (int)igt_next_prime_number(y)); > + int h = y_next - y; > + > + for (int x = 0; x < width; ) { > + int x_next = min(width, (int)igt_next_prime_number(x)); > + int w = x_next - x; > + > + igt_draw_rect(drm_fd, bops, 0, handle, size, stride, > + width, height, tiling, method, > + x, y, w, h, color, bpp); > + > + color = igt_ror(color, 1, 64); > + > + x = x_next; > + } > + > + y = y_next; > + } > + > + gem_set_domain(drm_fd, handle, I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT); > + > + ptr = gem_mmap__gtt(drm_fd, handle, size, PROT_READ); > + > + color = 0x0123456789abcdef; > + for (int y = 0 ; y < height;) { > + int y_next = min(height, (int)igt_next_prime_number(y)); > + int h = y_next - y; > + > + for (int x = 0; x < width; ) { > + int x_next = min(width, (int)igt_next_prime_number(x)); > + int w = x_next - x; > + > + check_rect(ptr, stride, x, y, w, h, color, bpp); > + > + color = igt_ror(color, 1, 64); > + > + x = x_next; > + } > + > + y = y_next; > + } > + > + munmap(ptr, size); > + > + gem_close(drm_fd, handle); > +} > + > +static void draw_method_subtest(enum igt_draw_method method, > + int bpp, uint32_t tiling) > +{ > + const struct intel_device_info *info = > + intel_get_device_info(intel_get_drm_devid(drm_fd)); > + int width, height, stride; > + int tile_w, tile_h; > + > + if (info->graphics_ver == 2) { > + tile_w = 128; > + tile_h = 16; > + } else if (tiling == I915_TILING_X || > + info->is_grantsdale || info->is_alviso) { > + tile_w = 512; > + tile_h = 8; > + } else { > + tile_w = 128; > + tile_h = 32; > + } > + > + stride = 4 * tile_w; > + width = stride * 8 / bpp; > + height = 4 * tile_h; > + > + draw(method, width, height, stride, bpp, tiling); > +} > + > +static void setup_environment(void) > +{ > + drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); > + igt_require(drm_fd >= 0); > + bops = buf_ops_create(drm_fd); > + > + /* need hardware to untile for verification */ > + gem_require_mappable_ggtt(drm_fd); > +} > + > +static void teardown_environment(void) > +{ > + buf_ops_destroy(bops); > + drm_close_driver(drm_fd); > +} > + > +static const char *tiling_str(uint32_t tiling) > +{ > + switch (tiling) { > + case I915_TILING_NONE : > + return "untiled"; > + case I915_TILING_X : > + return "xtiled"; > + case I915_TILING_Y : > + return "ytiled"; > + default: > + igt_assert(false); > + } > +} > + > +igt_main > +{ > + int method_idx, tiling_idx; > + > + igt_fixture > + setup_environment(); > + > + for (method_idx = 0; method_idx < ARRAY_SIZE(draw_methods); method_idx++) { > + enum igt_draw_method method = draw_methods[method_idx]; > + > + igt_describe_f("Verify that igt draw library works for the draw " > + "method (%s) with different tilings and color depths.", > + igt_draw_get_method_name(method)); > + > + igt_subtest_with_dynamic_f("draw-method-%s", igt_draw_get_method_name(method)) { > + if (!igt_draw_supports_method(drm_fd, method)) > + continue; > + > + for (tiling_idx = 0; tiling_idx < ARRAY_SIZE(tilings); tiling_idx++) { > + uint32_t tiling = tilings[tiling_idx]; > + > + for (int bpp = 8; bpp <= 64; bpp *= 2) { > + igt_dynamic_f("%dbpp-%s", bpp, tiling_str(tiling)) > + draw_method_subtest(method, bpp, tiling); > + } > + } > + } > + } > + > + igt_fixture > + teardown_environment(); > +} > diff --git a/tests/meson.build b/tests/meson.build > index 2724c7a9a6e6..9bcace851c33 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -118,6 +118,7 @@ intel_i915_progs = [ > 'gem_ctx_shared', > 'gem_ctx_sseu', > 'gem_ctx_switch', > + 'gem_draw', > 'gem_eio', > 'gem_evict_alignment', > 'gem_evict_everything', > -- > 2.45.2 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ GitLab.Pipeline: warning for intel: igt_draw and intel_bufops improvements (rev4) 2024-11-22 8:48 [PATCH i-g-t v2 0/4] intel: igt_draw and intel_bufops improvements Ville Syrjala ` (3 preceding siblings ...) 2024-11-22 8:48 ` [PATCH i-g-t v2 4/4] tests/intel/gem_draw: Test igt_draw without kms Ville Syrjala @ 2024-11-22 10:09 ` Patchwork 2024-11-22 10:25 ` ✓ Xe.CI.BAT: success " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-11-22 10:09 UTC (permalink / raw) To: Ville Syrjala; +Cc: igt-dev == Series Details == Series: intel: igt_draw and intel_bufops improvements (rev4) URL : https://patchwork.freedesktop.org/series/139556/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1315210 for the overview. build:tests-debian-meson-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/67034488): Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out 6461f3f4 as detached HEAD (ref is intel/IGTPW_12173)... Removing build/ Removing installdir/ Skipping Git submodules setup section_end:1732269930:get_sources section_start:1732269930:step_script Executing "step_script" stage of the job script Using docker image sha256:7360075a71dacfc66f0b49b3271b9a459904dbe51c5760efac48fe52da27946c for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-arm64:commit-6461f3f41c804bd83e7a16f646cea2438bfad178 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-arm64@sha256:df8438cd0e218646c3bdc2eb6abccb43c4e884bfd40a1a4dd0365f1f8031d21f ... $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh section_end:1732269933:step_script section_start:1732269933:cleanup_file_variables Cleaning up project directory and file based variables section_end:1732269935:cleanup_file_variables ERROR: Job failed: exit code 137 build:tests-debian-meson-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/67034487): Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out 6461f3f4 as detached HEAD (ref is intel/IGTPW_12173)... Removing build/ Removing installdir/ Skipping Git submodules setup section_end:1732269925:get_sources section_start:1732269925:step_script Executing "step_script" stage of the job script Using docker image sha256:4a4103f1a476d355d866b481ff96ac05a32a3a715cefcc1cbc1356a8959fb5f8 for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-armhf:commit-6461f3f41c804bd83e7a16f646cea2438bfad178 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-armhf@sha256:3a0ffeb305cdc6ef081dde81d86afee76102e74f76c0f7bd5685fc2457ec707b ... $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh Checking if the user of the pipeline is allowed... section_end:1732269932:step_script section_start:1732269932:cleanup_file_variables Cleaning up project directory and file based variables section_end:1732269933:cleanup_file_variables ERROR: Job failed: exit code 137 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1315210 ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.BAT: success for intel: igt_draw and intel_bufops improvements (rev4) 2024-11-22 8:48 [PATCH i-g-t v2 0/4] intel: igt_draw and intel_bufops improvements Ville Syrjala ` (4 preceding siblings ...) 2024-11-22 10:09 ` ✗ GitLab.Pipeline: warning for intel: igt_draw and intel_bufops improvements (rev4) Patchwork @ 2024-11-22 10:25 ` Patchwork 2024-11-22 10:42 ` ✗ i915.CI.BAT: failure " Patchwork 2024-11-23 5:54 ` ✗ Xe.CI.Full: " Patchwork 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-11-22 10:25 UTC (permalink / raw) To: Ville Syrjala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1935 bytes --] == Series Details == Series: intel: igt_draw and intel_bufops improvements (rev4) URL : https://patchwork.freedesktop.org/series/139556/ State : success == Summary == CI Bug Log - changes from XEIGT_8122_BAT -> XEIGTPW_12173_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12173_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-lnl-1: [PASS][1] -> [FAIL][2] ([Intel XE#886]) +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [PASS][3] -> [FAIL][4] ([Intel XE#1861]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 Build changes ------------- * IGT: IGT_8122 -> IGTPW_12173 * Linux: xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199 -> xe-2260-affb5810a89e0710f6131926fa8e1da09c982ee3 IGTPW_12173: 12173 IGT_8122: 8122 xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199: bb17c42521f57b592e9ad49daca1f9f9045d3199 xe-2260-affb5810a89e0710f6131926fa8e1da09c982ee3: affb5810a89e0710f6131926fa8e1da09c982ee3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/index.html [-- Attachment #2: Type: text/html, Size: 2546 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ i915.CI.BAT: failure for intel: igt_draw and intel_bufops improvements (rev4) 2024-11-22 8:48 [PATCH i-g-t v2 0/4] intel: igt_draw and intel_bufops improvements Ville Syrjala ` (5 preceding siblings ...) 2024-11-22 10:25 ` ✓ Xe.CI.BAT: success " Patchwork @ 2024-11-22 10:42 ` Patchwork 2024-11-23 5:54 ` ✗ Xe.CI.Full: " Patchwork 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-11-22 10:42 UTC (permalink / raw) To: Ville Syrjala; +Cc: igt-dev == Series Details == Series: intel: igt_draw and intel_bufops improvements (rev4) URL : https://patchwork.freedesktop.org/series/139556/ State : failure == Summary == CI Bug Log - changes from IGT_8122 -> IGTPW_12173 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12173 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12173, 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_12173/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12173: ### IGT changes ### #### Possible regressions #### * igt@core_hotunplug@unbind-rebind: - bat-dg2-14: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/bat-dg2-14/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12173/bat-dg2-14/igt@core_hotunplug@unbind-rebind.html * igt@i915_selftest@live@gt_pm: - bat-jsl-3: [PASS][3] -> [DMESG-FAIL][4] +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/bat-jsl-3/igt@i915_selftest@live@gt_pm.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12173/bat-jsl-3/igt@i915_selftest@live@gt_pm.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-1: - bat-apl-1: [PASS][5] -> [DMESG-WARN][6] +3 other tests dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12173/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-dp-1.html Known issues ------------ Here are the changes found in IGTPW_12173 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@module-reload: - bat-adls-6: [PASS][7] -> [FAIL][8] ([i915#12903]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/bat-adls-6/igt@i915_pm_rpm@module-reload.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12173/bat-adls-6/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][9] -> [ABORT][10] ([i915#12061]) +1 other test abort [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/bat-arlh-3/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12173/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-arls-5: [PASS][11] -> [ABORT][12] ([i915#12061]) +1 other test abort [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/bat-arls-5/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12173/bat-arls-5/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-apl-1: [PASS][13] -> [DMESG-WARN][14] ([i915#12918]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12173/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@dmabuf@all-tests@dma_fence_chain: - fi-bsw-nick: [INCOMPLETE][15] ([i915#12904]) -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12173/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html * igt@gem_tiled_blits@basic: - fi-pnv-d510: [SKIP][17] -> [PASS][18] +2 other tests pass [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/fi-pnv-d510/igt@gem_tiled_blits@basic.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12173/fi-pnv-d510/igt@gem_tiled_blits@basic.html * igt@i915_selftest@live: - bat-mtlp-8: [ABORT][19] ([i915#12061]) -> [PASS][20] +1 other test pass [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/bat-mtlp-8/igt@i915_selftest@live.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12173/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [ABORT][21] ([i915#12061]) -> [PASS][22] +1 other test pass [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12173/bat-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1: - fi-kbl-7567u: [DMESG-WARN][23] -> [PASS][24] +3 other tests pass [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/fi-kbl-7567u/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12173/fi-kbl-7567u/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#12918]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12918 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8122 -> IGTPW_12173 * Linux: CI_DRM_15727 -> CI_DRM_15728 CI-20190529: 20190529 CI_DRM_15727: bb17c42521f57b592e9ad49daca1f9f9045d3199 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15728: affb5810a89e0710f6131926fa8e1da09c982ee3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12173: 12173 IGT_8122: 8122 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12173/index.html ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Xe.CI.Full: failure for intel: igt_draw and intel_bufops improvements (rev4) 2024-11-22 8:48 [PATCH i-g-t v2 0/4] intel: igt_draw and intel_bufops improvements Ville Syrjala ` (6 preceding siblings ...) 2024-11-22 10:42 ` ✗ i915.CI.BAT: failure " Patchwork @ 2024-11-23 5:54 ` Patchwork 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-11-23 5:54 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 141058 bytes --] == Series Details == Series: intel: igt_draw and intel_bufops improvements (rev4) URL : https://patchwork.freedesktop.org/series/139556/ State : failure == Summary == CI Bug Log - changes from XEIGT_8122_full -> XEIGTPW_12173_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12173_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12173_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12173_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6: - shard-dg2-set2: [PASS][3] -> [DMESG-FAIL][4] +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6.html * igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x: - shard-bmg: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x.html * igt@kms_plane_lowres@tiling-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][6] +1 other test incomplete [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@kms_plane_lowres@tiling-4.html * igt@xe_exec_compute_mode@twice-bindexecqueue-rebind: - shard-bmg: [PASS][7] -> [DMESG-WARN][8] +8 other tests dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html #### Warnings #### * igt@xe_module_load@unload: - shard-bmg: [DMESG-WARN][9] ([Intel XE#3467]) -> [DMESG-WARN][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_module_load@unload.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@xe_module_load@unload.html New tests --------- New tests have been introduced between XEIGT_8122_full and XEIGTPW_12173_full: ### New IGT tests (12) ### * igt@kms_draw_crc@draw-method-blt@xbgr16161616f-4tiled: - Statuses : 1 pass(s) - Exec time: [0.15] s * igt@kms_draw_crc@draw-method-blt@xbgr16161616f-untiled: - Statuses : 1 pass(s) - Exec time: [0.28] s * igt@kms_draw_crc@draw-method-blt@xbgr16161616f-xtiled: - Statuses : 1 pass(s) - Exec time: [0.15] s * igt@kms_draw_crc@draw-method-mmap-wc@xbgr16161616f-4tiled: - Statuses : 2 pass(s) - Exec time: [0.15, 0.20] s * igt@kms_draw_crc@draw-method-mmap-wc@xbgr16161616f-untiled: - Statuses : 2 pass(s) - Exec time: [0.27] s * igt@kms_draw_crc@draw-method-mmap-wc@xbgr16161616f-xtiled: - Statuses : 2 pass(s) - Exec time: [0.13, 0.15] s * igt@kms_draw_crc@draw-method-render@xbgr16161616f-4tiled: - Statuses : 3 pass(s) - Exec time: [0.13, 0.18] s * igt@kms_draw_crc@draw-method-render@xbgr16161616f-untiled: - Statuses : 3 pass(s) - Exec time: [0.28, 0.36] s * igt@kms_draw_crc@draw-method-render@xbgr16161616f-xtiled: - Statuses : 3 pass(s) - Exec time: [0.15, 0.17] s * igt@kms_flip@blocking-wf_vblank@d-dp2: - Statuses : 1 pass(s) - Exec time: [4.42] s * igt@kms_flip@flip-vs-panning-vs-hang@d-dp2: - Statuses : 1 pass(s) - Exec time: [0.73] s * igt@kms_plane_multiple@tiling-x@pipe-d-dp-2: - Statuses : 1 pass(s) - Exec time: [0.95] s Known issues ------------ Here are the changes found in XEIGTPW_12173_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getstats: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#2423]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@core_getstats.html * igt@core_getversion@basic: - shard-dg2-set2: NOTRUN -> [FAIL][12] ([Intel XE#3440]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@core_getversion@basic.html * igt@core_hotunplug@hotreplug: - shard-bmg: [PASS][13] -> [DMESG-WARN][14] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#3521]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@core_hotunplug@hotreplug.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@core_hotunplug@hotreplug.html - shard-dg2-set2: [PASS][15] -> [DMESG-WARN][16] ([Intel XE#3468] / [Intel XE#3521]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@core_hotunplug@hotreplug.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@core_hotunplug@hotreplug.html * igt@core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: [PASS][17] -> [SKIP][18] ([Intel XE#1885]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@core_hotunplug@hotreplug-lateclose.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@core_hotunplug@hotreplug-lateclose.html * igt@core_hotunplug@unplug-rescan: - shard-bmg: [PASS][19] -> [DMESG-WARN][20] ([Intel XE#3468]) +81 other tests dmesg-warn [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@core_hotunplug@unplug-rescan.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@core_hotunplug@unplug-rescan.html * igt@fbdev@eof: - shard-dg2-set2: [PASS][21] -> [SKIP][22] ([Intel XE#2134]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@fbdev@eof.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@fbdev@eof.html * igt@kms_addfb_basic@size-max: - shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#3007]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_addfb_basic@size-max.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_addfb_basic@size-max.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2550]) +23 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [PASS][26] -> [SKIP][27] ([Intel XE#2423] / [i915#2575]) +82 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2327]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +4 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2136] / [Intel XE#2351]) +37 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#367]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2314] / [Intel XE#2894]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#2191]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#367]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +7 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#3432]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][39] ([Intel XE#3468]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#787]) +125 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][43] ([Intel XE#1727] / [Intel XE#3113]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_cdclk@mode-transition@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#314]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2252]) +5 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#373]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_color@deep-color: - shard-bmg: [PASS][47] -> [DMESG-FAIL][48] ([Intel XE#3468]) +12 other tests dmesg-fail [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_color@deep-color.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2390]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][50] ([Intel XE#1178]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][51] ([Intel XE#1178]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-bmg: NOTRUN -> [DMESG-FAIL][52] ([Intel XE#3468]) +2 other tests dmesg-fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2320]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#308]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#2291]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2286]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#3070]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-with-formats: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2244]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#455]) +10 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_flip@2x-blocking-absolute-wf_vblank@ac-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][62] ([Intel XE#2635]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_flip@2x-blocking-absolute-wf_vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2316]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2316]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp4: - shard-dg2-set2: [PASS][66] -> [FAIL][67] ([Intel XE#301]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp4.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][68] ([Intel XE#3321] / [Intel XE#3487]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][69] ([Intel XE#2882]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-WARN][70] ([Intel XE#3468]) +29 other tests dmesg-warn [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][71] -> [FAIL][72] ([Intel XE#2882]) +2 other tests fail [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@bo-too-big-interruptible@a-edp1: - shard-lnl: [PASS][73] -> [TIMEOUT][74] ([Intel XE#1504]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-6/igt@kms_flip@bo-too-big-interruptible@a-edp1.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-lnl-3/igt@kms_flip@bo-too-big-interruptible@a-edp1.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [PASS][75] -> [FAIL][76] ([Intel XE#886]) +1 other test fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][77] -> [INCOMPLETE][78] ([Intel XE#2635]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [PASS][79] -> [DMESG-FAIL][80] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp4: - shard-dg2-set2: [PASS][81] -> [DMESG-WARN][82] ([Intel XE#1727] / [Intel XE#3468]) +5 other tests dmesg-warn [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@a-dp4.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@a-dp4.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6: - shard-dg2-set2: [PASS][83] -> [DMESG-WARN][84] ([Intel XE#3468]) +5 other tests dmesg-warn [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp4: - shard-dg2-set2: [PASS][85] -> [DMESG-FAIL][86] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html * igt@kms_flip@wf_vblank-ts-check: - shard-bmg: [PASS][87] -> [DMESG-FAIL][88] ([Intel XE#2705] / [Intel XE#3468]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [PASS][89] -> [SKIP][90] ([Intel XE#2136]) +23 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2293]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2380]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_tiling@flip-change-tiling: - shard-bmg: [PASS][94] -> [INCOMPLETE][95] ([Intel XE#1727] / [Intel XE#3468]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_flip_tiling@flip-change-tiling.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling.html * igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4: - shard-bmg: NOTRUN -> [DMESG-FAIL][96] ([Intel XE#2705]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2311]) +15 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#651]) +12 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-dg2-set2: [PASS][99] -> [SKIP][100] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [FAIL][101] ([Intel XE#2333]) +5 other tests fail [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2136]) +98 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2352]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2312]) +9 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#653]) +11 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2313]) +12 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][107] -> [SKIP][108] ([Intel XE#3012]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_lease@simple-lease: - shard-bmg: [PASS][109] -> [INCOMPLETE][110] ([Intel XE#1727]) +1 other test incomplete [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_lease@simple-lease.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_lease@simple-lease.html * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: NOTRUN -> [FAIL][111] ([Intel XE#616]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_scaling@invalid-parameters@less-than-1-width-src: - shard-dg2-set2: [PASS][112] -> [DMESG-WARN][113] ([Intel XE#1727]) +1 other test dmesg-warn [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_plane_scaling@invalid-parameters@less-than-1-width-src.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@kms_plane_scaling@invalid-parameters@less-than-1-width-src.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2763]) +8 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2763]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@fade-with-dpms: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#870]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][118] -> [FAIL][119] ([Intel XE#718]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#2446]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_pm_rpm@basic-rte: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][121] ([Intel XE#1727] / [Intel XE#3468]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2-set2: [PASS][122] -> [SKIP][123] ([Intel XE#2446]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_pm_rpm@dpms-lpsp.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@legacy-planes@plane-50: - shard-bmg: [PASS][124] -> [DMESG-WARN][125] ([Intel XE#1727] / [Intel XE#3468]) +13 other tests dmesg-warn [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_pm_rpm@legacy-planes@plane-50.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_pm_rpm@legacy-planes@plane-50.html * igt@kms_pm_rpm@modeset-lpsp: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#1439] / [Intel XE#3141]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@universal-planes@plane-32: - shard-bmg: NOTRUN -> [DMESG-WARN][127] ([Intel XE#1727] / [Intel XE#3468]) +6 other tests dmesg-warn [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_pm_rpm@universal-planes@plane-32.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#1489]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1489]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1122]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@pr-suspend: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_psr@pr-suspend.html * igt@kms_psr@psr-cursor-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2351]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2414]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#2423] / [i915#2575]) +103 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-180.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2413]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_scaling_modes@scaling-mode-none: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#3007]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [FAIL][139] ([Intel XE#1729]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-lnl: [PASS][140] -> [FAIL][141] ([Intel XE#899]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][142] ([Intel XE#3468]) +3 other tests dmesg-warn [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-hdmi-a-6.html * igt@kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#1499]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2168]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#756]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#1123]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#1126]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_eudebug@discovery-empty: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2905]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@xe_eudebug@discovery-empty.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#2905]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-bmg: NOTRUN -> [FAIL][150] ([Intel XE#2364]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][151] -> [TIMEOUT][152] ([Intel XE#1473] / [Intel XE#2472]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race: - shard-dg2-set2: [PASS][153] -> [SKIP][154] ([Intel XE#1130]) +127 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2322]) +4 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html * igt@xe_exec_basic@once-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#1130]) +154 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@xe_exec_basic@once-userptr-invalidate-race.html * igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-rebind: - shard-bmg: NOTRUN -> [DMESG-WARN][157] ([Intel XE#1727]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-rebind.html * igt@xe_exec_fault_mode@once-userptr-invalidate-imm: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#288]) +9 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@xe_exec_fault_mode@once-userptr-invalidate-imm.html * igt@xe_exec_threads@threads-bal-fd-userptr-invalidate-race: - shard-bmg: [PASS][159] -> [DMESG-WARN][160] ([Intel XE#1727]) +6 other tests dmesg-warn [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@xe_exec_threads@threads-bal-fd-userptr-invalidate-race.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@xe_exec_threads@threads-bal-fd-userptr-invalidate-race.html * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate: - shard-bmg: [PASS][161] -> [DMESG-WARN][162] ([Intel XE#3515]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-bmg: [PASS][163] -> [DMESG-WARN][164] ([Intel XE#3343]) +1 other test dmesg-warn [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init: - shard-bmg: [PASS][165] -> [DMESG-WARN][166] ([Intel XE#3343] / [Intel XE#3468]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early: - shard-bmg: [PASS][167] -> [DMESG-WARN][168] ([Intel XE#3467]) +1 other test dmesg-warn [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init: - shard-bmg: NOTRUN -> [DMESG-WARN][169] ([Intel XE#3343]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html - shard-dg2-set2: NOTRUN -> [DMESG-WARN][170] ([Intel XE#3343]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: - shard-bmg: NOTRUN -> [DMESG-FAIL][171] ([Intel XE#3467] / [Intel XE#3468]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#2229]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_mmap@small-bar: - shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#1130]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@xe_mmap@small-bar.html * igt@xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#3573]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@xe_oa@whitelisted-registers-userspace-config.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#2284]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s2idle-vm-bind-prefetch: - shard-bmg: NOTRUN -> [DMESG-WARN][176] ([Intel XE#1616] / [Intel XE#3468]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-prefetch.html * igt@xe_pm@s2idle-vm-bind-userptr: - shard-bmg: [PASS][177] -> [DMESG-WARN][178] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-userptr.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-userptr.html * igt@xe_pm@s3-vm-bind-userptr: - shard-bmg: [PASS][179] -> [DMESG-WARN][180] ([Intel XE#3468] / [Intel XE#569]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html * igt@xe_pm@s4-multiple-execs: - shard-lnl: [PASS][181] -> [ABORT][182] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-7/igt@xe_pm@s4-multiple-execs.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html * igt@xe_pm@s4-vm-bind-userptr: - shard-lnl: [PASS][183] -> [ABORT][184] ([Intel XE#1794]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-3/igt@xe_pm@s4-vm-bind-userptr.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_pm_residency@gt-c6-freeze@gt1: - shard-bmg: NOTRUN -> [DMESG-FAIL][185] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-fail [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@xe_pm_residency@gt-c6-freeze@gt1.html * igt@xe_query@multigpu-query-gt-list: - shard-dg2-set2: NOTRUN -> [SKIP][186] ([Intel XE#944]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@xe_query@multigpu-query-gt-list.html * igt@xe_query@multigpu-query-invalid-extension: - shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#944]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][188] -> [SKIP][189] ([Intel XE#1130]) +12 other tests skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html * igt@xe_tlb@basic-tlb: - shard-dg2-set2: NOTRUN -> [FAIL][190] ([Intel XE#2922]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@xe_tlb@basic-tlb.html #### Possible fixes #### * igt@core_setmaster@master-drop-set-root: - shard-dg2-set2: [FAIL][191] ([Intel XE#3249]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@core_setmaster@master-drop-set-root.html * igt@fbdev@write: - shard-dg2-set2: [SKIP][193] ([Intel XE#2134]) -> [PASS][194] +1 other test pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@fbdev@write.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@fbdev@write.html * igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs: - shard-lnl: [FAIL][195] ([Intel XE#1701]) -> [PASS][196] +1 other test pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-5/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-lnl-6/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][197] ([Intel XE#3468]) -> [PASS][198] +1 other test pass [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2-set2: [SKIP][199] ([Intel XE#2423] / [i915#2575]) -> [PASS][200] +92 other tests pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html - shard-bmg: [INCOMPLETE][201] ([Intel XE#1727]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-bmg: [SKIP][203] ([Intel XE#2291]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-bmg: [SKIP][205] ([Intel XE#2316]) -> [PASS][206] +2 other tests pass [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-bmg: [INCOMPLETE][207] ([Intel XE#2635]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3: - shard-bmg: [INCOMPLETE][209] -> [PASS][210] +2 other tests pass [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3.html * igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3: - shard-bmg: [DMESG-WARN][211] ([Intel XE#3468]) -> [PASS][212] +135 other tests pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html * igt@kms_flip@wf_vblank-ts-check-interruptible: - shard-lnl: [FAIL][213] ([Intel XE#886]) -> [PASS][214] +4 other tests pass [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check-interruptible.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-bmg: [INCOMPLETE][215] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][216] +2 other tests pass [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][217] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][218] +12 other tests pass [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2-set2: [SKIP][219] ([Intel XE#2136]) -> [PASS][220] +31 other tests pass [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@kms_hdr@bpc-switch-suspend: - shard-bmg: [DMESG-FAIL][221] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_hdr@bpc-switch-suspend.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][223] ([Intel XE#3468]) -> [PASS][224] +4 other tests pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-6.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-6.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][225] ([Intel XE#3012]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2: - shard-bmg: [DMESG-WARN][227] ([Intel XE#1727]) -> [PASS][228] +5 other tests pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-a-dp-2.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d: - shard-bmg: [DMESG-WARN][229] -> [PASS][230] +10 other tests pass [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][231] ([Intel XE#718]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [FAIL][233] ([Intel XE#1430]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-dg2-set2: [SKIP][235] ([Intel XE#2446]) -> [PASS][236] +1 other test pass [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_pm_rpm@modeset-stress-extra-wait.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_pm_rpm@modeset-stress-extra-wait.html - shard-bmg: [INCOMPLETE][237] ([Intel XE#2864]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_pm_rpm@modeset-stress-extra-wait.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-bmg: [INCOMPLETE][239] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_pm_rpm@universal-planes-dpms.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_pm_rpm@universal-planes-dpms@plane-50: - shard-bmg: [DMESG-WARN][241] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][242] +3 other tests pass [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_pm_rpm@universal-planes-dpms@plane-50.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_pm_rpm@universal-planes-dpms@plane-50.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [FAIL][243] ([Intel XE#2883]) -> [PASS][244] +2 other tests pass [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@basic@pipe-b-hdmi-a-3: - shard-bmg: [FAIL][245] ([Intel XE#3559]) -> [PASS][246] +4 other tests pass [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: [SKIP][247] ([Intel XE#1435]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_vblank@wait-forked@pipe-a-dp-2: - shard-bmg: [DMESG-FAIL][249] ([Intel XE#3468]) -> [PASS][250] +25 other tests pass [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_vblank@wait-forked@pipe-a-dp-2.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@kms_vblank@wait-forked@pipe-a-dp-2.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][251] ([Intel XE#2159]) -> [PASS][252] +1 other test pass [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: [SKIP][253] ([Intel XE#1130]) -> [PASS][254] +148 other tests pass [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@xe_exec_balancer@once-parallel-rebind.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@xe_exec_balancer@once-parallel-rebind.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-dg2-set2: [DMESG-WARN][255] ([Intel XE#1727]) -> [PASS][256] +1 other test pass [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt@xe_exec_threads@threads-cm-fd-userptr: - shard-bmg: [FAIL][257] -> [PASS][258] +1 other test pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_exec_threads@threads-cm-fd-userptr.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@xe_exec_threads@threads-cm-fd-userptr.html * igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready: - shard-dg2-set2: [DMESG-WARN][259] ([Intel XE#3467]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: - shard-bmg: [DMESG-WARN][261] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init: - shard-bmg: [DMESG-WARN][263] ([Intel XE#3343]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-dg2-set2: [INCOMPLETE][265] -> [PASS][266] +1 other test pass [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_dma_buf: - shard-bmg: [SKIP][267] ([Intel XE#1192]) -> [PASS][268] +1 other test pass [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@xe_live_ktest@xe_dma_buf.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_module_load@reload-no-display: - shard-bmg: [DMESG-WARN][269] ([Intel XE#3467]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_module_load@reload-no-display.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@xe_module_load@reload-no-display.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-bmg: [DMESG-WARN][271] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [PASS][272] +1 other test pass [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm@s3-multiple-execs: - shard-bmg: [DMESG-WARN][273] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][274] +1 other test pass [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_pm@s3-multiple-execs.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@s4-mocs: - shard-bmg: [DMESG-WARN][275] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_pm@s4-mocs.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@xe_pm@s4-mocs.html #### Warnings #### * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][277] ([Intel XE#873]) -> [SKIP][278] ([Intel XE#2423] / [i915#2575]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_async_flips@invalid-async-flip.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][279] ([Intel XE#316]) -> [SKIP][280] ([Intel XE#2136] / [Intel XE#2351]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [DMESG-FAIL][281] ([Intel XE#3468]) -> [DMESG-WARN][282] ([Intel XE#3468]) +2 other tests dmesg-warn [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][283] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][284] ([Intel XE#316]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-90.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg2-set2: [SKIP][285] ([Intel XE#316]) -> [SKIP][286] ([Intel XE#2136]) +4 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_big_fb@linear-8bpp-rotate-270.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][287] ([Intel XE#2136]) -> [SKIP][288] ([Intel XE#316]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2-set2: [SKIP][289] ([Intel XE#619]) -> [SKIP][290] ([Intel XE#2136] / [Intel XE#2351]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][291] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][292] ([Intel XE#607]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][293] ([Intel XE#1124]) -> [SKIP][294] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][295] ([Intel XE#607]) -> [SKIP][296] ([Intel XE#2136]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][297] ([Intel XE#2136]) -> [SKIP][298] ([Intel XE#610]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][299] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][300] ([Intel XE#1124]) +2 other tests skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][301] ([Intel XE#1124]) -> [SKIP][302] ([Intel XE#2136]) +4 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][303] ([Intel XE#2136]) -> [SKIP][304] ([Intel XE#1124]) +7 other tests skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: [SKIP][305] ([Intel XE#2423] / [i915#2575]) -> [SKIP][306] ([Intel XE#367]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html - shard-bmg: [DMESG-WARN][307] -> [SKIP][308] ([Intel XE#2314] / [Intel XE#2894]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][309] ([Intel XE#2423] / [i915#2575]) -> [SKIP][310] ([Intel XE#2191]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: [SKIP][311] ([Intel XE#2191]) -> [SKIP][312] ([Intel XE#2423] / [i915#2575]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][313] ([Intel XE#367]) -> [SKIP][314] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - shard-bmg: [SKIP][315] ([Intel XE#367]) -> [SKIP][316] ([Intel XE#3007]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][317] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][318] ([Intel XE#2136] / [Intel XE#2351]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][319] ([Intel XE#2136]) -> [SKIP][320] ([Intel XE#2907]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][321] ([Intel XE#2136]) -> [SKIP][322] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][323] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][324] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][325] ([Intel XE#2907]) -> [SKIP][326] ([Intel XE#2136]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [SKIP][327] ([Intel XE#2136]) -> [INCOMPLETE][328] ([Intel XE#3468]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [SKIP][329] ([Intel XE#2136] / [Intel XE#2351]) -> [INCOMPLETE][330] ([Intel XE#1727]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][331] ([Intel XE#2887]) -> [SKIP][332] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][333] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][334] ([Intel XE#2136]) +8 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt@kms_cdclk@plane-scaling: - shard-bmg: [SKIP][335] ([Intel XE#2724]) -> [SKIP][336] ([Intel XE#2136] / [Intel XE#2231]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_cdclk@plane-scaling.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-0-75: - shard-dg2-set2: [SKIP][337] ([Intel XE#2423] / [i915#2575]) -> [SKIP][338] ([Intel XE#306]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_chamelium_color@ctm-0-75.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@degamma: - shard-dg2-set2: [SKIP][339] ([Intel XE#306]) -> [SKIP][340] ([Intel XE#2423] / [i915#2575]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_chamelium_color@degamma.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@hdmi-cmp-planes-random: - shard-dg2-set2: [SKIP][341] ([Intel XE#2423] / [i915#2575]) -> [SKIP][342] ([Intel XE#373]) +10 other tests skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: [SKIP][343] ([Intel XE#373]) -> [SKIP][344] ([Intel XE#2423] / [i915#2575]) +9 other tests skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_color@degamma: - shard-dg2-set2: [INCOMPLETE][345] ([Intel XE#1727]) -> [SKIP][346] ([Intel XE#2423] / [i915#2575]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_color@degamma.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_color@degamma.html * igt@kms_content_protection@atomic: - shard-bmg: [FAIL][347] ([Intel XE#1178]) -> [INCOMPLETE][348] ([Intel XE#2715] / [Intel XE#3468]) +1 other test incomplete [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_content_protection@atomic.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_content_protection@atomic.html - shard-dg2-set2: [FAIL][349] ([Intel XE#1178]) -> [SKIP][350] ([Intel XE#2423] / [i915#2575]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_content_protection@atomic.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-bmg: [FAIL][351] ([Intel XE#1178]) -> [SKIP][352] ([Intel XE#2341]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_content_protection@atomic-dpms.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: [SKIP][353] ([Intel XE#2423] / [i915#2575]) -> [SKIP][354] ([Intel XE#307]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_content_protection@dp-mst-type-0.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][355] ([Intel XE#307]) -> [SKIP][356] ([Intel XE#2423] / [i915#2575]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_content_protection@dp-mst-type-1.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [SKIP][357] ([Intel XE#2341]) -> [FAIL][358] ([Intel XE#1178]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_content_protection@lic-type-0.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-dg2-set2: [SKIP][359] ([Intel XE#2423] / [i915#2575]) -> [FAIL][360] ([Intel XE#1178]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_content_protection@srm.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg2-set2: [FAIL][361] ([Intel XE#1188]) -> [SKIP][362] ([Intel XE#2423] / [i915#2575]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_content_protection@uevent.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_content_protection@uevent.html - shard-bmg: [SKIP][363] ([Intel XE#2341]) -> [DMESG-FAIL][364] ([Intel XE#3468]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_content_protection@uevent.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][365] ([Intel XE#2423] / [i915#2575]) -> [SKIP][366] ([Intel XE#308]) +2 other tests skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2-set2: [SKIP][367] ([Intel XE#323]) -> [SKIP][368] ([Intel XE#2423] / [i915#2575]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][369] ([Intel XE#877]) -> [SKIP][370] ([Intel XE#2291]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-bmg: [SKIP][371] ([Intel XE#2291]) -> [DMESG-WARN][372] ([Intel XE#3468]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][373] ([Intel XE#3468]) -> [SKIP][374] ([Intel XE#2291]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: [SKIP][375] ([Intel XE#2423] / [i915#2575]) -> [SKIP][376] ([Intel XE#323]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_cursor_legacy@torture-bo: - shard-dg2-set2: [DMESG-WARN][377] ([Intel XE#2932]) -> [SKIP][378] ([Intel XE#2423] / [i915#2575]) [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_cursor_legacy@torture-bo.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_cursor_legacy@torture-bo.html * igt@kms_dsc@dsc-basic: - shard-dg2-set2: [SKIP][379] ([Intel XE#2351]) -> [SKIP][380] ([Intel XE#455]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_dsc@dsc-basic.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-formats: - shard-dg2-set2: [SKIP][381] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][382] ([Intel XE#455]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_dsc@dsc-with-formats.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][383] ([Intel XE#776]) -> [SKIP][384] ([Intel XE#2136]) +1 other test skip [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_fbcon_fbt@psr.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][385] ([Intel XE#2423] / [i915#2575]) -> [SKIP][386] ([Intel XE#701]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_feature_discovery@chamelium.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][387] ([Intel XE#2423] / [i915#2575]) -> [SKIP][388] ([Intel XE#1138]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_feature_discovery@display-4x.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][389] ([Intel XE#1135]) -> [SKIP][390] ([Intel XE#2423] / [i915#2575]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_feature_discovery@psr1.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-bmg: [SKIP][391] ([Intel XE#2316]) -> [INCOMPLETE][392] ([Intel XE#2635]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-bmg: [SKIP][393] ([Intel XE#2316]) -> [DMESG-WARN][394] ([Intel XE#3468]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [SKIP][395] ([Intel XE#2316]) -> [FAIL][396] ([Intel XE#2882]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [DMESG-WARN][397] ([Intel XE#3468]) -> [FAIL][398] ([Intel XE#2882]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3: - shard-bmg: [DMESG-WARN][399] ([Intel XE#3468]) -> [FAIL][400] ([Intel XE#3321] / [Intel XE#3486]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [DMESG-WARN][401] ([Intel XE#3468]) -> [FAIL][402] ([Intel XE#3486]) +1 other test fail [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [DMESG-WARN][403] ([Intel XE#3468]) -> [DMESG-WARN][404] ([Intel XE#877]) +2 other tests dmesg-warn [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-dg2-set2: [INCOMPLETE][405] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][406] ([Intel XE#2136]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2-set2: [SKIP][407] ([Intel XE#2136]) -> [SKIP][408] ([Intel XE#455]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][409] ([Intel XE#455]) -> [SKIP][410] ([Intel XE#2136] / [Intel XE#2351]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][411] ([Intel XE#455]) -> [SKIP][412] ([Intel XE#2136]) +6 other tests skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][413] ([Intel XE#651]) -> [SKIP][414] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][415] ([Intel XE#2312]) -> [SKIP][416] ([Intel XE#2311]) +10 other tests skip [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][417] ([Intel XE#2311]) -> [SKIP][418] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt: - shard-dg2-set2: [SKIP][419] ([Intel XE#651]) -> [SKIP][420] ([Intel XE#2136]) +18 other tests skip [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][421] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][422] ([Intel XE#651]) +11 other tests skip [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][423] ([Intel XE#2333]) -> [DMESG-FAIL][424] ([Intel XE#3468]) +4 other tests dmesg-fail [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: [DMESG-FAIL][425] ([Intel XE#3468]) -> [FAIL][426] ([Intel XE#2333]) +9 other tests fail [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render: - shard-bmg: [FAIL][427] ([Intel XE#2333]) -> [SKIP][428] ([Intel XE#2136] / [Intel XE#2231]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-rte: - shard-bmg: [INCOMPLETE][429] ([Intel XE#3468]) -> [FAIL][430] ([Intel XE#2333]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][431] ([Intel XE#2312]) -> [SKIP][432] ([Intel XE#2136] / [Intel XE#2231]) [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [FAIL][433] ([Intel XE#2333]) -> [SKIP][434] ([Intel XE#2312]) +5 other tests skip [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][435] ([Intel XE#2312]) -> [FAIL][436] ([Intel XE#2333]) +2 other tests fail [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [DMESG-FAIL][437] ([Intel XE#3468]) -> [SKIP][438] ([Intel XE#2312]) +2 other tests skip [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][439] ([Intel XE#2136]) -> [SKIP][440] ([Intel XE#651]) +14 other tests skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][441] ([Intel XE#2311]) -> [SKIP][442] ([Intel XE#2312]) +14 other tests skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][443] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][444] ([Intel XE#658]) [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][445] ([Intel XE#2136]) -> [SKIP][446] ([Intel XE#653]) +18 other tests skip [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][447] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][448] ([Intel XE#653]) +5 other tests skip [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][449] ([Intel XE#2313]) -> [SKIP][450] ([Intel XE#2312]) +12 other tests skip [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][451] ([Intel XE#653]) -> [SKIP][452] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: [SKIP][453] ([Intel XE#658]) -> [SKIP][454] ([Intel XE#2136] / [Intel XE#2351]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-bmg: [FAIL][455] ([Intel XE#2333]) -> [INCOMPLETE][456] ([Intel XE#1727] / [Intel XE#2050] / [Intel XE#3468]) [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2: - shard-bmg: [FAIL][457] ([Intel XE#2333]) -> [INCOMPLETE][458] ([Intel XE#1727] / [Intel XE#3468]) [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][459] ([Intel XE#2313]) -> [SKIP][460] ([Intel XE#2136] / [Intel XE#2231]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][461] ([Intel XE#653]) -> [SKIP][462] ([Intel XE#2136]) +13 other tests skip [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][463] ([Intel XE#2312]) -> [SKIP][464] ([Intel XE#2313]) +8 other tests skip [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][465] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][466] ([Intel XE#3544]) [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: [SKIP][467] ([Intel XE#2925]) -> [SKIP][468] ([Intel XE#2136]) [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_joiner@basic-force-ultra-joiner.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_plane@pixel-format: - shard-bmg: [INCOMPLETE][469] ([Intel XE#3468]) -> [DMESG-WARN][470] ([Intel XE#877]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_plane@pixel-format.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_plane@pixel-format.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [SKIP][471] ([Intel XE#2423] / [i915#2575]) -> [FAIL][472] ([Intel XE#616]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_plane_cursor@viewport.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_plane_cursor@viewport.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2-set2: [SKIP][473] ([Intel XE#2423] / [i915#2575]) -> [SKIP][474] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: [SKIP][475] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][476] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][477] ([Intel XE#2938]) -> [SKIP][478] ([Intel XE#2136]) [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_pm_backlight@brightness-with-dpms.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: [SKIP][479] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][480] ([Intel XE#1122]) [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_pm_dc@dc3co-vpb-simulation.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: [SKIP][481] ([Intel XE#2392]) -> [SKIP][482] ([Intel XE#2136] / [Intel XE#2231]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][483] ([Intel XE#2136]) -> [SKIP][484] ([Intel XE#3309]) [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_pm_dc@dc5-retention-flops.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][485] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][486] ([Intel XE#1129]) [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@cursor: - shard-dg2-set2: [SKIP][487] ([Intel XE#2446]) -> [INCOMPLETE][488] ([Intel XE#1727] / [Intel XE#3468]) [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_pm_rpm@cursor.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2-set2: [ABORT][489] ([Intel XE#3468]) -> [SKIP][490] ([Intel XE#2446]) [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_pm_rpm@dpms-non-lpsp.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][491] ([Intel XE#1489]) -> [SKIP][492] ([Intel XE#2136]) +8 other tests skip [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][493] ([Intel XE#2136]) -> [SKIP][494] ([Intel XE#1489]) +8 other tests skip [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2-set2: [SKIP][495] ([Intel XE#1122]) -> [SKIP][496] ([Intel XE#2136]) [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_psr2_su@frontbuffer-xrgb8888.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-no-drrs: - shard-dg2-set2: [SKIP][497] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][498] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_psr@fbc-pr-no-drrs.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr@fbc-psr2-dpms: - shard-dg2-set2: [SKIP][499] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][500] ([Intel XE#2136]) +5 other tests skip [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_psr@fbc-psr2-dpms.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_psr@fbc-psr2-dpms.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][501] ([Intel XE#2136]) -> [SKIP][502] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-move.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][503] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][504] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_psr@psr-dpms.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_psr@psr-dpms.html * igt@kms_psr@psr-primary-page-flip: - shard-dg2-set2: [SKIP][505] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][506] ([Intel XE#2351]) [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_psr@psr-primary-page-flip.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@kms_psr@psr-primary-page-flip.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][507] ([Intel XE#3414]) -> [SKIP][508] ([Intel XE#2423] / [i915#2575]) +1 other test skip [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][509] ([Intel XE#2423] / [i915#2575]) -> [SKIP][510] ([Intel XE#1127]) [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2-set2: [SKIP][511] ([Intel XE#2423] / [i915#2575]) -> [SKIP][512] ([Intel XE#3414]) +2 other tests skip [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_vblank@ts-continuation-modeset-rpm: - shard-dg2-set2: [SKIP][513] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][514] ([Intel XE#3468]) [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_vblank@ts-continuation-modeset-rpm.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_vblank@ts-continuation-modeset-rpm.html * igt@kms_vrr@cmrr: - shard-dg2-set2: [SKIP][515] ([Intel XE#2168]) -> [SKIP][516] ([Intel XE#2423] / [i915#2575]) [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_vrr@cmrr.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_vrr@cmrr.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][517] ([Intel XE#455]) -> [SKIP][518] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_vrr@flip-dpms.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flipline: - shard-dg2-set2: [SKIP][519] ([Intel XE#2423] / [i915#2575]) -> [SKIP][520] ([Intel XE#455]) +7 other tests skip [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_vrr@flipline.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-dg2-set2: [SKIP][521] ([Intel XE#2423] / [i915#2575]) -> [SKIP][522] ([Intel XE#2168]) [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_vrr@lobf.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@kms_vrr@lobf.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: [SKIP][523] ([Intel XE#1123]) -> [SKIP][524] ([Intel XE#1130]) [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x369.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][525] ([Intel XE#1130]) -> [SKIP][526] ([Intel XE#1126]) +1 other test skip [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_eudebug_online@debugger-reopen: - shard-dg2-set2: [SKIP][527] ([Intel XE#1130]) -> [SKIP][528] ([Intel XE#2905]) +9 other tests skip [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@xe_eudebug_online@debugger-reopen.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@xe_eudebug_online@debugger-reopen.html * igt@xe_eudebug_online@resume-dss: - shard-dg2-set2: [SKIP][529] ([Intel XE#2905]) -> [SKIP][530] ([Intel XE#1130]) +11 other tests skip [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@xe_eudebug_online@resume-dss.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@xe_eudebug_online@resume-dss.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [SKIP][531] ([Intel XE#1130]) -> [TIMEOUT][532] ([Intel XE#1473]) [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html - shard-bmg: [INCOMPLETE][533] ([Intel XE#1473]) -> [TIMEOUT][534] ([Intel XE#1473]) [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-large.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][535] ([Intel XE#1473] / [Intel XE#402]) -> [SKIP][536] ([Intel XE#1130]) [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-small.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-bmg: [INCOMPLETE][537] ([Intel XE#1473] / [Intel XE#3468]) -> [SKIP][538] ([Intel XE#1130]) [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-large.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic: - shard-bmg: [SKIP][539] ([Intel XE#2322]) -> [SKIP][540] ([Intel XE#1130]) [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html * igt@xe_exec_fault_mode@once-basic-imm: - shard-dg2-set2: [SKIP][541] ([Intel XE#1130]) -> [SKIP][542] ([Intel XE#288]) +24 other tests skip [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@xe_exec_fault_mode@once-basic-imm.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@xe_exec_fault_mode@once-basic-imm.html * igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch: - shard-dg2-set2: [SKIP][543] ([Intel XE#288]) -> [SKIP][544] ([Intel XE#1130]) +31 other tests skip [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html * igt@xe_exec_reset@cm-gt-reset: - shard-dg2-set2: [INCOMPLETE][545] -> [SKIP][546] ([Intel XE#1130]) [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@xe_exec_reset@cm-gt-reset.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@xe_exec_reset@cm-gt-reset.html * igt@xe_fault_injection@inject-fault-probe-function-xe_device_create: - shard-bmg: [DMESG-WARN][547] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][548] ([Intel XE#3468]) [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-dg2-set2: [DMESG-WARN][549] ([Intel XE#3467]) -> [SKIP][550] ([Intel XE#1130]) [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: - shard-dg2-set2: [SKIP][551] ([Intel XE#1130]) -> [DMESG-WARN][552] ([Intel XE#3343]) [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-dg2-set2: [DMESG-WARN][553] ([Intel XE#3343]) -> [SKIP][554] ([Intel XE#1130]) [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: - shard-bmg: [DMESG-WARN][555] -> [DMESG-WARN][556] ([Intel XE#3467]) [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: - shard-dg2-set2: [SKIP][557] ([Intel XE#1130]) -> [DMESG-WARN][558] ([Intel XE#3467]) +1 other test dmesg-warn [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: - shard-bmg: [DMESG-FAIL][559] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-FAIL][560] ([Intel XE#3467]) [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-bmg: [DMESG-WARN][561] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][562] ([Intel XE#3467]) [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_oa@invalid-oa-metric-set-id: - shard-dg2-set2: [SKIP][563] ([Intel XE#3573]) -> [SKIP][564] ([Intel XE#1130]) +7 other tests skip [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@xe_oa@invalid-oa-metric-set-id.html [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@xe_oa@invalid-oa-metric-set-id.html * igt@xe_oa@invalid-remove-userspace-config: - shard-dg2-set2: [SKIP][565] ([Intel XE#1130]) -> [SKIP][566] ([Intel XE#3573]) +9 other tests skip [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@xe_oa@invalid-remove-userspace-config.html [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-436/igt@xe_oa@invalid-remove-userspace-config.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][567] ([Intel XE#1130]) -> [SKIP][568] ([Intel XE#1337]) [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@xe_pat@display-vs-wb-transient.html [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][569] ([Intel XE#979]) -> [SKIP][570] ([Intel XE#1130]) [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: [SKIP][571] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][572] ([Intel XE#1130]) +2 other tests skip [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@xe_pm@d3cold-mmap-vram.html [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: [SKIP][573] ([Intel XE#1130]) -> [SKIP][574] ([Intel XE#579]) [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@xe_pm@vram-d3cold-threshold.html [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pm_residency@cpg-basic: - shard-dg2-set2: [SKIP][575] ([Intel XE#1130]) -> [DMESG-WARN][576] ([Intel XE#3468]) [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@xe_pm_residency@cpg-basic.html [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-433/igt@xe_pm_residency@cpg-basic.html * igt@xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: [SKIP][577] ([Intel XE#1130]) -> [SKIP][578] ([Intel XE#944]) +3 other tests skip [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@xe_query@multigpu-query-cs-cycles.html [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][579] ([Intel XE#944]) -> [SKIP][580] ([Intel XE#1130]) +3 other tests skip [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-guc.html [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_query@query-uc-fw-version-guc: - shard-dg2-set2: [DMESG-WARN][581] ([Intel XE#1727]) -> [SKIP][582] ([Intel XE#1130]) [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@xe_query@query-uc-fw-version-guc.html [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@xe_query@query-uc-fw-version-guc.html * igt@xe_render_copy@render-full: - shard-bmg: [DMESG-WARN][583] ([Intel XE#1727]) -> [DMESG-WARN][584] ([Intel XE#3468]) +1 other test dmesg-warn [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@xe_render_copy@render-full.html [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@xe_render_copy@render-full.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][585] ([Intel XE#1130]) -> [SKIP][586] ([Intel XE#3342]) +1 other test skip [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-463/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_vm@large-binds-1073741824: - shard-dg2-set2: [SKIP][587] ([Intel XE#1130]) -> [DMESG-WARN][588] ([Intel XE#1727]) [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@xe_vm@large-binds-1073741824.html [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-435/igt@xe_vm@large-binds-1073741824.html * igt@xe_wedged@basic-wedged: - shard-bmg: [DMESG-WARN][589] ([Intel XE#2919]) -> [SKIP][590] ([Intel XE#1130]) [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@xe_wedged@basic-wedged.html [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-6/igt@xe_wedged@basic-wedged.html * igt@xe_wedged@wedged-at-any-timeout: - shard-dg2-set2: [ABORT][591] ([Intel XE#3421]) -> [SKIP][592] ([Intel XE#1130]) [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@xe_wedged@wedged-at-any-timeout.html [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-466/igt@xe_wedged@wedged-at-any-timeout.html - shard-bmg: [ABORT][593] ([Intel XE#3421]) -> [ABORT][594] ([Intel XE#3421] / [Intel XE#3521]) [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [ABORT][595] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][596] ([Intel XE#1130]) [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@xe_wedged@wedged-mode-toggle.html [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/shard-dg2-434/igt@xe_wedged@wedged-mode-toggle.html [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486 [Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487 [Intel XE#3515]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3515 [Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3559]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3559 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8122 -> IGTPW_12173 * Linux: xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199 -> xe-2260-affb5810a89e0710f6131926fa8e1da09c982ee3 IGTPW_12173: 12173 IGT_8122: 8122 xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199: bb17c42521f57b592e9ad49daca1f9f9045d3199 xe-2260-affb5810a89e0710f6131926fa8e1da09c982ee3: affb5810a89e0710f6131926fa8e1da09c982ee3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12173/index.html [-- Attachment #2: Type: text/html, Size: 183131 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-12-18 15:09 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-22 8:48 [PATCH i-g-t v2 0/4] intel: igt_draw and intel_bufops improvements Ville Syrjala 2024-11-22 8:48 ` [PATCH i-g-t v2 1/4] lib/intel_bufops: Add support for gen2 and i915 tiling layouts Ville Syrjala 2024-11-25 7:09 ` Zbigniew Kempczyński 2024-11-22 8:48 ` [PATCH i-g-t v2 2/4] lib/intel_bufops: Provide pread/pwrite based fallback when we don't have WC Ville Syrjala 2024-12-18 15:08 ` Juha-Pekka Heikkilä 2024-11-22 8:48 ` [PATCH i-g-t v2 3/4] tests/kms_draw_crc: Test 64bpp Ville Syrjala 2024-11-22 8:48 ` [PATCH i-g-t v2 4/4] tests/intel/gem_draw: Test igt_draw without kms Ville Syrjala 2024-12-18 15:09 ` Juha-Pekka Heikkilä 2024-11-22 10:09 ` ✗ GitLab.Pipeline: warning for intel: igt_draw and intel_bufops improvements (rev4) Patchwork 2024-11-22 10:25 ` ✓ Xe.CI.BAT: success " Patchwork 2024-11-22 10:42 ` ✗ i915.CI.BAT: failure " Patchwork 2024-11-23 5:54 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox