intel-xe.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drm/xe: replace basename() with portable strrchr()
@ 2025-08-20 20:16 Carlos Llamas
  2025-08-20 21:15 ` Lucas De Marchi
                   ` (10 more replies)
  0 siblings, 11 replies; 20+ messages in thread
From: Carlos Llamas @ 2025-08-20 20:16 UTC (permalink / raw)
  To: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi,
	David Airlie, Simona Vetter, Matt Atwood
  Cc: kernel-team, linux-kernel, Carlos Llamas,
	open list:INTEL DRM XE DRIVER (Lunar Lake and newer),
	open list:DRM DRIVERS

Commit b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
introduced a call to basename(). The GNU version of this function is not
portable and fails to build with alternative libc implementations like
musl or bionic. This causes the following build error:

  drivers/gpu/drm/xe/xe_gen_wa_oob.c:130:12: error: assignment to ‘const char *’ from ‘int’ makes pointer from integer without a cast [-Wint-conversion]
    130 |         fn = basename(fn);
        |            ^

While a POSIX version of basename() could be used, it would require a
separate header plus the behavior differs from GNU version in that it
might modify its argument. Not great.

Instead replace basename() with a strrchr() based implementation which
provides the same functionality and avoid portability issues.

Fixes: b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
Signed-off-by: Carlos Llamas <cmllamas@google.com>
---
 drivers/gpu/drm/xe/xe_gen_wa_oob.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_gen_wa_oob.c b/drivers/gpu/drm/xe/xe_gen_wa_oob.c
index 6581cb0f0e59..0a94a045bcea 100644
--- a/drivers/gpu/drm/xe/xe_gen_wa_oob.c
+++ b/drivers/gpu/drm/xe/xe_gen_wa_oob.c
@@ -125,9 +125,11 @@ static int parse(FILE *input, FILE *csource, FILE *cheader, char *prefix)
 
 static int fn_to_prefix(const char *fn, char *prefix, size_t size)
 {
+	const char *base;
 	size_t len;
 
-	fn = basename(fn);
+	base = strrchr(fn, '/');
+	fn = base ? base + 1 : fn;
 	len = strlen(fn);
 
 	if (len > size - 1)
-- 
2.51.0.rc1.193.gad69d77794-goog


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* Re: [PATCH] drm/xe: replace basename() with portable strrchr()
  2025-08-20 20:16 [PATCH] drm/xe: replace basename() with portable strrchr() Carlos Llamas
@ 2025-08-20 21:15 ` Lucas De Marchi
  2025-08-20 23:05   ` Carlos Llamas
  2025-08-20 21:18 ` [PATCH] drm/xe: replace basename() with portable strrchr() Tiffany Yang
                   ` (9 subsequent siblings)
  10 siblings, 1 reply; 20+ messages in thread
From: Lucas De Marchi @ 2025-08-20 21:15 UTC (permalink / raw)
  To: Carlos Llamas
  Cc: Thomas Hellström, Rodrigo Vivi, David Airlie, Simona Vetter,
	Matt Atwood, kernel-team, linux-kernel,
	open list:INTEL DRM XE DRIVER (Lunar Lake and newer),
	open list:DRM DRIVERS

On Wed, Aug 20, 2025 at 08:16:11PM +0000, Carlos Llamas wrote:
>Commit b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
>introduced a call to basename(). The GNU version of this function is not
>portable and fails to build with alternative libc implementations like
>musl or bionic. This causes the following build error:
>
>  drivers/gpu/drm/xe/xe_gen_wa_oob.c:130:12: error: assignment to ‘const char *’ from ‘int’ makes pointer from integer without a cast [-Wint-conversion]
>    130 |         fn = basename(fn);
>        |            ^
>
>While a POSIX version of basename() could be used, it would require a
>separate header plus the behavior differs from GNU version in that it
>might modify its argument. Not great.
>
>Instead replace basename() with a strrchr() based implementation which
>provides the same functionality and avoid portability issues.
>
>Fixes: b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
>Signed-off-by: Carlos Llamas <cmllamas@google.com>
>---
> drivers/gpu/drm/xe/xe_gen_wa_oob.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
>diff --git a/drivers/gpu/drm/xe/xe_gen_wa_oob.c b/drivers/gpu/drm/xe/xe_gen_wa_oob.c
>index 6581cb0f0e59..0a94a045bcea 100644
>--- a/drivers/gpu/drm/xe/xe_gen_wa_oob.c
>+++ b/drivers/gpu/drm/xe/xe_gen_wa_oob.c
>@@ -125,9 +125,11 @@ static int parse(FILE *input, FILE *csource, FILE *cheader, char *prefix)
>
> static int fn_to_prefix(const char *fn, char *prefix, size_t size)
> {
>+	const char *base;
> 	size_t len;
>
>-	fn = basename(fn);
>+	base = strrchr(fn, '/');
>+	fn = base ? base + 1 : fn;

I think just a xbasename() helper like we've added in kmod would be
preferred:
https://github.com/kmod-project/kmod/commit/11eb9bc67c319900ab00523997323a97d2d08ad2

Alternativelly add it somewhere that can be shared across the userspace
tools in the kernel tree to fix the mess that we have here:

	git grep basename -- tools/**.c

Some dup the arg simply to be able to use the libgen.h version, some use
one or the other on purpose, etc etc.

Lucas De Marchi

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH] drm/xe: replace basename() with portable strrchr()
  2025-08-20 20:16 [PATCH] drm/xe: replace basename() with portable strrchr() Carlos Llamas
  2025-08-20 21:15 ` Lucas De Marchi
@ 2025-08-20 21:18 ` Tiffany Yang
  2025-08-21 13:14 ` ✓ CI.KUnit: success for " Patchwork
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 20+ messages in thread
From: Tiffany Yang @ 2025-08-20 21:18 UTC (permalink / raw)
  To: 'Carlos Llamas' via kernel-team
  Cc: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi,
	David Airlie, Simona Vetter, Matt Atwood, Carlos Llamas,
	linux-kernel,
	open list:INTEL DRM XE DRIVER (Lunar Lake and newer),
	open list:DRM DRIVERS

"'Carlos Llamas' via kernel-team" <kernel-team@android.com> writes:

> Commit b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
> introduced a call to basename(). The GNU version of this function is not
> portable and fails to build with alternative libc implementations like
> musl or bionic. This causes the following build error:

>    drivers/gpu/drm/xe/xe_gen_wa_oob.c:130:12: error: assignment to ‘const  
> char *’ from ‘int’ makes pointer from integer without a cast  
> [-Wint-conversion]
>      130 |         fn = basename(fn);
>          |            ^

> While a POSIX version of basename() could be used, it would require a
> separate header plus the behavior differs from GNU version in that it
> might modify its argument. Not great.

> Instead replace basename() with a strrchr() based implementation which
> provides the same functionality and avoid portability issues.

Nit: s/avoid/avoids. Other than that,


> Fixes: b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
> Signed-off-by: Carlos Llamas <cmllamas@google.com>
> ---
>   drivers/gpu/drm/xe/xe_gen_wa_oob.c | 4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)


Reviewed-by: Tiffany Yang <ynaffit@google.com>

-- 
Tiffany Y. Yang

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH] drm/xe: replace basename() with portable strrchr()
  2025-08-20 21:15 ` Lucas De Marchi
@ 2025-08-20 23:05   ` Carlos Llamas
  2025-08-21 21:00     ` Lucas De Marchi
  0 siblings, 1 reply; 20+ messages in thread
From: Carlos Llamas @ 2025-08-20 23:05 UTC (permalink / raw)
  To: Lucas De Marchi
  Cc: Thomas Hellström, Rodrigo Vivi, David Airlie, Simona Vetter,
	Matt Atwood, kernel-team, linux-kernel,
	open list:INTEL DRM XE DRIVER (Lunar Lake and newer),
	open list:DRM DRIVERS

On Wed, Aug 20, 2025 at 04:15:47PM -0500, Lucas De Marchi wrote:
> On Wed, Aug 20, 2025 at 08:16:11PM +0000, Carlos Llamas wrote:
> > Commit b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
> > introduced a call to basename(). The GNU version of this function is not
> > portable and fails to build with alternative libc implementations like
> > musl or bionic. This causes the following build error:
> > 
> >  drivers/gpu/drm/xe/xe_gen_wa_oob.c:130:12: error: assignment to ‘const char *’ from ‘int’ makes pointer from integer without a cast [-Wint-conversion]
> >    130 |         fn = basename(fn);
> >        |            ^
> > 
> > While a POSIX version of basename() could be used, it would require a
> > separate header plus the behavior differs from GNU version in that it
> > might modify its argument. Not great.
> > 
> > Instead replace basename() with a strrchr() based implementation which
> > provides the same functionality and avoid portability issues.
> > 
> > Fixes: b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
> > Signed-off-by: Carlos Llamas <cmllamas@google.com>
> > ---
> > drivers/gpu/drm/xe/xe_gen_wa_oob.c | 4 +++-
> > 1 file changed, 3 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/gpu/drm/xe/xe_gen_wa_oob.c b/drivers/gpu/drm/xe/xe_gen_wa_oob.c
> > index 6581cb0f0e59..0a94a045bcea 100644
> > --- a/drivers/gpu/drm/xe/xe_gen_wa_oob.c
> > +++ b/drivers/gpu/drm/xe/xe_gen_wa_oob.c
> > @@ -125,9 +125,11 @@ static int parse(FILE *input, FILE *csource, FILE *cheader, char *prefix)
> > 
> > static int fn_to_prefix(const char *fn, char *prefix, size_t size)
> > {
> > +	const char *base;
> > 	size_t len;
> > 
> > -	fn = basename(fn);
> > +	base = strrchr(fn, '/');
> > +	fn = base ? base + 1 : fn;
> 
> I think just a xbasename() helper like we've added in kmod would be
> preferred:
> https://github.com/kmod-project/kmod/commit/11eb9bc67c319900ab00523997323a97d2d08ad2
> 
> Alternativelly add it somewhere that can be shared across the userspace
> tools in the kernel tree to fix the mess that we have here:
> 
> 	git grep basename -- tools/**.c
> 

This sounds like a nice idea. However, there is no "centralized" shared
includes/ across the userspace tools that I'm aware of?

> Some dup the arg simply to be able to use the libgen.h version, some use
> one or the other on purpose, etc etc.
> 

Yeah, and I can force the POSIX version if you prefer. I just personally
think the strrchr() alternative ends up being simpler.

--
Carlos Llamas

^ permalink raw reply	[flat|nested] 20+ messages in thread

* ✓ CI.KUnit: success for drm/xe: replace basename() with portable strrchr()
  2025-08-20 20:16 [PATCH] drm/xe: replace basename() with portable strrchr() Carlos Llamas
  2025-08-20 21:15 ` Lucas De Marchi
  2025-08-20 21:18 ` [PATCH] drm/xe: replace basename() with portable strrchr() Tiffany Yang
@ 2025-08-21 13:14 ` Patchwork
  2025-08-21 13:58 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-08-21 13:14 UTC (permalink / raw)
  To: Carlos Llamas; +Cc: intel-xe

== Series Details ==

Series: drm/xe: replace basename() with portable strrchr()
URL   : https://patchwork.freedesktop.org/series/153291/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[13:12:57] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:13:01] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:13:31] Starting KUnit Kernel (1/1)...
[13:13:31] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:13:31] ================== guc_buf (11 subtests) ===================
[13:13:31] [PASSED] test_smallest
[13:13:31] [PASSED] test_largest
[13:13:31] [PASSED] test_granular
[13:13:31] [PASSED] test_unique
[13:13:31] [PASSED] test_overlap
[13:13:31] [PASSED] test_reusable
[13:13:31] [PASSED] test_too_big
[13:13:31] [PASSED] test_flush
[13:13:31] [PASSED] test_lookup
[13:13:31] [PASSED] test_data
[13:13:31] [PASSED] test_class
[13:13:31] ===================== [PASSED] guc_buf =====================
[13:13:31] =================== guc_dbm (7 subtests) ===================
[13:13:31] [PASSED] test_empty
[13:13:31] [PASSED] test_default
[13:13:31] ======================== test_size  ========================
[13:13:31] [PASSED] 4
[13:13:31] [PASSED] 8
[13:13:31] [PASSED] 32
[13:13:31] [PASSED] 256
[13:13:31] ==================== [PASSED] test_size ====================
[13:13:31] ======================= test_reuse  ========================
[13:13:31] [PASSED] 4
[13:13:31] [PASSED] 8
[13:13:31] [PASSED] 32
[13:13:31] [PASSED] 256
[13:13:31] =================== [PASSED] test_reuse ====================
[13:13:31] =================== test_range_overlap  ====================
[13:13:31] [PASSED] 4
[13:13:31] [PASSED] 8
[13:13:31] [PASSED] 32
[13:13:31] [PASSED] 256
[13:13:31] =============== [PASSED] test_range_overlap ================
[13:13:31] =================== test_range_compact  ====================
[13:13:31] [PASSED] 4
[13:13:31] [PASSED] 8
[13:13:31] [PASSED] 32
[13:13:31] [PASSED] 256
[13:13:31] =============== [PASSED] test_range_compact ================
[13:13:31] ==================== test_range_spare  =====================
[13:13:31] [PASSED] 4
[13:13:31] [PASSED] 8
[13:13:31] [PASSED] 32
[13:13:31] [PASSED] 256
[13:13:31] ================ [PASSED] test_range_spare =================
[13:13:31] ===================== [PASSED] guc_dbm =====================
[13:13:31] =================== guc_idm (6 subtests) ===================
[13:13:31] [PASSED] bad_init
[13:13:31] [PASSED] no_init
[13:13:31] [PASSED] init_fini
[13:13:31] [PASSED] check_used
[13:13:31] [PASSED] check_quota
[13:13:31] [PASSED] check_all
[13:13:31] ===================== [PASSED] guc_idm =====================
[13:13:31] ================== no_relay (3 subtests) ===================
[13:13:31] [PASSED] xe_drops_guc2pf_if_not_ready
[13:13:31] [PASSED] xe_drops_guc2vf_if_not_ready
[13:13:31] [PASSED] xe_rejects_send_if_not_ready
[13:13:31] ==================== [PASSED] no_relay =====================
[13:13:31] ================== pf_relay (14 subtests) ==================
[13:13:31] [PASSED] pf_rejects_guc2pf_too_short
[13:13:31] [PASSED] pf_rejects_guc2pf_too_long
[13:13:31] [PASSED] pf_rejects_guc2pf_no_payload
[13:13:31] [PASSED] pf_fails_no_payload
[13:13:31] [PASSED] pf_fails_bad_origin
[13:13:31] [PASSED] pf_fails_bad_type
[13:13:31] [PASSED] pf_txn_reports_error
[13:13:31] [PASSED] pf_txn_sends_pf2guc
[13:13:31] [PASSED] pf_sends_pf2guc
[13:13:31] [SKIPPED] pf_loopback_nop
[13:13:31] [SKIPPED] pf_loopback_echo
[13:13:31] [SKIPPED] pf_loopback_fail
[13:13:31] [SKIPPED] pf_loopback_busy
[13:13:31] [SKIPPED] pf_loopback_retry
[13:13:31] ==================== [PASSED] pf_relay =====================
[13:13:31] ================== vf_relay (3 subtests) ===================
[13:13:31] [PASSED] vf_rejects_guc2vf_too_short
[13:13:31] [PASSED] vf_rejects_guc2vf_too_long
[13:13:31] [PASSED] vf_rejects_guc2vf_no_payload
[13:13:31] ==================== [PASSED] vf_relay =====================
[13:13:31] ===================== lmtt (1 subtest) =====================
[13:13:31] ======================== test_ops  =========================
[13:13:31] [PASSED] 2-level
[13:13:31] [PASSED] multi-level
[13:13:31] ==================== [PASSED] test_ops =====================
[13:13:31] ====================== [PASSED] lmtt =======================
[13:13:31] ================= pf_service (11 subtests) =================
[13:13:31] [PASSED] pf_negotiate_any
[13:13:31] [PASSED] pf_negotiate_base_match
[13:13:31] [PASSED] pf_negotiate_base_newer
[13:13:31] [PASSED] pf_negotiate_base_next
[13:13:31] [SKIPPED] pf_negotiate_base_older
[13:13:31] [PASSED] pf_negotiate_base_prev
[13:13:31] [PASSED] pf_negotiate_latest_match
[13:13:31] [PASSED] pf_negotiate_latest_newer
[13:13:31] [PASSED] pf_negotiate_latest_next
[13:13:31] [SKIPPED] pf_negotiate_latest_older
[13:13:31] [SKIPPED] pf_negotiate_latest_prev
[13:13:31] =================== [PASSED] pf_service ====================
[13:13:31] =================== xe_mocs (2 subtests) ===================
[13:13:31] ================ xe_live_mocs_kernel_kunit  ================
[13:13:31] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[13:13:31] ================ xe_live_mocs_reset_kunit  =================
[13:13:31] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[13:13:31] ==================== [SKIPPED] xe_mocs =====================
[13:13:31] ================= xe_migrate (2 subtests) ==================
[13:13:31] ================= xe_migrate_sanity_kunit  =================
[13:13:31] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[13:13:31] ================== xe_validate_ccs_kunit  ==================
[13:13:31] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[13:13:31] =================== [SKIPPED] xe_migrate ===================
[13:13:31] ================== xe_dma_buf (1 subtest) ==================
[13:13:31] ==================== xe_dma_buf_kunit  =====================
[13:13:31] ================ [SKIPPED] xe_dma_buf_kunit ================
[13:13:31] =================== [SKIPPED] xe_dma_buf ===================
[13:13:31] ================= xe_bo_shrink (1 subtest) =================
[13:13:31] =================== xe_bo_shrink_kunit  ====================
[13:13:31] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[13:13:31] ================== [SKIPPED] xe_bo_shrink ==================
[13:13:31] ==================== xe_bo (2 subtests) ====================
[13:13:31] ================== xe_ccs_migrate_kunit  ===================
[13:13:31] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[13:13:31] ==================== xe_bo_evict_kunit  ====================
[13:13:31] =============== [SKIPPED] xe_bo_evict_kunit ================
[13:13:31] ===================== [SKIPPED] xe_bo ======================
[13:13:31] ==================== args (11 subtests) ====================
[13:13:31] [PASSED] count_args_test
[13:13:31] [PASSED] call_args_example
[13:13:31] [PASSED] call_args_test
[13:13:31] [PASSED] drop_first_arg_example
[13:13:31] [PASSED] drop_first_arg_test
[13:13:31] [PASSED] first_arg_example
[13:13:31] [PASSED] first_arg_test
[13:13:31] [PASSED] last_arg_example
[13:13:31] [PASSED] last_arg_test
[13:13:31] [PASSED] pick_arg_example
[13:13:31] [PASSED] sep_comma_example
[13:13:31] ====================== [PASSED] args =======================
[13:13:31] =================== xe_pci (3 subtests) ====================
[13:13:31] ==================== check_graphics_ip  ====================
[13:13:31] [PASSED] 12.70 Xe_LPG
[13:13:31] [PASSED] 12.71 Xe_LPG
[13:13:31] [PASSED] 12.74 Xe_LPG+
[13:13:31] [PASSED] 20.01 Xe2_HPG
[13:13:31] [PASSED] 20.02 Xe2_HPG
[13:13:31] [PASSED] 20.04 Xe2_LPG
[13:13:31] [PASSED] 30.00 Xe3_LPG
[13:13:31] [PASSED] 30.01 Xe3_LPG
[13:13:31] [PASSED] 30.03 Xe3_LPG
[13:13:31] ================ [PASSED] check_graphics_ip ================
[13:13:31] ===================== check_media_ip  ======================
[13:13:31] [PASSED] 13.00 Xe_LPM+
[13:13:31] [PASSED] 13.01 Xe2_HPM
[13:13:31] [PASSED] 20.00 Xe2_LPM
[13:13:31] [PASSED] 30.00 Xe3_LPM
[13:13:31] [PASSED] 30.02 Xe3_LPM
[13:13:31] ================= [PASSED] check_media_ip ==================
[13:13:31] ================= check_platform_gt_count  =================
[13:13:31] [PASSED] 0x9A60 (TIGERLAKE)
[13:13:31] [PASSED] 0x9A68 (TIGERLAKE)
[13:13:31] [PASSED] 0x9A70 (TIGERLAKE)
[13:13:31] [PASSED] 0x9A40 (TIGERLAKE)
[13:13:31] [PASSED] 0x9A49 (TIGERLAKE)
[13:13:31] [PASSED] 0x9A59 (TIGERLAKE)
[13:13:31] [PASSED] 0x9A78 (TIGERLAKE)
[13:13:31] [PASSED] 0x9AC0 (TIGERLAKE)
[13:13:31] [PASSED] 0x9AC9 (TIGERLAKE)
[13:13:31] [PASSED] 0x9AD9 (TIGERLAKE)
[13:13:31] [PASSED] 0x9AF8 (TIGERLAKE)
[13:13:31] [PASSED] 0x4C80 (ROCKETLAKE)
[13:13:31] [PASSED] 0x4C8A (ROCKETLAKE)
[13:13:31] [PASSED] 0x4C8B (ROCKETLAKE)
[13:13:31] [PASSED] 0x4C8C (ROCKETLAKE)
[13:13:31] [PASSED] 0x4C90 (ROCKETLAKE)
[13:13:31] [PASSED] 0x4C9A (ROCKETLAKE)
[13:13:31] [PASSED] 0x4680 (ALDERLAKE_S)
[13:13:31] [PASSED] 0x4682 (ALDERLAKE_S)
[13:13:31] [PASSED] 0x4688 (ALDERLAKE_S)
[13:13:31] [PASSED] 0x468A (ALDERLAKE_S)
[13:13:31] [PASSED] 0x468B (ALDERLAKE_S)
[13:13:31] [PASSED] 0x4690 (ALDERLAKE_S)
[13:13:31] [PASSED] 0x4692 (ALDERLAKE_S)
[13:13:31] [PASSED] 0x4693 (ALDERLAKE_S)
[13:13:31] [PASSED] 0x46A0 (ALDERLAKE_P)
[13:13:31] [PASSED] 0x46A1 (ALDERLAKE_P)
[13:13:31] [PASSED] 0x46A2 (ALDERLAKE_P)
[13:13:31] [PASSED] 0x46A3 (ALDERLAKE_P)
[13:13:31] [PASSED] 0x46A6 (ALDERLAKE_P)
[13:13:31] [PASSED] 0x46A8 (ALDERLAKE_P)
[13:13:31] [PASSED] 0x46AA (ALDERLAKE_P)
[13:13:31] [PASSED] 0x462A (ALDERLAKE_P)
[13:13:31] [PASSED] 0x4626 (ALDERLAKE_P)
[13:13:31] [PASSED] 0x4628 (ALDERLAKE_P)
[13:13:31] [PASSED] 0x46B0 (ALDERLAKE_P)
[13:13:31] [PASSED] 0x46B1 (ALDERLAKE_P)
[13:13:31] [PASSED] 0x46B2 (ALDERLAKE_P)
[13:13:31] [PASSED] 0x46B3 (ALDERLAKE_P)
[13:13:31] [PASSED] 0x46C0 (ALDERLAKE_P)
[13:13:31] [PASSED] 0x46C1 (ALDERLAKE_P)
[13:13:31] [PASSED] 0x46C2 (ALDERLAKE_P)
[13:13:31] [PASSED] 0x46C3 (ALDERLAKE_P)
[13:13:31] [PASSED] 0x46D0 (ALDERLAKE_N)
[13:13:31] [PASSED] 0x46D1 (ALDERLAKE_N)
[13:13:31] [PASSED] 0x46D2 (ALDERLAKE_N)
[13:13:31] [PASSED] 0x46D3 (ALDERLAKE_N)
[13:13:31] [PASSED] 0x46D4 (ALDERLAKE_N)
[13:13:31] [PASSED] 0xA721 (ALDERLAKE_P)
[13:13:31] [PASSED] 0xA7A1 (ALDERLAKE_P)
[13:13:31] [PASSED] 0xA7A9 (ALDERLAKE_P)
[13:13:31] [PASSED] 0xA7AC (ALDERLAKE_P)
[13:13:31] [PASSED] 0xA7AD (ALDERLAKE_P)
[13:13:31] [PASSED] 0xA720 (ALDERLAKE_P)
[13:13:31] [PASSED] 0xA7A0 (ALDERLAKE_P)
[13:13:31] [PASSED] 0xA7A8 (ALDERLAKE_P)
[13:13:31] [PASSED] 0xA7AA (ALDERLAKE_P)
[13:13:31] [PASSED] 0xA7AB (ALDERLAKE_P)
[13:13:31] [PASSED] 0xA780 (ALDERLAKE_S)
[13:13:31] [PASSED] 0xA781 (ALDERLAKE_S)
[13:13:31] [PASSED] 0xA782 (ALDERLAKE_S)
[13:13:31] [PASSED] 0xA783 (ALDERLAKE_S)
[13:13:31] [PASSED] 0xA788 (ALDERLAKE_S)
[13:13:31] [PASSED] 0xA789 (ALDERLAKE_S)
[13:13:31] [PASSED] 0xA78A (ALDERLAKE_S)
[13:13:31] [PASSED] 0xA78B (ALDERLAKE_S)
[13:13:31] [PASSED] 0x4905 (DG1)
[13:13:31] [PASSED] 0x4906 (DG1)
[13:13:31] [PASSED] 0x4907 (DG1)
[13:13:31] [PASSED] 0x4908 (DG1)
[13:13:31] [PASSED] 0x4909 (DG1)
[13:13:31] [PASSED] 0x56C0 (DG2)
[13:13:31] [PASSED] 0x56C2 (DG2)
[13:13:31] [PASSED] 0x56C1 (DG2)
[13:13:31] [PASSED] 0x7D51 (METEORLAKE)
[13:13:31] [PASSED] 0x7DD1 (METEORLAKE)
[13:13:31] [PASSED] 0x7D41 (METEORLAKE)
[13:13:31] [PASSED] 0x7D67 (METEORLAKE)
[13:13:31] [PASSED] 0xB640 (METEORLAKE)
[13:13:31] [PASSED] 0x56A0 (DG2)
[13:13:31] [PASSED] 0x56A1 (DG2)
[13:13:31] [PASSED] 0x56A2 (DG2)
[13:13:31] [PASSED] 0x56BE (DG2)
[13:13:31] [PASSED] 0x56BF (DG2)
[13:13:31] [PASSED] 0x5690 (DG2)
[13:13:31] [PASSED] 0x5691 (DG2)
[13:13:31] [PASSED] 0x5692 (DG2)
[13:13:31] [PASSED] 0x56A5 (DG2)
[13:13:31] [PASSED] 0x56A6 (DG2)
[13:13:31] [PASSED] 0x56B0 (DG2)
[13:13:31] [PASSED] 0x56B1 (DG2)
[13:13:31] [PASSED] 0x56BA (DG2)
[13:13:31] [PASSED] 0x56BB (DG2)
[13:13:31] [PASSED] 0x56BC (DG2)
[13:13:31] [PASSED] 0x56BD (DG2)
[13:13:31] [PASSED] 0x5693 (DG2)
[13:13:31] [PASSED] 0x5694 (DG2)
[13:13:31] [PASSED] 0x5695 (DG2)
[13:13:31] [PASSED] 0x56A3 (DG2)
[13:13:31] [PASSED] 0x56A4 (DG2)
[13:13:31] [PASSED] 0x56B2 (DG2)
[13:13:31] [PASSED] 0x56B3 (DG2)
[13:13:31] [PASSED] 0x5696 (DG2)
[13:13:31] [PASSED] 0x5697 (DG2)
[13:13:31] [PASSED] 0xB69 (PVC)
[13:13:31] [PASSED] 0xB6E (PVC)
[13:13:31] [PASSED] 0xBD4 (PVC)
[13:13:31] [PASSED] 0xBD5 (PVC)
[13:13:31] [PASSED] 0xBD6 (PVC)
[13:13:31] [PASSED] 0xBD7 (PVC)
[13:13:31] [PASSED] 0xBD8 (PVC)
[13:13:31] [PASSED] 0xBD9 (PVC)
[13:13:31] [PASSED] 0xBDA (PVC)
[13:13:31] [PASSED] 0xBDB (PVC)
[13:13:31] [PASSED] 0xBE0 (PVC)
[13:13:31] [PASSED] 0xBE1 (PVC)
[13:13:31] [PASSED] 0xBE5 (PVC)
[13:13:31] [PASSED] 0x7D40 (METEORLAKE)
[13:13:31] [PASSED] 0x7D45 (METEORLAKE)
[13:13:31] [PASSED] 0x7D55 (METEORLAKE)
[13:13:31] [PASSED] 0x7D60 (METEORLAKE)
[13:13:31] [PASSED] 0x7DD5 (METEORLAKE)
[13:13:31] [PASSED] 0x6420 (LUNARLAKE)
[13:13:31] [PASSED] 0x64A0 (LUNARLAKE)
[13:13:31] [PASSED] 0x64B0 (LUNARLAKE)
[13:13:31] [PASSED] 0xE202 (BATTLEMAGE)
[13:13:31] [PASSED] 0xE209 (BATTLEMAGE)
[13:13:31] [PASSED] 0xE20B (BATTLEMAGE)
[13:13:31] [PASSED] 0xE20C (BATTLEMAGE)
[13:13:31] [PASSED] 0xE20D (BATTLEMAGE)
[13:13:31] [PASSED] 0xE210 (BATTLEMAGE)
[13:13:31] [PASSED] 0xE211 (BATTLEMAGE)
[13:13:31] [PASSED] 0xE212 (BATTLEMAGE)
[13:13:31] [PASSED] 0xE216 (BATTLEMAGE)
[13:13:31] [PASSED] 0xE220 (BATTLEMAGE)
[13:13:31] [PASSED] 0xE221 (BATTLEMAGE)
[13:13:31] [PASSED] 0xE222 (BATTLEMAGE)
[13:13:31] [PASSED] 0xE223 (BATTLEMAGE)
[13:13:31] [PASSED] 0xB080 (PANTHERLAKE)
[13:13:31] [PASSED] 0xB081 (PANTHERLAKE)
[13:13:31] [PASSED] 0xB082 (PANTHERLAKE)
[13:13:31] [PASSED] 0xB083 (PANTHERLAKE)
[13:13:31] [PASSED] 0xB084 (PANTHERLAKE)
[13:13:31] [PASSED] 0xB085 (PANTHERLAKE)
[13:13:31] [PASSED] 0xB086 (PANTHERLAKE)
[13:13:31] [PASSED] 0xB087 (PANTHERLAKE)
[13:13:31] [PASSED] 0xB08F (PANTHERLAKE)
[13:13:31] [PASSED] 0xB090 (PANTHERLAKE)
[13:13:31] [PASSED] 0xB0A0 (PANTHERLAKE)
[13:13:31] [PASSED] 0xB0B0 (PANTHERLAKE)
[13:13:31] [PASSED] 0xFD80 (PANTHERLAKE)
[13:13:31] [PASSED] 0xFD81 (PANTHERLAKE)
[13:13:31] ============= [PASSED] check_platform_gt_count =============
[13:13:31] ===================== [PASSED] xe_pci ======================
[13:13:31] =================== xe_rtp (2 subtests) ====================
[13:13:31] =============== xe_rtp_process_to_sr_tests  ================
[13:13:31] [PASSED] coalesce-same-reg
[13:13:31] [PASSED] no-match-no-add
[13:13:31] [PASSED] match-or
[13:13:31] [PASSED] match-or-xfail
[13:13:31] [PASSED] no-match-no-add-multiple-rules
[13:13:31] [PASSED] two-regs-two-entries
[13:13:31] [PASSED] clr-one-set-other
[13:13:31] [PASSED] set-field
[13:13:31] [PASSED] conflict-duplicate
[13:13:31] [PASSED] conflict-not-disjoint
[13:13:31] [PASSED] conflict-reg-type
[13:13:31] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[13:13:31] ================== xe_rtp_process_tests  ===================
[13:13:31] [PASSED] active1
[13:13:31] [PASSED] active2
[13:13:31] [PASSED] active-inactive
[13:13:31] [PASSED] inactive-active
[13:13:31] [PASSED] inactive-1st_or_active-inactive
[13:13:31] [PASSED] inactive-2nd_or_active-inactive
[13:13:31] [PASSED] inactive-last_or_active-inactive
[13:13:31] [PASSED] inactive-no_or_active-inactive
[13:13:31] ============== [PASSED] xe_rtp_process_tests ===============
[13:13:31] ===================== [PASSED] xe_rtp ======================
[13:13:31] ==================== xe_wa (1 subtest) =====================
[13:13:31] ======================== xe_wa_gt  =========================
[13:13:31] [PASSED] TIGERLAKE (B0)
[13:13:31] [PASSED] DG1 (A0)
[13:13:31] [PASSED] DG1 (B0)
[13:13:31] [PASSED] ALDERLAKE_S (A0)
[13:13:31] [PASSED] ALDERLAKE_S (B0)
[13:13:31] [PASSED] ALDERLAKE_S (C0)
[13:13:31] [PASSED] ALDERLAKE_S (D0)
[13:13:31] [PASSED] ALDERLAKE_P (A0)
[13:13:31] [PASSED] ALDERLAKE_P (B0)
[13:13:31] [PASSED] ALDERLAKE_P (C0)
[13:13:31] [PASSED] ALDERLAKE_S_RPLS (D0)
[13:13:31] [PASSED] ALDERLAKE_P_RPLU (E0)
[13:13:31] [PASSED] DG2_G10 (C0)
[13:13:31] [PASSED] DG2_G11 (B1)
[13:13:31] [PASSED] DG2_G12 (A1)
[13:13:31] [PASSED] METEORLAKE (g:A0, m:A0)
[13:13:31] [PASSED] METEORLAKE (g:A0, m:A0)
[13:13:31] [PASSED] METEORLAKE (g:A0, m:A0)
[13:13:31] [PASSED] LUNARLAKE (g:A0, m:A0)
[13:13:31] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[13:13:31] [PASSED] BATTLEMAGE (g:A0, m:A1)
[13:13:31] ==================== [PASSED] xe_wa_gt =====================
[13:13:31] ====================== [PASSED] xe_wa ======================
[13:13:31] ============================================================
[13:13:31] Testing complete. Ran 297 tests: passed: 281, skipped: 16
[13:13:31] Elapsed time: 33.737s total, 4.128s configuring, 29.242s building, 0.339s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[13:13:31] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:13:33] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:13:56] Starting KUnit Kernel (1/1)...
[13:13:56] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:13:56] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[13:13:56] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[13:13:56] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[13:13:56] =========== drm_validate_clone_mode (2 subtests) ===========
[13:13:56] ============== drm_test_check_in_clone_mode  ===============
[13:13:56] [PASSED] in_clone_mode
[13:13:56] [PASSED] not_in_clone_mode
[13:13:56] ========== [PASSED] drm_test_check_in_clone_mode ===========
[13:13:56] =============== drm_test_check_valid_clones  ===============
[13:13:56] [PASSED] not_in_clone_mode
[13:13:56] [PASSED] valid_clone
[13:13:56] [PASSED] invalid_clone
[13:13:56] =========== [PASSED] drm_test_check_valid_clones ===========
[13:13:56] ============= [PASSED] drm_validate_clone_mode =============
[13:13:56] ============= drm_validate_modeset (1 subtest) =============
[13:13:56] [PASSED] drm_test_check_connector_changed_modeset
[13:13:56] ============== [PASSED] drm_validate_modeset ===============
[13:13:56] ====== drm_test_bridge_get_current_state (2 subtests) ======
[13:13:56] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[13:13:56] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[13:13:56] ======== [PASSED] drm_test_bridge_get_current_state ========
[13:13:56] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[13:13:56] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[13:13:56] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[13:13:56] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[13:13:56] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[13:13:56] ============== drm_bridge_alloc (2 subtests) ===============
[13:13:56] [PASSED] drm_test_drm_bridge_alloc_basic
[13:13:56] [PASSED] drm_test_drm_bridge_alloc_get_put
[13:13:56] ================ [PASSED] drm_bridge_alloc =================
[13:13:56] ================== drm_buddy (7 subtests) ==================
[13:13:56] [PASSED] drm_test_buddy_alloc_limit
[13:13:56] [PASSED] drm_test_buddy_alloc_optimistic
[13:13:56] [PASSED] drm_test_buddy_alloc_pessimistic
[13:13:56] [PASSED] drm_test_buddy_alloc_pathological
[13:13:56] [PASSED] drm_test_buddy_alloc_contiguous
[13:13:56] [PASSED] drm_test_buddy_alloc_clear
[13:13:56] [PASSED] drm_test_buddy_alloc_range_bias
[13:13:56] ==================== [PASSED] drm_buddy ====================
[13:13:56] ============= drm_cmdline_parser (40 subtests) =============
[13:13:56] [PASSED] drm_test_cmdline_force_d_only
[13:13:56] [PASSED] drm_test_cmdline_force_D_only_dvi
[13:13:56] [PASSED] drm_test_cmdline_force_D_only_hdmi
[13:13:56] [PASSED] drm_test_cmdline_force_D_only_not_digital
[13:13:56] [PASSED] drm_test_cmdline_force_e_only
[13:13:56] [PASSED] drm_test_cmdline_res
[13:13:56] [PASSED] drm_test_cmdline_res_vesa
[13:13:56] [PASSED] drm_test_cmdline_res_vesa_rblank
[13:13:56] [PASSED] drm_test_cmdline_res_rblank
[13:13:56] [PASSED] drm_test_cmdline_res_bpp
[13:13:56] [PASSED] drm_test_cmdline_res_refresh
[13:13:56] [PASSED] drm_test_cmdline_res_bpp_refresh
[13:13:56] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[13:13:56] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[13:13:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[13:13:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[13:13:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[13:13:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[13:13:56] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[13:13:56] [PASSED] drm_test_cmdline_res_margins_force_on
[13:13:56] [PASSED] drm_test_cmdline_res_vesa_margins
[13:13:56] [PASSED] drm_test_cmdline_name
[13:13:56] [PASSED] drm_test_cmdline_name_bpp
[13:13:56] [PASSED] drm_test_cmdline_name_option
[13:13:56] [PASSED] drm_test_cmdline_name_bpp_option
[13:13:56] [PASSED] drm_test_cmdline_rotate_0
[13:13:56] [PASSED] drm_test_cmdline_rotate_90
[13:13:56] [PASSED] drm_test_cmdline_rotate_180
[13:13:56] [PASSED] drm_test_cmdline_rotate_270
[13:13:56] [PASSED] drm_test_cmdline_hmirror
[13:13:56] [PASSED] drm_test_cmdline_vmirror
[13:13:56] [PASSED] drm_test_cmdline_margin_options
[13:13:56] [PASSED] drm_test_cmdline_multiple_options
[13:13:56] [PASSED] drm_test_cmdline_bpp_extra_and_option
[13:13:56] [PASSED] drm_test_cmdline_extra_and_option
[13:13:56] [PASSED] drm_test_cmdline_freestanding_options
[13:13:56] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[13:13:56] [PASSED] drm_test_cmdline_panel_orientation
[13:13:56] ================ drm_test_cmdline_invalid  =================
[13:13:56] [PASSED] margin_only
[13:13:56] [PASSED] interlace_only
[13:13:56] [PASSED] res_missing_x
[13:13:56] [PASSED] res_missing_y
[13:13:56] [PASSED] res_bad_y
[13:13:56] [PASSED] res_missing_y_bpp
[13:13:56] [PASSED] res_bad_bpp
[13:13:56] [PASSED] res_bad_refresh
[13:13:56] [PASSED] res_bpp_refresh_force_on_off
[13:13:56] [PASSED] res_invalid_mode
[13:13:56] [PASSED] res_bpp_wrong_place_mode
[13:13:56] [PASSED] name_bpp_refresh
[13:13:56] [PASSED] name_refresh
[13:13:56] [PASSED] name_refresh_wrong_mode
[13:13:56] [PASSED] name_refresh_invalid_mode
[13:13:56] [PASSED] rotate_multiple
[13:13:56] [PASSED] rotate_invalid_val
[13:13:56] [PASSED] rotate_truncated
[13:13:56] [PASSED] invalid_option
[13:13:56] [PASSED] invalid_tv_option
[13:13:56] [PASSED] truncated_tv_option
[13:13:56] ============ [PASSED] drm_test_cmdline_invalid =============
[13:13:56] =============== drm_test_cmdline_tv_options  ===============
[13:13:56] [PASSED] NTSC
[13:13:56] [PASSED] NTSC_443
[13:13:56] [PASSED] NTSC_J
[13:13:56] [PASSED] PAL
[13:13:56] [PASSED] PAL_M
[13:13:56] [PASSED] PAL_N
[13:13:56] [PASSED] SECAM
[13:13:56] [PASSED] MONO_525
[13:13:56] [PASSED] MONO_625
[13:13:56] =========== [PASSED] drm_test_cmdline_tv_options ===========
[13:13:56] =============== [PASSED] drm_cmdline_parser ================
[13:13:56] ========== drmm_connector_hdmi_init (20 subtests) ==========
[13:13:56] [PASSED] drm_test_connector_hdmi_init_valid
[13:13:56] [PASSED] drm_test_connector_hdmi_init_bpc_8
[13:13:56] [PASSED] drm_test_connector_hdmi_init_bpc_10
[13:13:56] [PASSED] drm_test_connector_hdmi_init_bpc_12
[13:13:56] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[13:13:56] [PASSED] drm_test_connector_hdmi_init_bpc_null
[13:13:56] [PASSED] drm_test_connector_hdmi_init_formats_empty
[13:13:56] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[13:13:56] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[13:13:56] [PASSED] supported_formats=0x9 yuv420_allowed=1
[13:13:56] [PASSED] supported_formats=0x9 yuv420_allowed=0
[13:13:56] [PASSED] supported_formats=0x3 yuv420_allowed=1
[13:13:56] [PASSED] supported_formats=0x3 yuv420_allowed=0
[13:13:56] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:13:56] [PASSED] drm_test_connector_hdmi_init_null_ddc
[13:13:56] [PASSED] drm_test_connector_hdmi_init_null_product
[13:13:56] [PASSED] drm_test_connector_hdmi_init_null_vendor
[13:13:56] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[13:13:56] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[13:13:56] [PASSED] drm_test_connector_hdmi_init_product_valid
[13:13:56] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[13:13:56] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[13:13:56] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[13:13:56] ========= drm_test_connector_hdmi_init_type_valid  =========
[13:13:56] [PASSED] HDMI-A
[13:13:56] [PASSED] HDMI-B
[13:13:56] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[13:13:56] ======== drm_test_connector_hdmi_init_type_invalid  ========
[13:13:56] [PASSED] Unknown
[13:13:56] [PASSED] VGA
[13:13:56] [PASSED] DVI-I
[13:13:56] [PASSED] DVI-D
[13:13:56] [PASSED] DVI-A
[13:13:56] [PASSED] Composite
[13:13:56] [PASSED] SVIDEO
[13:13:56] [PASSED] LVDS
[13:13:56] [PASSED] Component
[13:13:56] [PASSED] DIN
[13:13:56] [PASSED] DP
[13:13:56] [PASSED] TV
[13:13:56] [PASSED] eDP
[13:13:56] [PASSED] Virtual
[13:13:56] [PASSED] DSI
[13:13:56] [PASSED] DPI
[13:13:56] [PASSED] Writeback
[13:13:56] [PASSED] SPI
[13:13:56] [PASSED] USB
[13:13:56] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[13:13:56] ============ [PASSED] drmm_connector_hdmi_init =============
[13:13:56] ============= drmm_connector_init (3 subtests) =============
[13:13:56] [PASSED] drm_test_drmm_connector_init
[13:13:56] [PASSED] drm_test_drmm_connector_init_null_ddc
[13:13:56] ========= drm_test_drmm_connector_init_type_valid  =========
[13:13:56] [PASSED] Unknown
[13:13:56] [PASSED] VGA
[13:13:56] [PASSED] DVI-I
[13:13:56] [PASSED] DVI-D
[13:13:56] [PASSED] DVI-A
[13:13:56] [PASSED] Composite
[13:13:56] [PASSED] SVIDEO
[13:13:56] [PASSED] LVDS
[13:13:56] [PASSED] Component
[13:13:56] [PASSED] DIN
[13:13:56] [PASSED] DP
[13:13:56] [PASSED] HDMI-A
[13:13:56] [PASSED] HDMI-B
[13:13:56] [PASSED] TV
[13:13:56] [PASSED] eDP
[13:13:56] [PASSED] Virtual
[13:13:56] [PASSED] DSI
[13:13:56] [PASSED] DPI
[13:13:56] [PASSED] Writeback
[13:13:56] [PASSED] SPI
[13:13:56] [PASSED] USB
[13:13:56] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[13:13:56] =============== [PASSED] drmm_connector_init ===============
[13:13:56] ========= drm_connector_dynamic_init (6 subtests) ==========
[13:13:56] [PASSED] drm_test_drm_connector_dynamic_init
[13:13:56] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[13:13:56] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[13:13:56] [PASSED] drm_test_drm_connector_dynamic_init_properties
[13:13:56] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[13:13:56] [PASSED] Unknown
[13:13:56] [PASSED] VGA
[13:13:56] [PASSED] DVI-I
[13:13:56] [PASSED] DVI-D
[13:13:56] [PASSED] DVI-A
[13:13:56] [PASSED] Composite
[13:13:56] [PASSED] SVIDEO
[13:13:56] [PASSED] LVDS
[13:13:56] [PASSED] Component
[13:13:56] [PASSED] DIN
[13:13:56] [PASSED] DP
[13:13:56] [PASSED] HDMI-A
[13:13:56] [PASSED] HDMI-B
[13:13:56] [PASSED] TV
[13:13:56] [PASSED] eDP
[13:13:56] [PASSED] Virtual
[13:13:56] [PASSED] DSI
[13:13:56] [PASSED] DPI
[13:13:56] [PASSED] Writeback
[13:13:56] [PASSED] SPI
[13:13:56] [PASSED] USB
[13:13:56] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[13:13:56] ======== drm_test_drm_connector_dynamic_init_name  =========
[13:13:56] [PASSED] Unknown
[13:13:56] [PASSED] VGA
[13:13:56] [PASSED] DVI-I
[13:13:56] [PASSED] DVI-D
[13:13:56] [PASSED] DVI-A
[13:13:56] [PASSED] Composite
[13:13:56] [PASSED] SVIDEO
[13:13:56] [PASSED] LVDS
[13:13:56] [PASSED] Component
[13:13:56] [PASSED] DIN
[13:13:56] [PASSED] DP
[13:13:56] [PASSED] HDMI-A
[13:13:56] [PASSED] HDMI-B
[13:13:56] [PASSED] TV
[13:13:56] [PASSED] eDP
[13:13:56] [PASSED] Virtual
[13:13:56] [PASSED] DSI
[13:13:56] [PASSED] DPI
[13:13:56] [PASSED] Writeback
[13:13:56] [PASSED] SPI
[13:13:56] [PASSED] USB
[13:13:56] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[13:13:56] =========== [PASSED] drm_connector_dynamic_init ============
[13:13:56] ==== drm_connector_dynamic_register_early (4 subtests) =====
[13:13:56] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[13:13:56] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[13:13:56] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[13:13:56] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[13:13:56] ====== [PASSED] drm_connector_dynamic_register_early =======
[13:13:56] ======= drm_connector_dynamic_register (7 subtests) ========
[13:13:56] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[13:13:56] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[13:13:56] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[13:13:56] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[13:13:56] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[13:13:56] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[13:13:56] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[13:13:56] ========= [PASSED] drm_connector_dynamic_register ==========
[13:13:56] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[13:13:56] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[13:13:56] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[13:13:56] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[13:13:56] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[13:13:56] ========== drm_test_get_tv_mode_from_name_valid  ===========
[13:13:56] [PASSED] NTSC
[13:13:56] [PASSED] NTSC-443
[13:13:56] [PASSED] NTSC-J
[13:13:56] [PASSED] PAL
[13:13:56] [PASSED] PAL-M
[13:13:56] [PASSED] PAL-N
[13:13:56] [PASSED] SECAM
[13:13:56] [PASSED] Mono
[13:13:56] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[13:13:56] [PASSED] drm_test_get_tv_mode_from_name_truncated
[13:13:56] ============ [PASSED] drm_get_tv_mode_from_name ============
[13:13:56] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[13:13:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[13:13:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[13:13:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[13:13:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[13:13:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[13:13:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[13:13:56] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[13:13:56] [PASSED] VIC 96
[13:13:56] [PASSED] VIC 97
[13:13:56] [PASSED] VIC 101
[13:13:56] [PASSED] VIC 102
[13:13:56] [PASSED] VIC 106
[13:13:56] [PASSED] VIC 107
[13:13:56] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[13:13:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[13:13:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[13:13:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[13:13:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[13:13:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[13:13:56] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[13:13:56] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[13:13:56] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[13:13:56] [PASSED] Automatic
[13:13:56] [PASSED] Full
[13:13:56] [PASSED] Limited 16:235
[13:13:56] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[13:13:56] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[13:13:56] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[13:13:56] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[13:13:56] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[13:13:56] [PASSED] RGB
[13:13:56] [PASSED] YUV 4:2:0
[13:13:56] [PASSED] YUV 4:2:2
[13:13:56] [PASSED] YUV 4:4:4
[13:13:56] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[13:13:56] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[13:13:56] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[13:13:56] ============= drm_damage_helper (21 subtests) ==============
[13:13:56] [PASSED] drm_test_damage_iter_no_damage
[13:13:56] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[13:13:56] [PASSED] drm_test_damage_iter_no_damage_src_moved
[13:13:56] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[13:13:56] [PASSED] drm_test_damage_iter_no_damage_not_visible
[13:13:56] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[13:13:56] [PASSED] drm_test_damage_iter_no_damage_no_fb
[13:13:56] [PASSED] drm_test_damage_iter_simple_damage
[13:13:56] [PASSED] drm_test_damage_iter_single_damage
[13:13:56] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[13:13:56] [PASSED] drm_test_damage_iter_single_damage_outside_src
[13:13:56] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[13:13:56] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[13:13:56] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[13:13:56] [PASSED] drm_test_damage_iter_single_damage_src_moved
[13:13:56] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[13:13:56] [PASSED] drm_test_damage_iter_damage
[13:13:56] [PASSED] drm_test_damage_iter_damage_one_intersect
[13:13:56] [PASSED] drm_test_damage_iter_damage_one_outside
[13:13:56] [PASSED] drm_test_damage_iter_damage_src_moved
[13:13:56] [PASSED] drm_test_damage_iter_damage_not_visible
[13:13:56] ================ [PASSED] drm_damage_helper ================
[13:13:56] ============== drm_dp_mst_helper (3 subtests) ==============
[13:13:56] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[13:13:56] [PASSED] Clock 154000 BPP 30 DSC disabled
[13:13:56] [PASSED] Clock 234000 BPP 30 DSC disabled
[13:13:56] [PASSED] Clock 297000 BPP 24 DSC disabled
[13:13:56] [PASSED] Clock 332880 BPP 24 DSC enabled
[13:13:56] [PASSED] Clock 324540 BPP 24 DSC enabled
[13:13:56] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[13:13:56] ============== drm_test_dp_mst_calc_pbn_div  ===============
[13:13:56] [PASSED] Link rate 2000000 lane count 4
[13:13:56] [PASSED] Link rate 2000000 lane count 2
[13:13:56] [PASSED] Link rate 2000000 lane count 1
[13:13:56] [PASSED] Link rate 1350000 lane count 4
[13:13:56] [PASSED] Link rate 1350000 lane count 2
[13:13:56] [PASSED] Link rate 1350000 lane count 1
[13:13:56] [PASSED] Link rate 1000000 lane count 4
[13:13:56] [PASSED] Link rate 1000000 lane count 2
[13:13:56] [PASSED] Link rate 1000000 lane count 1
[13:13:56] [PASSED] Link rate 810000 lane count 4
[13:13:56] [PASSED] Link rate 810000 lane count 2
[13:13:56] [PASSED] Link rate 810000 lane count 1
[13:13:56] [PASSED] Link rate 540000 lane count 4
[13:13:56] [PASSED] Link rate 540000 lane count 2
[13:13:56] [PASSED] Link rate 540000 lane count 1
[13:13:56] [PASSED] Link rate 270000 lane count 4
[13:13:56] [PASSED] Link rate 270000 lane count 2
[13:13:56] [PASSED] Link rate 270000 lane count 1
[13:13:56] [PASSED] Link rate 162000 lane count 4
[13:13:56] [PASSED] Link rate 162000 lane count 2
[13:13:56] [PASSED] Link rate 162000 lane count 1
[13:13:56] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[13:13:56] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[13:13:56] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[13:13:56] [PASSED] DP_POWER_UP_PHY with port number
[13:13:56] [PASSED] DP_POWER_DOWN_PHY with port number
[13:13:56] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[13:13:56] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[13:13:56] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[13:13:56] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[13:13:56] [PASSED] DP_QUERY_PAYLOAD with port number
[13:13:56] [PASSED] DP_QUERY_PAYLOAD with VCPI
[13:13:56] [PASSED] DP_REMOTE_DPCD_READ with port number
[13:13:56] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[13:13:56] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[13:13:56] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[13:13:56] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[13:13:56] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[13:13:56] [PASSED] DP_REMOTE_I2C_READ with port number
[13:13:56] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[13:13:56] [PASSED] DP_REMOTE_I2C_READ with transactions array
[13:13:56] [PASSED] DP_REMOTE_I2C_WRITE with port number
[13:13:56] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[13:13:56] [PASSED] DP_REMOTE_I2C_WRITE with data array
[13:13:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[13:13:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[13:13:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[13:13:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[13:13:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[13:13:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[13:13:56] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[13:13:56] ================ [PASSED] drm_dp_mst_helper ================
[13:13:56] ================== drm_exec (7 subtests) ===================
[13:13:56] [PASSED] sanitycheck
[13:13:56] [PASSED] test_lock
[13:13:56] [PASSED] test_lock_unlock
[13:13:56] [PASSED] test_duplicates
[13:13:56] [PASSED] test_prepare
[13:13:56] [PASSED] test_prepare_array
[13:13:56] [PASSED] test_multiple_loops
[13:13:56] ==================== [PASSED] drm_exec =====================
[13:13:56] =========== drm_format_helper_test (17 subtests) ===========
[13:13:56] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[13:13:56] [PASSED] single_pixel_source_buffer
[13:13:56] [PASSED] single_pixel_clip_rectangle
[13:13:56] [PASSED] well_known_colors
[13:13:56] [PASSED] destination_pitch
[13:13:56] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[13:13:56] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[13:13:56] [PASSED] single_pixel_source_buffer
[13:13:56] [PASSED] single_pixel_clip_rectangle
[13:13:56] [PASSED] well_known_colors
[13:13:56] [PASSED] destination_pitch
[13:13:56] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[13:13:56] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[13:13:56] [PASSED] single_pixel_source_buffer
[13:13:56] [PASSED] single_pixel_clip_rectangle
[13:13:56] [PASSED] well_known_colors
[13:13:56] [PASSED] destination_pitch
[13:13:56] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[13:13:56] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[13:13:56] [PASSED] single_pixel_source_buffer
[13:13:56] [PASSED] single_pixel_clip_rectangle
[13:13:56] [PASSED] well_known_colors
[13:13:56] [PASSED] destination_pitch
[13:13:56] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[13:13:56] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[13:13:56] [PASSED] single_pixel_source_buffer
[13:13:56] [PASSED] single_pixel_clip_rectangle
[13:13:56] [PASSED] well_known_colors
[13:13:56] [PASSED] destination_pitch
[13:13:56] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[13:13:56] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[13:13:56] [PASSED] single_pixel_source_buffer
[13:13:56] [PASSED] single_pixel_clip_rectangle
[13:13:56] [PASSED] well_known_colors
[13:13:56] [PASSED] destination_pitch
[13:13:56] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[13:13:56] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[13:13:56] [PASSED] single_pixel_source_buffer
[13:13:56] [PASSED] single_pixel_clip_rectangle
[13:13:56] [PASSED] well_known_colors
[13:13:56] [PASSED] destination_pitch
[13:13:56] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[13:13:56] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[13:13:56] [PASSED] single_pixel_source_buffer
[13:13:56] [PASSED] single_pixel_clip_rectangle
[13:13:56] [PASSED] well_known_colors
[13:13:56] [PASSED] destination_pitch
[13:13:56] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[13:13:56] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[13:13:56] [PASSED] single_pixel_source_buffer
[13:13:56] [PASSED] single_pixel_clip_rectangle
[13:13:56] [PASSED] well_known_colors
[13:13:56] [PASSED] destination_pitch
[13:13:56] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[13:13:56] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[13:13:56] [PASSED] single_pixel_source_buffer
[13:13:56] [PASSED] single_pixel_clip_rectangle
[13:13:56] [PASSED] well_known_colors
[13:13:56] [PASSED] destination_pitch
[13:13:56] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[13:13:56] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[13:13:56] [PASSED] single_pixel_source_buffer
[13:13:56] [PASSED] single_pixel_clip_rectangle
[13:13:56] [PASSED] well_known_colors
[13:13:56] [PASSED] destination_pitch
[13:13:56] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[13:13:56] ============== drm_test_fb_xrgb8888_to_mono  ===============
[13:13:56] [PASSED] single_pixel_source_buffer
[13:13:56] [PASSED] single_pixel_clip_rectangle
[13:13:56] [PASSED] well_known_colors
[13:13:56] [PASSED] destination_pitch
[13:13:56] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[13:13:56] ==================== drm_test_fb_swab  =====================
[13:13:56] [PASSED] single_pixel_source_buffer
[13:13:56] [PASSED] single_pixel_clip_rectangle
[13:13:56] [PASSED] well_known_colors
[13:13:56] [PASSED] destination_pitch
[13:13:56] ================ [PASSED] drm_test_fb_swab =================
[13:13:56] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[13:13:56] [PASSED] single_pixel_source_buffer
[13:13:56] [PASSED] single_pixel_clip_rectangle
[13:13:56] [PASSED] well_known_colors
[13:13:56] [PASSED] destination_pitch
[13:13:56] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[13:13:56] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[13:13:56] [PASSED] single_pixel_source_buffer
[13:13:56] [PASSED] single_pixel_clip_rectangle
[13:13:56] [PASSED] well_known_colors
[13:13:56] [PASSED] destination_pitch
[13:13:56] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[13:13:56] ================= drm_test_fb_clip_offset  =================
[13:13:56] [PASSED] pass through
[13:13:56] [PASSED] horizontal offset
[13:13:56] [PASSED] vertical offset
[13:13:56] [PASSED] horizontal and vertical offset
[13:13:56] [PASSED] horizontal offset (custom pitch)
[13:13:56] [PASSED] vertical offset (custom pitch)
[13:13:56] [PASSED] horizontal and vertical offset (custom pitch)
[13:13:56] ============= [PASSED] drm_test_fb_clip_offset =============
[13:13:56] =================== drm_test_fb_memcpy  ====================
[13:13:56] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[13:13:56] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[13:13:56] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[13:13:56] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[13:13:56] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[13:13:56] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[13:13:56] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[13:13:56] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[13:13:56] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[13:13:56] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[13:13:56] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[13:13:56] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[13:13:56] =============== [PASSED] drm_test_fb_memcpy ================
[13:13:56] ============= [PASSED] drm_format_helper_test ==============
[13:13:56] ================= drm_format (18 subtests) =================
[13:13:56] [PASSED] drm_test_format_block_width_invalid
[13:13:56] [PASSED] drm_test_format_block_width_one_plane
[13:13:56] [PASSED] drm_test_format_block_width_two_plane
[13:13:56] [PASSED] drm_test_format_block_width_three_plane
[13:13:56] [PASSED] drm_test_format_block_width_tiled
[13:13:56] [PASSED] drm_test_format_block_height_invalid
[13:13:56] [PASSED] drm_test_format_block_height_one_plane
[13:13:56] [PASSED] drm_test_format_block_height_two_plane
[13:13:56] [PASSED] drm_test_format_block_height_three_plane
[13:13:56] [PASSED] drm_test_format_block_height_tiled
[13:13:56] [PASSED] drm_test_format_min_pitch_invalid
[13:13:56] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[13:13:56] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[13:13:56] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[13:13:56] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[13:13:56] [PASSED] drm_test_format_min_pitch_two_plane
[13:13:56] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[13:13:56] [PASSED] drm_test_format_min_pitch_tiled
[13:13:56] =================== [PASSED] drm_format ====================
[13:13:56] ============== drm_framebuffer (10 subtests) ===============
[13:13:56] ========== drm_test_framebuffer_check_src_coords  ==========
[13:13:56] [PASSED] Success: source fits into fb
[13:13:56] [PASSED] Fail: overflowing fb with x-axis coordinate
[13:13:56] [PASSED] Fail: overflowing fb with y-axis coordinate
[13:13:56] [PASSED] Fail: overflowing fb with source width
[13:13:56] [PASSED] Fail: overflowing fb with source height
[13:13:56] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[13:13:56] [PASSED] drm_test_framebuffer_cleanup
[13:13:56] =============== drm_test_framebuffer_create  ===============
[13:13:56] [PASSED] ABGR8888 normal sizes
[13:13:56] [PASSED] ABGR8888 max sizes
[13:13:56] [PASSED] ABGR8888 pitch greater than min required
[13:13:56] [PASSED] ABGR8888 pitch less than min required
[13:13:56] [PASSED] ABGR8888 Invalid width
[13:13:56] [PASSED] ABGR8888 Invalid buffer handle
[13:13:56] [PASSED] No pixel format
[13:13:56] [PASSED] ABGR8888 Width 0
[13:13:56] [PASSED] ABGR8888 Height 0
[13:13:56] [PASSED] ABGR8888 Out of bound height * pitch combination
[13:13:56] [PASSED] ABGR8888 Large buffer offset
[13:13:56] [PASSED] ABGR8888 Buffer offset for inexistent plane
[13:13:56] [PASSED] ABGR8888 Invalid flag
[13:13:56] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[13:13:56] [PASSED] ABGR8888 Valid buffer modifier
[13:13:56] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[13:13:56] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[13:13:56] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[13:13:56] [PASSED] NV12 Normal sizes
[13:13:56] [PASSED] NV12 Max sizes
[13:13:56] [PASSED] NV12 Invalid pitch
[13:13:56] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[13:13:56] [PASSED] NV12 different  modifier per-plane
[13:13:56] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[13:13:56] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[13:13:56] [PASSED] NV12 Modifier for inexistent plane
[13:13:56] [PASSED] NV12 Handle for inexistent plane
[13:13:56] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[13:13:56] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[13:13:56] [PASSED] YVU420 Normal sizes
[13:13:56] [PASSED] YVU420 Max sizes
[13:13:56] [PASSED] YVU420 Invalid pitch
[13:13:56] [PASSED] YVU420 Different pitches
[13:13:56] [PASSED] YVU420 Different buffer offsets/pitches
[13:13:56] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[13:13:56] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[13:13:56] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[13:13:56] [PASSED] YVU420 Valid modifier
[13:13:56] [PASSED] YVU420 Different modifiers per plane
[13:13:56] [PASSED] YVU420 Modifier for inexistent plane
[13:13:56] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[13:13:56] [PASSED] X0L2 Normal sizes
[13:13:56] [PASSED] X0L2 Max sizes
[13:13:56] [PASSED] X0L2 Invalid pitch
[13:13:56] [PASSED] X0L2 Pitch greater than minimum required
[13:13:56] [PASSED] X0L2 Handle for inexistent plane
[13:13:56] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[13:13:56] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[13:13:56] [PASSED] X0L2 Valid modifier
[13:13:56] [PASSED] X0L2 Modifier for inexistent plane
[13:13:56] =========== [PASSED] drm_test_framebuffer_create ===========
[13:13:56] [PASSED] drm_test_framebuffer_free
[13:13:56] [PASSED] drm_test_framebuffer_init
[13:13:56] [PASSED] drm_test_framebuffer_init_bad_format
[13:13:56] [PASSED] drm_test_framebuffer_init_dev_mismatch
[13:13:56] [PASSED] drm_test_framebuffer_lookup
[13:13:56] [PASSED] drm_test_framebuffer_lookup_inexistent
[13:13:56] [PASSED] drm_test_framebuffer_modifiers_not_supported
[13:13:56] ================= [PASSED] drm_framebuffer =================
[13:13:56] ================ drm_gem_shmem (8 subtests) ================
[13:13:56] [PASSED] drm_gem_shmem_test_obj_create
[13:13:56] [PASSED] drm_gem_shmem_test_obj_create_private
[13:13:56] [PASSED] drm_gem_shmem_test_pin_pages
[13:13:56] [PASSED] drm_gem_shmem_test_vmap
[13:13:56] [PASSED] drm_gem_shmem_test_get_pages_sgt
[13:13:56] [PASSED] drm_gem_shmem_test_get_sg_table
[13:13:56] [PASSED] drm_gem_shmem_test_madvise
[13:13:56] [PASSED] drm_gem_shmem_test_purge
[13:13:56] ================== [PASSED] drm_gem_shmem ==================
[13:13:56] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[13:13:56] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[13:13:56] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[13:13:56] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[13:13:56] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[13:13:56] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[13:13:56] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[13:13:56] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[13:13:56] [PASSED] Automatic
[13:13:56] [PASSED] Full
[13:13:56] [PASSED] Limited 16:235
[13:13:56] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[13:13:56] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[13:13:56] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[13:13:56] [PASSED] drm_test_check_disable_connector
[13:13:56] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[13:13:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[13:13:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[13:13:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[13:13:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[13:13:56] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[13:13:56] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[13:13:56] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[13:13:56] [PASSED] drm_test_check_output_bpc_dvi
[13:13:56] [PASSED] drm_test_check_output_bpc_format_vic_1
[13:13:56] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[13:13:56] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[13:13:56] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[13:13:56] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[13:13:56] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[13:13:56] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[13:13:56] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[13:13:56] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[13:13:56] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[13:13:56] [PASSED] drm_test_check_broadcast_rgb_value
[13:13:56] [PASSED] drm_test_check_bpc_8_value
[13:13:56] [PASSED] drm_test_check_bpc_10_value
[13:13:56] [PASSED] drm_test_check_bpc_12_value
[13:13:56] [PASSED] drm_test_check_format_value
[13:13:56] [PASSED] drm_test_check_tmds_char_value
[13:13:56] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[13:13:56] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[13:13:56] [PASSED] drm_test_check_mode_valid
[13:13:56] [PASSED] drm_test_check_mode_valid_reject
[13:13:56] [PASSED] drm_test_check_mode_valid_reject_rate
[13:13:56] [PASSED] drm_test_check_mode_valid_reject_max_clock
[13:13:56] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[13:13:56] ================= drm_managed (2 subtests) =================
[13:13:56] [PASSED] drm_test_managed_release_action
[13:13:56] [PASSED] drm_test_managed_run_action
[13:13:56] =================== [PASSED] drm_managed ===================
[13:13:56] =================== drm_mm (6 subtests) ====================
[13:13:56] [PASSED] drm_test_mm_init
[13:13:56] [PASSED] drm_test_mm_debug
[13:13:56] [PASSED] drm_test_mm_align32
[13:13:56] [PASSED] drm_test_mm_align64
[13:13:56] [PASSED] drm_test_mm_lowest
[13:13:56] [PASSED] drm_test_mm_highest
[13:13:56] ===================== [PASSED] drm_mm ======================
[13:13:56] ============= drm_modes_analog_tv (5 subtests) =============
[13:13:56] [PASSED] drm_test_modes_analog_tv_mono_576i
[13:13:56] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[13:13:56] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[13:13:56] [PASSED] drm_test_modes_analog_tv_pal_576i
[13:13:56] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[13:13:56] =============== [PASSED] drm_modes_analog_tv ===============
[13:13:56] ============== drm_plane_helper (2 subtests) ===============
[13:13:56] =============== drm_test_check_plane_state  ================
[13:13:56] [PASSED] clipping_simple
[13:13:56] [PASSED] clipping_rotate_reflect
[13:13:56] [PASSED] positioning_simple
[13:13:56] [PASSED] upscaling
[13:13:56] [PASSED] downscaling
[13:13:56] [PASSED] rounding1
[13:13:56] [PASSED] rounding2
[13:13:56] [PASSED] rounding3
[13:13:56] [PASSED] rounding4
[13:13:56] =========== [PASSED] drm_test_check_plane_state ============
[13:13:56] =========== drm_test_check_invalid_plane_state  ============
[13:13:56] [PASSED] positioning_invalid
[13:13:56] [PASSED] upscaling_invalid
[13:13:56] [PASSED] downscaling_invalid
[13:13:56] ======= [PASSED] drm_test_check_invalid_plane_state ========
[13:13:56] ================ [PASSED] drm_plane_helper =================
[13:13:56] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[13:13:56] ====== drm_test_connector_helper_tv_get_modes_check  =======
[13:13:56] [PASSED] None
[13:13:56] [PASSED] PAL
[13:13:56] [PASSED] NTSC
[13:13:56] [PASSED] Both, NTSC Default
[13:13:56] [PASSED] Both, PAL Default
[13:13:56] [PASSED] Both, NTSC Default, with PAL on command-line
[13:13:56] [PASSED] Both, PAL Default, with NTSC on command-line
[13:13:56] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[13:13:56] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[13:13:56] ================== drm_rect (9 subtests) ===================
[13:13:56] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[13:13:56] [PASSED] drm_test_rect_clip_scaled_not_clipped
[13:13:56] [PASSED] drm_test_rect_clip_scaled_clipped
[13:13:56] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[13:13:56] ================= drm_test_rect_intersect  =================
[13:13:56] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[13:13:56] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[13:13:56] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[13:13:56] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[13:13:56] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[13:13:56] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[13:13:56] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[13:13:56] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[13:13:56] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[13:13:56] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[13:13:56] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[13:13:56] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[13:13:56] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[13:13:56] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[13:13:56] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[13:13:56] ============= [PASSED] drm_test_rect_intersect =============
[13:13:56] ================ drm_test_rect_calc_hscale  ================
[13:13:56] [PASSED] normal use
[13:13:56] [PASSED] out of max range
[13:13:56] [PASSED] out of min range
[13:13:56] [PASSED] zero dst
[13:13:56] [PASSED] negative src
[13:13:56] [PASSED] negative dst
[13:13:56] ============ [PASSED] drm_test_rect_calc_hscale ============
[13:13:56] ================ drm_test_rect_calc_vscale  ================
[13:13:56] [PASSED] normal use
[13:13:56] [PASSED] out of max range
[13:13:56] [PASSED] out of min range
[13:13:56] [PASSED] zero dst
[13:13:56] [PASSED] negative src
[13:13:56] [PASSED] negative dst
[13:13:56] ============ [PASSED] drm_test_rect_calc_vscale ============
[13:13:56] ================== drm_test_rect_rotate  ===================
[13:13:56] [PASSED] reflect-x
[13:13:56] [PASSED] reflect-y
[13:13:56] [PASSED] rotate-0
[13:13:56] [PASSED] rotate-90
[13:13:56] [PASSED] rotate-180
[13:13:56] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[13:13:56] ============== [PASSED] drm_test_rect_rotate ===============
[13:13:56] ================ drm_test_rect_rotate_inv  =================
[13:13:56] [PASSED] reflect-x
[13:13:56] [PASSED] reflect-y
[13:13:56] [PASSED] rotate-0
[13:13:56] [PASSED] rotate-90
[13:13:56] [PASSED] rotate-180
[13:13:56] [PASSED] rotate-270
[13:13:56] ============ [PASSED] drm_test_rect_rotate_inv =============
[13:13:56] ==================== [PASSED] drm_rect =====================
[13:13:56] ============ drm_sysfb_modeset_test (1 subtest) ============
[13:13:56] ============ drm_test_sysfb_build_fourcc_list  =============
[13:13:56] [PASSED] no native formats
[13:13:56] [PASSED] XRGB8888 as native format
[13:13:56] [PASSED] remove duplicates
[13:13:56] [PASSED] convert alpha formats
[13:13:56] [PASSED] random formats
[13:13:56] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[13:13:56] ============= [PASSED] drm_sysfb_modeset_test ==============
[13:13:56] ============================================================
[13:13:56] Testing complete. Ran 616 tests: passed: 616
[13:13:56] Elapsed time: 24.936s total, 1.731s configuring, 23.037s building, 0.146s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[13:13:56] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:13:58] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:14:06] Starting KUnit Kernel (1/1)...
[13:14:06] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:14:06] ================= ttm_device (5 subtests) ==================
[13:14:06] [PASSED] ttm_device_init_basic
[13:14:06] [PASSED] ttm_device_init_multiple
[13:14:06] [PASSED] ttm_device_fini_basic
[13:14:06] [PASSED] ttm_device_init_no_vma_man
[13:14:06] ================== ttm_device_init_pools  ==================
[13:14:06] [PASSED] No DMA allocations, no DMA32 required
[13:14:06] [PASSED] DMA allocations, DMA32 required
[13:14:06] [PASSED] No DMA allocations, DMA32 required
[13:14:06] [PASSED] DMA allocations, no DMA32 required
[13:14:06] ============== [PASSED] ttm_device_init_pools ==============
[13:14:06] =================== [PASSED] ttm_device ====================
[13:14:06] ================== ttm_pool (8 subtests) ===================
[13:14:06] ================== ttm_pool_alloc_basic  ===================
[13:14:06] [PASSED] One page
[13:14:06] [PASSED] More than one page
[13:14:06] [PASSED] Above the allocation limit
[13:14:06] [PASSED] One page, with coherent DMA mappings enabled
[13:14:06] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:14:06] ============== [PASSED] ttm_pool_alloc_basic ===============
[13:14:06] ============== ttm_pool_alloc_basic_dma_addr  ==============
[13:14:06] [PASSED] One page
[13:14:06] [PASSED] More than one page
[13:14:06] [PASSED] Above the allocation limit
[13:14:06] [PASSED] One page, with coherent DMA mappings enabled
[13:14:06] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:14:06] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[13:14:06] [PASSED] ttm_pool_alloc_order_caching_match
[13:14:06] [PASSED] ttm_pool_alloc_caching_mismatch
[13:14:06] [PASSED] ttm_pool_alloc_order_mismatch
[13:14:06] [PASSED] ttm_pool_free_dma_alloc
[13:14:06] [PASSED] ttm_pool_free_no_dma_alloc
[13:14:06] [PASSED] ttm_pool_fini_basic
[13:14:06] ==================== [PASSED] ttm_pool =====================
[13:14:06] ================ ttm_resource (8 subtests) =================
[13:14:06] ================= ttm_resource_init_basic  =================
[13:14:06] [PASSED] Init resource in TTM_PL_SYSTEM
[13:14:06] [PASSED] Init resource in TTM_PL_VRAM
[13:14:06] [PASSED] Init resource in a private placement
[13:14:06] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[13:14:06] ============= [PASSED] ttm_resource_init_basic =============
[13:14:06] [PASSED] ttm_resource_init_pinned
[13:14:06] [PASSED] ttm_resource_fini_basic
[13:14:06] [PASSED] ttm_resource_manager_init_basic
[13:14:06] [PASSED] ttm_resource_manager_usage_basic
[13:14:06] [PASSED] ttm_resource_manager_set_used_basic
[13:14:06] [PASSED] ttm_sys_man_alloc_basic
[13:14:06] [PASSED] ttm_sys_man_free_basic
[13:14:06] ================== [PASSED] ttm_resource ===================
[13:14:06] =================== ttm_tt (15 subtests) ===================
[13:14:06] ==================== ttm_tt_init_basic  ====================
[13:14:06] [PASSED] Page-aligned size
[13:14:06] [PASSED] Extra pages requested
[13:14:06] ================ [PASSED] ttm_tt_init_basic ================
[13:14:06] [PASSED] ttm_tt_init_misaligned
[13:14:06] [PASSED] ttm_tt_fini_basic
[13:14:06] [PASSED] ttm_tt_fini_sg
[13:14:06] [PASSED] ttm_tt_fini_shmem
[13:14:06] [PASSED] ttm_tt_create_basic
[13:14:06] [PASSED] ttm_tt_create_invalid_bo_type
[13:14:06] [PASSED] ttm_tt_create_ttm_exists
[13:14:06] [PASSED] ttm_tt_create_failed
[13:14:06] [PASSED] ttm_tt_destroy_basic
[13:14:06] [PASSED] ttm_tt_populate_null_ttm
[13:14:06] [PASSED] ttm_tt_populate_populated_ttm
[13:14:06] [PASSED] ttm_tt_unpopulate_basic
[13:14:06] [PASSED] ttm_tt_unpopulate_empty_ttm
[13:14:06] [PASSED] ttm_tt_swapin_basic
[13:14:06] ===================== [PASSED] ttm_tt ======================
[13:14:06] =================== ttm_bo (14 subtests) ===================
[13:14:06] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[13:14:06] [PASSED] Cannot be interrupted and sleeps
[13:14:06] [PASSED] Cannot be interrupted, locks straight away
[13:14:06] [PASSED] Can be interrupted, sleeps
[13:14:06] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[13:14:06] [PASSED] ttm_bo_reserve_locked_no_sleep
[13:14:06] [PASSED] ttm_bo_reserve_no_wait_ticket
[13:14:06] [PASSED] ttm_bo_reserve_double_resv
[13:14:06] [PASSED] ttm_bo_reserve_interrupted
[13:14:06] [PASSED] ttm_bo_reserve_deadlock
[13:14:06] [PASSED] ttm_bo_unreserve_basic
[13:14:06] [PASSED] ttm_bo_unreserve_pinned
[13:14:06] [PASSED] ttm_bo_unreserve_bulk
[13:14:06] [PASSED] ttm_bo_put_basic
[13:14:06] [PASSED] ttm_bo_put_shared_resv
[13:14:06] [PASSED] ttm_bo_pin_basic
[13:14:06] [PASSED] ttm_bo_pin_unpin_resource
[13:14:06] [PASSED] ttm_bo_multiple_pin_one_unpin
[13:14:06] ===================== [PASSED] ttm_bo ======================
[13:14:06] ============== ttm_bo_validate (21 subtests) ===============
[13:14:06] ============== ttm_bo_init_reserved_sys_man  ===============
[13:14:06] [PASSED] Buffer object for userspace
[13:14:06] [PASSED] Kernel buffer object
[13:14:06] [PASSED] Shared buffer object
[13:14:06] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[13:14:06] ============== ttm_bo_init_reserved_mock_man  ==============
[13:14:06] [PASSED] Buffer object for userspace
[13:14:06] [PASSED] Kernel buffer object
[13:14:06] [PASSED] Shared buffer object
[13:14:06] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[13:14:06] [PASSED] ttm_bo_init_reserved_resv
[13:14:06] ================== ttm_bo_validate_basic  ==================
[13:14:06] [PASSED] Buffer object for userspace
[13:14:06] [PASSED] Kernel buffer object
[13:14:06] [PASSED] Shared buffer object
[13:14:06] ============== [PASSED] ttm_bo_validate_basic ==============
[13:14:06] [PASSED] ttm_bo_validate_invalid_placement
[13:14:06] ============= ttm_bo_validate_same_placement  ==============
[13:14:06] [PASSED] System manager
[13:14:06] [PASSED] VRAM manager
[13:14:06] ========= [PASSED] ttm_bo_validate_same_placement ==========
[13:14:06] [PASSED] ttm_bo_validate_failed_alloc
[13:14:06] [PASSED] ttm_bo_validate_pinned
[13:14:06] [PASSED] ttm_bo_validate_busy_placement
[13:14:06] ================ ttm_bo_validate_multihop  =================
[13:14:06] [PASSED] Buffer object for userspace
[13:14:06] [PASSED] Kernel buffer object
[13:14:06] [PASSED] Shared buffer object
[13:14:06] ============ [PASSED] ttm_bo_validate_multihop =============
[13:14:06] ========== ttm_bo_validate_no_placement_signaled  ==========
[13:14:06] [PASSED] Buffer object in system domain, no page vector
[13:14:06] [PASSED] Buffer object in system domain with an existing page vector
[13:14:06] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[13:14:06] ======== ttm_bo_validate_no_placement_not_signaled  ========
[13:14:06] [PASSED] Buffer object for userspace
[13:14:06] [PASSED] Kernel buffer object
[13:14:06] [PASSED] Shared buffer object
[13:14:06] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[13:14:06] [PASSED] ttm_bo_validate_move_fence_signaled
[13:14:06] ========= ttm_bo_validate_move_fence_not_signaled  =========
[13:14:06] [PASSED] Waits for GPU
[13:14:06] [PASSED] Tries to lock straight away
[13:14:06] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[13:14:06] [PASSED] ttm_bo_validate_happy_evict
[13:14:06] [PASSED] ttm_bo_validate_all_pinned_evict
[13:14:06] [PASSED] ttm_bo_validate_allowed_only_evict
[13:14:06] [PASSED] ttm_bo_validate_deleted_evict
[13:14:06] [PASSED] ttm_bo_validate_busy_domain_evict
[13:14:06] [PASSED] ttm_bo_validate_evict_gutting
[13:14:06] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[13:14:06] ================= [PASSED] ttm_bo_validate =================
[13:14:06] ============================================================
[13:14:06] Testing complete. Ran 101 tests: passed: 101
[13:14:06] Elapsed time: 9.882s total, 1.699s configuring, 7.916s building, 0.236s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 20+ messages in thread

* ✓ Xe.CI.BAT: success for drm/xe: replace basename() with portable strrchr()
  2025-08-20 20:16 [PATCH] drm/xe: replace basename() with portable strrchr() Carlos Llamas
                   ` (2 preceding siblings ...)
  2025-08-21 13:14 ` ✓ CI.KUnit: success for " Patchwork
@ 2025-08-21 13:58 ` Patchwork
  2025-08-21 22:08 ` ✓ CI.KUnit: success for drm/xe: replace basename() with portable strrchr() (rev2) Patchwork
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-08-21 13:58 UTC (permalink / raw)
  To: Carlos Llamas; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 2221 bytes --]

== Series Details ==

Series: drm/xe: replace basename() with portable strrchr()
URL   : https://patchwork.freedesktop.org/series/153291/
State : success

== Summary ==

CI Bug Log - changes from xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408_BAT -> xe-pw-153291v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in xe-pw-153291v1_BAT that come from known issues:

### IGT changes ###

#### Possible fixes ####

  * igt@kms_flip@basic-flip-vs-wf_vblank:
    - bat-adlp-7:         [DMESG-WARN][1] ([Intel XE#4543]) -> [PASS][2] +3 other tests pass
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html

  * igt@xe_vm@bind-execqueues-independent:
    - {bat-ptl-2}:        [FAIL][3] ([Intel XE#5783]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/bat-ptl-2/igt@xe_vm@bind-execqueues-independent.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/bat-ptl-2/igt@xe_vm@bind-execqueues-independent.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#5783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5783


Build changes
-------------

  * IGT: IGT_8501 -> IGT_8503
  * Linux: xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408 -> xe-pw-153291v1

  IGT_8501: 87027eb34ac38b8217351eeaa021aeae847b6b61 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8503: 8503
  xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408: 16e133c7e6922a9f224b272a48ac172cf06e3408
  xe-pw-153291v1: 153291v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/index.html

[-- Attachment #2: Type: text/html, Size: 2844 bytes --]

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH] drm/xe: replace basename() with portable strrchr()
  2025-08-20 23:05   ` Carlos Llamas
@ 2025-08-21 21:00     ` Lucas De Marchi
  2025-08-21 21:32       ` Carlos Llamas
  2025-08-21 22:00       ` [PATCH v2] drm/xe: switch to local __basename() helper Carlos Llamas
  0 siblings, 2 replies; 20+ messages in thread
From: Lucas De Marchi @ 2025-08-21 21:00 UTC (permalink / raw)
  To: Carlos Llamas
  Cc: Thomas Hellström, Rodrigo Vivi, David Airlie, Simona Vetter,
	Matt Atwood, kernel-team, linux-kernel,
	open list:INTEL DRM XE DRIVER (Lunar Lake and newer),
	open list:DRM DRIVERS

On Wed, Aug 20, 2025 at 11:05:47PM +0000, Carlos Llamas wrote:
>On Wed, Aug 20, 2025 at 04:15:47PM -0500, Lucas De Marchi wrote:
>> On Wed, Aug 20, 2025 at 08:16:11PM +0000, Carlos Llamas wrote:
>> > Commit b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
>> > introduced a call to basename(). The GNU version of this function is not
>> > portable and fails to build with alternative libc implementations like
>> > musl or bionic. This causes the following build error:
>> >
>> >  drivers/gpu/drm/xe/xe_gen_wa_oob.c:130:12: error: assignment to ‘const char *’ from ‘int’ makes pointer from integer without a cast [-Wint-conversion]
>> >    130 |         fn = basename(fn);
>> >        |            ^
>> >
>> > While a POSIX version of basename() could be used, it would require a
>> > separate header plus the behavior differs from GNU version in that it
>> > might modify its argument. Not great.
>> >
>> > Instead replace basename() with a strrchr() based implementation which
>> > provides the same functionality and avoid portability issues.
>> >
>> > Fixes: b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
>> > Signed-off-by: Carlos Llamas <cmllamas@google.com>
>> > ---
>> > drivers/gpu/drm/xe/xe_gen_wa_oob.c | 4 +++-
>> > 1 file changed, 3 insertions(+), 1 deletion(-)
>> >
>> > diff --git a/drivers/gpu/drm/xe/xe_gen_wa_oob.c b/drivers/gpu/drm/xe/xe_gen_wa_oob.c
>> > index 6581cb0f0e59..0a94a045bcea 100644
>> > --- a/drivers/gpu/drm/xe/xe_gen_wa_oob.c
>> > +++ b/drivers/gpu/drm/xe/xe_gen_wa_oob.c
>> > @@ -125,9 +125,11 @@ static int parse(FILE *input, FILE *csource, FILE *cheader, char *prefix)
>> >
>> > static int fn_to_prefix(const char *fn, char *prefix, size_t size)
>> > {
>> > +	const char *base;
>> > 	size_t len;
>> >
>> > -	fn = basename(fn);
>> > +	base = strrchr(fn, '/');
>> > +	fn = base ? base + 1 : fn;
>>
>> I think just a xbasename() helper like we've added in kmod would be
>> preferred:
>> https://github.com/kmod-project/kmod/commit/11eb9bc67c319900ab00523997323a97d2d08ad2
>>
>> Alternativelly add it somewhere that can be shared across the userspace
>> tools in the kernel tree to fix the mess that we have here:
>>
>> 	git grep basename -- tools/**.c
>>
>
>This sounds like a nice idea. However, there is no "centralized" shared
>includes/ across the userspace tools that I'm aware of?
>
>> Some dup the arg simply to be able to use the libgen.h version, some use
>> one or the other on purpose, etc etc.
>>
>
>Yeah, and I can force the POSIX version if you prefer. I just personally
>think the strrchr() alternative ends up being simpler.

IMO the POSIX version is horrible. Let's add a xbasename() in this
xe_gen_wa_oob.c and use it:

/*
  * Avoid the libgen.h vs string.h differences or lack thereof, just use
  * our own.
  */
static const char *xbasename(const char *s)
{
	const char *p = strrchr(s, '/');
	return p ? p + 1 : s;
}

static int fn_to_prefix(const char *fn, char *prefix, size_t size)
{
...
	fn = xbasename(fn);
...
}

Lucas De Marchi

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH] drm/xe: replace basename() with portable strrchr()
  2025-08-21 21:00     ` Lucas De Marchi
@ 2025-08-21 21:32       ` Carlos Llamas
  2025-08-21 22:00       ` [PATCH v2] drm/xe: switch to local __basename() helper Carlos Llamas
  1 sibling, 0 replies; 20+ messages in thread
From: Carlos Llamas @ 2025-08-21 21:32 UTC (permalink / raw)
  To: Lucas De Marchi
  Cc: Thomas Hellström, Rodrigo Vivi, David Airlie, Simona Vetter,
	Matt Atwood, kernel-team, linux-kernel,
	open list:INTEL DRM XE DRIVER (Lunar Lake and newer),
	open list:DRM DRIVERS

On Thu, Aug 21, 2025 at 04:00:33PM -0500, Lucas De Marchi wrote:
> 
> IMO the POSIX version is horrible. Let's add a xbasename() in this
> xe_gen_wa_oob.c and use it:
> 
> /*
>  * Avoid the libgen.h vs string.h differences or lack thereof, just use
>  * our own.
>  */
> static const char *xbasename(const char *s)
> {
> 	const char *p = strrchr(s, '/');
> 	return p ? p + 1 : s;
> }
> 
> static int fn_to_prefix(const char *fn, char *prefix, size_t size)
> {
> ...
> 	fn = xbasename(fn);
> ...
> }
> 

Sounds good. Would you mind if I use __basename()? I'll send the v2 in a
bit.

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCH v2] drm/xe: switch to local __basename() helper
  2025-08-21 21:00     ` Lucas De Marchi
  2025-08-21 21:32       ` Carlos Llamas
@ 2025-08-21 22:00       ` Carlos Llamas
  2025-08-23 11:56         ` Lucas De Marchi
  1 sibling, 1 reply; 20+ messages in thread
From: Carlos Llamas @ 2025-08-21 22:00 UTC (permalink / raw)
  To: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi,
	David Airlie, Simona Vetter, Matt Atwood
  Cc: kernel-team, linux-kernel, Carlos Llamas, Tiffany Yang,
	open list:INTEL DRM XE DRIVER (Lunar Lake and newer),
	open list:DRM DRIVERS

Commit b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
introduced a call to basename(). The GNU version of this function is not
portable and fails to build with alternative libc implementations like
musl or bionic. This causes the following build error:

  drivers/gpu/drm/xe/xe_gen_wa_oob.c:130:12: error: assignment to ‘const char *’ from ‘int’ makes pointer from integer without a cast [-Wint-conversion]
    130 |         fn = basename(fn);
        |            ^

While a POSIX version of basename() could be used, it would require a
separate header plus the behavior differs from GNU version in that it
might modify its argument. Not great.

Instead, implement a local __basename() helper based on strrchr() that
provides the same functionality and avoids portability issues.

Fixes: b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
Suggested-by: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Tiffany Yang <ynaffit@google.com>
Signed-off-by: Carlos Llamas <cmllamas@google.com>
---
v2:
 - Wrap changes in a helper function per Luca's feedback.
 - Fix typo in commit log: s/avoid/avoids/ per Tiffany.
 - Update commit log.
 - Collect tags.

v1:
https://lore.kernel.org/all/20250820201612.2549797-1-cmllamas@google.com/

 drivers/gpu/drm/xe/xe_gen_wa_oob.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_gen_wa_oob.c b/drivers/gpu/drm/xe/xe_gen_wa_oob.c
index 6581cb0f0e59..c18faccdeb90 100644
--- a/drivers/gpu/drm/xe/xe_gen_wa_oob.c
+++ b/drivers/gpu/drm/xe/xe_gen_wa_oob.c
@@ -123,11 +123,19 @@ static int parse(FILE *input, FILE *csource, FILE *cheader, char *prefix)
 	return 0;
 }
 
+/* Avoid GNU vs POSIX basename() discrepancy, just use our own */
+static const char *__basename(const char *s)
+{
+	const char *p = strrchr(s, '/');
+
+	return p ? p + 1 : s;
+}
+
 static int fn_to_prefix(const char *fn, char *prefix, size_t size)
 {
 	size_t len;
 
-	fn = basename(fn);
+	fn = __basename(fn);
 	len = strlen(fn);
 
 	if (len > size - 1)
-- 
2.51.0.rc2.233.g662b1ed5c5-goog


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* ✓ CI.KUnit: success for drm/xe: replace basename() with portable strrchr() (rev2)
  2025-08-20 20:16 [PATCH] drm/xe: replace basename() with portable strrchr() Carlos Llamas
                   ` (3 preceding siblings ...)
  2025-08-21 13:58 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-08-21 22:08 ` Patchwork
  2025-08-21 22:46 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-08-21 22:08 UTC (permalink / raw)
  To: Carlos Llamas; +Cc: intel-xe

== Series Details ==

Series: drm/xe: replace basename() with portable strrchr() (rev2)
URL   : https://patchwork.freedesktop.org/series/153291/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[22:06:55] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:06:59] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:07:28] Starting KUnit Kernel (1/1)...
[22:07:28] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:07:28] ================== guc_buf (11 subtests) ===================
[22:07:28] [PASSED] test_smallest
[22:07:28] [PASSED] test_largest
[22:07:28] [PASSED] test_granular
[22:07:28] [PASSED] test_unique
[22:07:28] [PASSED] test_overlap
[22:07:28] [PASSED] test_reusable
[22:07:28] [PASSED] test_too_big
[22:07:28] [PASSED] test_flush
[22:07:28] [PASSED] test_lookup
[22:07:28] [PASSED] test_data
[22:07:28] [PASSED] test_class
[22:07:28] ===================== [PASSED] guc_buf =====================
[22:07:28] =================== guc_dbm (7 subtests) ===================
[22:07:28] [PASSED] test_empty
[22:07:28] [PASSED] test_default
[22:07:28] ======================== test_size  ========================
[22:07:28] [PASSED] 4
[22:07:28] [PASSED] 8
[22:07:28] [PASSED] 32
[22:07:28] [PASSED] 256
[22:07:28] ==================== [PASSED] test_size ====================
[22:07:28] ======================= test_reuse  ========================
[22:07:28] [PASSED] 4
[22:07:28] [PASSED] 8
[22:07:28] [PASSED] 32
[22:07:28] [PASSED] 256
[22:07:28] =================== [PASSED] test_reuse ====================
[22:07:28] =================== test_range_overlap  ====================
[22:07:28] [PASSED] 4
[22:07:28] [PASSED] 8
[22:07:28] [PASSED] 32
[22:07:28] [PASSED] 256
[22:07:28] =============== [PASSED] test_range_overlap ================
[22:07:28] =================== test_range_compact  ====================
[22:07:28] [PASSED] 4
[22:07:28] [PASSED] 8
[22:07:28] [PASSED] 32
[22:07:28] [PASSED] 256
[22:07:28] =============== [PASSED] test_range_compact ================
[22:07:28] ==================== test_range_spare  =====================
[22:07:28] [PASSED] 4
[22:07:28] [PASSED] 8
[22:07:28] [PASSED] 32
[22:07:28] [PASSED] 256
[22:07:28] ================ [PASSED] test_range_spare =================
[22:07:28] ===================== [PASSED] guc_dbm =====================
[22:07:28] =================== guc_idm (6 subtests) ===================
[22:07:28] [PASSED] bad_init
[22:07:28] [PASSED] no_init
[22:07:28] [PASSED] init_fini
[22:07:28] [PASSED] check_used
[22:07:28] [PASSED] check_quota
[22:07:28] [PASSED] check_all
[22:07:28] ===================== [PASSED] guc_idm =====================
[22:07:28] ================== no_relay (3 subtests) ===================
[22:07:28] [PASSED] xe_drops_guc2pf_if_not_ready
[22:07:28] [PASSED] xe_drops_guc2vf_if_not_ready
[22:07:28] [PASSED] xe_rejects_send_if_not_ready
[22:07:28] ==================== [PASSED] no_relay =====================
[22:07:28] ================== pf_relay (14 subtests) ==================
[22:07:28] [PASSED] pf_rejects_guc2pf_too_short
[22:07:28] [PASSED] pf_rejects_guc2pf_too_long
[22:07:28] [PASSED] pf_rejects_guc2pf_no_payload
[22:07:28] [PASSED] pf_fails_no_payload
[22:07:28] [PASSED] pf_fails_bad_origin
[22:07:28] [PASSED] pf_fails_bad_type
[22:07:28] [PASSED] pf_txn_reports_error
[22:07:28] [PASSED] pf_txn_sends_pf2guc
[22:07:28] [PASSED] pf_sends_pf2guc
[22:07:28] [SKIPPED] pf_loopback_nop
[22:07:28] [SKIPPED] pf_loopback_echo
[22:07:28] [SKIPPED] pf_loopback_fail
[22:07:28] [SKIPPED] pf_loopback_busy
[22:07:28] [SKIPPED] pf_loopback_retry
[22:07:28] ==================== [PASSED] pf_relay =====================
[22:07:28] ================== vf_relay (3 subtests) ===================
[22:07:28] [PASSED] vf_rejects_guc2vf_too_short
[22:07:28] [PASSED] vf_rejects_guc2vf_too_long
[22:07:28] [PASSED] vf_rejects_guc2vf_no_payload
[22:07:28] ==================== [PASSED] vf_relay =====================
[22:07:28] ===================== lmtt (1 subtest) =====================
[22:07:28] ======================== test_ops  =========================
[22:07:28] [PASSED] 2-level
[22:07:28] [PASSED] multi-level
[22:07:28] ==================== [PASSED] test_ops =====================
[22:07:28] ====================== [PASSED] lmtt =======================
[22:07:28] ================= pf_service (11 subtests) =================
[22:07:28] [PASSED] pf_negotiate_any
[22:07:28] [PASSED] pf_negotiate_base_match
[22:07:28] [PASSED] pf_negotiate_base_newer
[22:07:28] [PASSED] pf_negotiate_base_next
[22:07:28] [SKIPPED] pf_negotiate_base_older
[22:07:28] [PASSED] pf_negotiate_base_prev
[22:07:28] [PASSED] pf_negotiate_latest_match
[22:07:28] [PASSED] pf_negotiate_latest_newer
[22:07:28] [PASSED] pf_negotiate_latest_next
[22:07:28] [SKIPPED] pf_negotiate_latest_older
[22:07:28] [SKIPPED] pf_negotiate_latest_prev
[22:07:28] =================== [PASSED] pf_service ====================
[22:07:28] =================== xe_mocs (2 subtests) ===================
[22:07:28] ================ xe_live_mocs_kernel_kunit  ================
[22:07:28] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[22:07:28] ================ xe_live_mocs_reset_kunit  =================
[22:07:28] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[22:07:28] ==================== [SKIPPED] xe_mocs =====================
[22:07:28] ================= xe_migrate (2 subtests) ==================
[22:07:28] ================= xe_migrate_sanity_kunit  =================
[22:07:28] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[22:07:28] ================== xe_validate_ccs_kunit  ==================
[22:07:28] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[22:07:28] =================== [SKIPPED] xe_migrate ===================
[22:07:28] ================== xe_dma_buf (1 subtest) ==================
[22:07:28] ==================== xe_dma_buf_kunit  =====================
[22:07:28] ================ [SKIPPED] xe_dma_buf_kunit ================
[22:07:28] =================== [SKIPPED] xe_dma_buf ===================
[22:07:28] ================= xe_bo_shrink (1 subtest) =================
[22:07:28] =================== xe_bo_shrink_kunit  ====================
[22:07:28] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[22:07:28] ================== [SKIPPED] xe_bo_shrink ==================
[22:07:28] ==================== xe_bo (2 subtests) ====================
[22:07:28] ================== xe_ccs_migrate_kunit  ===================
[22:07:28] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[22:07:28] ==================== xe_bo_evict_kunit  ====================
[22:07:28] =============== [SKIPPED] xe_bo_evict_kunit ================
[22:07:28] ===================== [SKIPPED] xe_bo ======================
[22:07:28] ==================== args (11 subtests) ====================
[22:07:28] [PASSED] count_args_test
[22:07:28] [PASSED] call_args_example
[22:07:28] [PASSED] call_args_test
[22:07:28] [PASSED] drop_first_arg_example
[22:07:28] [PASSED] drop_first_arg_test
[22:07:28] [PASSED] first_arg_example
[22:07:28] [PASSED] first_arg_test
[22:07:28] [PASSED] last_arg_example
[22:07:28] [PASSED] last_arg_test
[22:07:28] [PASSED] pick_arg_example
[22:07:28] [PASSED] sep_comma_example
[22:07:28] ====================== [PASSED] args =======================
[22:07:28] =================== xe_pci (3 subtests) ====================
[22:07:28] ==================== check_graphics_ip  ====================
[22:07:28] [PASSED] 12.70 Xe_LPG
[22:07:28] [PASSED] 12.71 Xe_LPG
[22:07:28] [PASSED] 12.74 Xe_LPG+
[22:07:28] [PASSED] 20.01 Xe2_HPG
[22:07:28] [PASSED] 20.02 Xe2_HPG
[22:07:28] [PASSED] 20.04 Xe2_LPG
[22:07:28] [PASSED] 30.00 Xe3_LPG
[22:07:28] [PASSED] 30.01 Xe3_LPG
[22:07:28] [PASSED] 30.03 Xe3_LPG
[22:07:28] ================ [PASSED] check_graphics_ip ================
[22:07:28] ===================== check_media_ip  ======================
[22:07:28] [PASSED] 13.00 Xe_LPM+
[22:07:28] [PASSED] 13.01 Xe2_HPM
[22:07:28] [PASSED] 20.00 Xe2_LPM
[22:07:28] [PASSED] 30.00 Xe3_LPM
[22:07:28] [PASSED] 30.02 Xe3_LPM
[22:07:28] ================= [PASSED] check_media_ip ==================
[22:07:28] ================= check_platform_gt_count  =================
[22:07:28] [PASSED] 0x9A60 (TIGERLAKE)
[22:07:28] [PASSED] 0x9A68 (TIGERLAKE)
[22:07:28] [PASSED] 0x9A70 (TIGERLAKE)
[22:07:28] [PASSED] 0x9A40 (TIGERLAKE)
[22:07:28] [PASSED] 0x9A49 (TIGERLAKE)
[22:07:28] [PASSED] 0x9A59 (TIGERLAKE)
[22:07:28] [PASSED] 0x9A78 (TIGERLAKE)
[22:07:28] [PASSED] 0x9AC0 (TIGERLAKE)
[22:07:28] [PASSED] 0x9AC9 (TIGERLAKE)
[22:07:28] [PASSED] 0x9AD9 (TIGERLAKE)
[22:07:28] [PASSED] 0x9AF8 (TIGERLAKE)
[22:07:28] [PASSED] 0x4C80 (ROCKETLAKE)
[22:07:28] [PASSED] 0x4C8A (ROCKETLAKE)
[22:07:28] [PASSED] 0x4C8B (ROCKETLAKE)
[22:07:28] [PASSED] 0x4C8C (ROCKETLAKE)
[22:07:28] [PASSED] 0x4C90 (ROCKETLAKE)
[22:07:28] [PASSED] 0x4C9A (ROCKETLAKE)
[22:07:28] [PASSED] 0x4680 (ALDERLAKE_S)
[22:07:28] [PASSED] 0x4682 (ALDERLAKE_S)
[22:07:28] [PASSED] 0x4688 (ALDERLAKE_S)
[22:07:28] [PASSED] 0x468A (ALDERLAKE_S)
[22:07:28] [PASSED] 0x468B (ALDERLAKE_S)
[22:07:28] [PASSED] 0x4690 (ALDERLAKE_S)
[22:07:28] [PASSED] 0x4692 (ALDERLAKE_S)
[22:07:28] [PASSED] 0x4693 (ALDERLAKE_S)
[22:07:28] [PASSED] 0x46A0 (ALDERLAKE_P)
[22:07:28] [PASSED] 0x46A1 (ALDERLAKE_P)
[22:07:28] [PASSED] 0x46A2 (ALDERLAKE_P)
[22:07:28] [PASSED] 0x46A3 (ALDERLAKE_P)
[22:07:28] [PASSED] 0x46A6 (ALDERLAKE_P)
[22:07:28] [PASSED] 0x46A8 (ALDERLAKE_P)
[22:07:28] [PASSED] 0x46AA (ALDERLAKE_P)
[22:07:28] [PASSED] 0x462A (ALDERLAKE_P)
[22:07:28] [PASSED] 0x4626 (ALDERLAKE_P)
[22:07:28] [PASSED] 0x4628 (ALDERLAKE_P)
[22:07:28] [PASSED] 0x46B0 (ALDERLAKE_P)
[22:07:28] [PASSED] 0x46B1 (ALDERLAKE_P)
[22:07:28] [PASSED] 0x46B2 (ALDERLAKE_P)
[22:07:28] [PASSED] 0x46B3 (ALDERLAKE_P)
[22:07:28] [PASSED] 0x46C0 (ALDERLAKE_P)
[22:07:28] [PASSED] 0x46C1 (ALDERLAKE_P)
[22:07:28] [PASSED] 0x46C2 (ALDERLAKE_P)
[22:07:28] [PASSED] 0x46C3 (ALDERLAKE_P)
[22:07:28] [PASSED] 0x46D0 (ALDERLAKE_N)
[22:07:28] [PASSED] 0x46D1 (ALDERLAKE_N)
[22:07:28] [PASSED] 0x46D2 (ALDERLAKE_N)
[22:07:28] [PASSED] 0x46D3 (ALDERLAKE_N)
[22:07:28] [PASSED] 0x46D4 (ALDERLAKE_N)
[22:07:28] [PASSED] 0xA721 (ALDERLAKE_P)
[22:07:28] [PASSED] 0xA7A1 (ALDERLAKE_P)
[22:07:28] [PASSED] 0xA7A9 (ALDERLAKE_P)
[22:07:28] [PASSED] 0xA7AC (ALDERLAKE_P)
[22:07:28] [PASSED] 0xA7AD (ALDERLAKE_P)
[22:07:28] [PASSED] 0xA720 (ALDERLAKE_P)
[22:07:28] [PASSED] 0xA7A0 (ALDERLAKE_P)
[22:07:28] [PASSED] 0xA7A8 (ALDERLAKE_P)
[22:07:28] [PASSED] 0xA7AA (ALDERLAKE_P)
[22:07:28] [PASSED] 0xA7AB (ALDERLAKE_P)
[22:07:28] [PASSED] 0xA780 (ALDERLAKE_S)
[22:07:28] [PASSED] 0xA781 (ALDERLAKE_S)
[22:07:28] [PASSED] 0xA782 (ALDERLAKE_S)
[22:07:28] [PASSED] 0xA783 (ALDERLAKE_S)
[22:07:28] [PASSED] 0xA788 (ALDERLAKE_S)
[22:07:28] [PASSED] 0xA789 (ALDERLAKE_S)
[22:07:28] [PASSED] 0xA78A (ALDERLAKE_S)
[22:07:28] [PASSED] 0xA78B (ALDERLAKE_S)
[22:07:28] [PASSED] 0x4905 (DG1)
[22:07:28] [PASSED] 0x4906 (DG1)
[22:07:28] [PASSED] 0x4907 (DG1)
[22:07:28] [PASSED] 0x4908 (DG1)
[22:07:28] [PASSED] 0x4909 (DG1)
[22:07:28] [PASSED] 0x56C0 (DG2)
[22:07:28] [PASSED] 0x56C2 (DG2)
[22:07:28] [PASSED] 0x56C1 (DG2)
[22:07:28] [PASSED] 0x7D51 (METEORLAKE)
[22:07:28] [PASSED] 0x7DD1 (METEORLAKE)
[22:07:28] [PASSED] 0x7D41 (METEORLAKE)
[22:07:28] [PASSED] 0x7D67 (METEORLAKE)
[22:07:28] [PASSED] 0xB640 (METEORLAKE)
[22:07:28] [PASSED] 0x56A0 (DG2)
[22:07:28] [PASSED] 0x56A1 (DG2)
[22:07:28] [PASSED] 0x56A2 (DG2)
[22:07:28] [PASSED] 0x56BE (DG2)
[22:07:28] [PASSED] 0x56BF (DG2)
[22:07:28] [PASSED] 0x5690 (DG2)
[22:07:28] [PASSED] 0x5691 (DG2)
[22:07:28] [PASSED] 0x5692 (DG2)
[22:07:28] [PASSED] 0x56A5 (DG2)
[22:07:28] [PASSED] 0x56A6 (DG2)
[22:07:28] [PASSED] 0x56B0 (DG2)
[22:07:28] [PASSED] 0x56B1 (DG2)
[22:07:28] [PASSED] 0x56BA (DG2)
[22:07:28] [PASSED] 0x56BB (DG2)
[22:07:28] [PASSED] 0x56BC (DG2)
[22:07:28] [PASSED] 0x56BD (DG2)
[22:07:28] [PASSED] 0x5693 (DG2)
[22:07:28] [PASSED] 0x5694 (DG2)
[22:07:28] [PASSED] 0x5695 (DG2)
[22:07:28] [PASSED] 0x56A3 (DG2)
[22:07:28] [PASSED] 0x56A4 (DG2)
[22:07:28] [PASSED] 0x56B2 (DG2)
[22:07:28] [PASSED] 0x56B3 (DG2)
[22:07:28] [PASSED] 0x5696 (DG2)
[22:07:28] [PASSED] 0x5697 (DG2)
[22:07:28] [PASSED] 0xB69 (PVC)
[22:07:28] [PASSED] 0xB6E (PVC)
[22:07:28] [PASSED] 0xBD4 (PVC)
[22:07:28] [PASSED] 0xBD5 (PVC)
[22:07:28] [PASSED] 0xBD6 (PVC)
[22:07:28] [PASSED] 0xBD7 (PVC)
[22:07:28] [PASSED] 0xBD8 (PVC)
[22:07:28] [PASSED] 0xBD9 (PVC)
[22:07:28] [PASSED] 0xBDA (PVC)
[22:07:28] [PASSED] 0xBDB (PVC)
[22:07:28] [PASSED] 0xBE0 (PVC)
[22:07:28] [PASSED] 0xBE1 (PVC)
[22:07:28] [PASSED] 0xBE5 (PVC)
[22:07:28] [PASSED] 0x7D40 (METEORLAKE)
[22:07:28] [PASSED] 0x7D45 (METEORLAKE)
[22:07:28] [PASSED] 0x7D55 (METEORLAKE)
[22:07:28] [PASSED] 0x7D60 (METEORLAKE)
[22:07:28] [PASSED] 0x7DD5 (METEORLAKE)
[22:07:28] [PASSED] 0x6420 (LUNARLAKE)
[22:07:28] [PASSED] 0x64A0 (LUNARLAKE)
[22:07:28] [PASSED] 0x64B0 (LUNARLAKE)
[22:07:28] [PASSED] 0xE202 (BATTLEMAGE)
[22:07:28] [PASSED] 0xE209 (BATTLEMAGE)
[22:07:28] [PASSED] 0xE20B (BATTLEMAGE)
[22:07:28] [PASSED] 0xE20C (BATTLEMAGE)
[22:07:28] [PASSED] 0xE20D (BATTLEMAGE)
[22:07:28] [PASSED] 0xE210 (BATTLEMAGE)
[22:07:28] [PASSED] 0xE211 (BATTLEMAGE)
[22:07:28] [PASSED] 0xE212 (BATTLEMAGE)
[22:07:28] [PASSED] 0xE216 (BATTLEMAGE)
[22:07:28] [PASSED] 0xE220 (BATTLEMAGE)
[22:07:28] [PASSED] 0xE221 (BATTLEMAGE)
[22:07:28] [PASSED] 0xE222 (BATTLEMAGE)
[22:07:28] [PASSED] 0xE223 (BATTLEMAGE)
[22:07:28] [PASSED] 0xB080 (PANTHERLAKE)
[22:07:28] [PASSED] 0xB081 (PANTHERLAKE)
[22:07:28] [PASSED] 0xB082 (PANTHERLAKE)
[22:07:28] [PASSED] 0xB083 (PANTHERLAKE)
[22:07:28] [PASSED] 0xB084 (PANTHERLAKE)
[22:07:28] [PASSED] 0xB085 (PANTHERLAKE)
[22:07:28] [PASSED] 0xB086 (PANTHERLAKE)
[22:07:28] [PASSED] 0xB087 (PANTHERLAKE)
[22:07:28] [PASSED] 0xB08F (PANTHERLAKE)
[22:07:28] [PASSED] 0xB090 (PANTHERLAKE)
[22:07:28] [PASSED] 0xB0A0 (PANTHERLAKE)
[22:07:28] [PASSED] 0xB0B0 (PANTHERLAKE)
[22:07:28] [PASSED] 0xFD80 (PANTHERLAKE)
[22:07:28] [PASSED] 0xFD81 (PANTHERLAKE)
[22:07:28] ============= [PASSED] check_platform_gt_count =============
[22:07:28] ===================== [PASSED] xe_pci ======================
[22:07:28] =================== xe_rtp (2 subtests) ====================
[22:07:28] =============== xe_rtp_process_to_sr_tests  ================
[22:07:28] [PASSED] coalesce-same-reg
[22:07:28] [PASSED] no-match-no-add
[22:07:28] [PASSED] match-or
[22:07:28] [PASSED] match-or-xfail
[22:07:28] [PASSED] no-match-no-add-multiple-rules
[22:07:28] [PASSED] two-regs-two-entries
[22:07:28] [PASSED] clr-one-set-other
[22:07:28] [PASSED] set-field
[22:07:28] [PASSED] conflict-duplicate
[22:07:28] [PASSED] conflict-not-disjoint
[22:07:28] [PASSED] conflict-reg-type
[22:07:28] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[22:07:28] ================== xe_rtp_process_tests  ===================
[22:07:28] [PASSED] active1
[22:07:28] [PASSED] active2
[22:07:28] [PASSED] active-inactive
[22:07:28] [PASSED] inactive-active
[22:07:28] [PASSED] inactive-1st_or_active-inactive
[22:07:28] [PASSED] inactive-2nd_or_active-inactive
[22:07:28] [PASSED] inactive-last_or_active-inactive
[22:07:28] [PASSED] inactive-no_or_active-inactive
[22:07:28] ============== [PASSED] xe_rtp_process_tests ===============
[22:07:28] ===================== [PASSED] xe_rtp ======================
[22:07:28] ==================== xe_wa (1 subtest) =====================
[22:07:28] ======================== xe_wa_gt  =========================
[22:07:28] [PASSED] TIGERLAKE (B0)
[22:07:28] [PASSED] DG1 (A0)
[22:07:28] [PASSED] DG1 (B0)
[22:07:28] [PASSED] ALDERLAKE_S (A0)
[22:07:28] [PASSED] ALDERLAKE_S (B0)
[22:07:28] [PASSED] ALDERLAKE_S (C0)
[22:07:28] [PASSED] ALDERLAKE_S (D0)
[22:07:28] [PASSED] ALDERLAKE_P (A0)
[22:07:28] [PASSED] ALDERLAKE_P (B0)
[22:07:28] [PASSED] ALDERLAKE_P (C0)
[22:07:28] [PASSED] ALDERLAKE_S_RPLS (D0)
[22:07:28] [PASSED] ALDERLAKE_P_RPLU (E0)
[22:07:28] [PASSED] DG2_G10 (C0)
[22:07:28] [PASSED] DG2_G11 (B1)
[22:07:28] [PASSED] DG2_G12 (A1)
[22:07:28] [PASSED] METEORLAKE (g:A0, m:A0)
[22:07:28] [PASSED] METEORLAKE (g:A0, m:A0)
[22:07:28] [PASSED] METEORLAKE (g:A0, m:A0)
[22:07:28] [PASSED] LUNARLAKE (g:A0, m:A0)
[22:07:28] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[22:07:28] [PASSED] BATTLEMAGE (g:A0, m:A1)
[22:07:28] [PASSED] PANTHERLAKE (g:A0, m:A0)
[22:07:28] ==================== [PASSED] xe_wa_gt =====================
[22:07:28] ====================== [PASSED] xe_wa ======================
[22:07:28] ============================================================
[22:07:28] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[22:07:28] Elapsed time: 33.151s total, 4.185s configuring, 28.599s building, 0.331s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[22:07:29] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:07:30] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:07:53] Starting KUnit Kernel (1/1)...
[22:07:53] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:07:53] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[22:07:53] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[22:07:53] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[22:07:53] =========== drm_validate_clone_mode (2 subtests) ===========
[22:07:53] ============== drm_test_check_in_clone_mode  ===============
[22:07:53] [PASSED] in_clone_mode
[22:07:53] [PASSED] not_in_clone_mode
[22:07:53] ========== [PASSED] drm_test_check_in_clone_mode ===========
[22:07:53] =============== drm_test_check_valid_clones  ===============
[22:07:53] [PASSED] not_in_clone_mode
[22:07:53] [PASSED] valid_clone
[22:07:53] [PASSED] invalid_clone
[22:07:53] =========== [PASSED] drm_test_check_valid_clones ===========
[22:07:53] ============= [PASSED] drm_validate_clone_mode =============
[22:07:53] ============= drm_validate_modeset (1 subtest) =============
[22:07:53] [PASSED] drm_test_check_connector_changed_modeset
[22:07:53] ============== [PASSED] drm_validate_modeset ===============
[22:07:53] ====== drm_test_bridge_get_current_state (2 subtests) ======
[22:07:53] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[22:07:53] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[22:07:53] ======== [PASSED] drm_test_bridge_get_current_state ========
[22:07:53] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[22:07:53] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[22:07:53] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[22:07:53] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[22:07:53] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[22:07:53] ============== drm_bridge_alloc (2 subtests) ===============
[22:07:53] [PASSED] drm_test_drm_bridge_alloc_basic
[22:07:53] [PASSED] drm_test_drm_bridge_alloc_get_put
[22:07:53] ================ [PASSED] drm_bridge_alloc =================
[22:07:53] ================== drm_buddy (7 subtests) ==================
[22:07:53] [PASSED] drm_test_buddy_alloc_limit
[22:07:53] [PASSED] drm_test_buddy_alloc_optimistic
[22:07:53] [PASSED] drm_test_buddy_alloc_pessimistic
[22:07:53] [PASSED] drm_test_buddy_alloc_pathological
[22:07:53] [PASSED] drm_test_buddy_alloc_contiguous
[22:07:53] [PASSED] drm_test_buddy_alloc_clear
[22:07:53] [PASSED] drm_test_buddy_alloc_range_bias
[22:07:53] ==================== [PASSED] drm_buddy ====================
[22:07:53] ============= drm_cmdline_parser (40 subtests) =============
[22:07:53] [PASSED] drm_test_cmdline_force_d_only
[22:07:53] [PASSED] drm_test_cmdline_force_D_only_dvi
[22:07:53] [PASSED] drm_test_cmdline_force_D_only_hdmi
[22:07:53] [PASSED] drm_test_cmdline_force_D_only_not_digital
[22:07:53] [PASSED] drm_test_cmdline_force_e_only
[22:07:53] [PASSED] drm_test_cmdline_res
[22:07:53] [PASSED] drm_test_cmdline_res_vesa
[22:07:53] [PASSED] drm_test_cmdline_res_vesa_rblank
[22:07:53] [PASSED] drm_test_cmdline_res_rblank
[22:07:53] [PASSED] drm_test_cmdline_res_bpp
[22:07:53] [PASSED] drm_test_cmdline_res_refresh
[22:07:53] [PASSED] drm_test_cmdline_res_bpp_refresh
[22:07:53] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[22:07:53] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[22:07:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[22:07:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[22:07:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[22:07:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[22:07:53] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[22:07:53] [PASSED] drm_test_cmdline_res_margins_force_on
[22:07:53] [PASSED] drm_test_cmdline_res_vesa_margins
[22:07:53] [PASSED] drm_test_cmdline_name
[22:07:53] [PASSED] drm_test_cmdline_name_bpp
[22:07:53] [PASSED] drm_test_cmdline_name_option
[22:07:53] [PASSED] drm_test_cmdline_name_bpp_option
[22:07:53] [PASSED] drm_test_cmdline_rotate_0
[22:07:53] [PASSED] drm_test_cmdline_rotate_90
[22:07:53] [PASSED] drm_test_cmdline_rotate_180
[22:07:53] [PASSED] drm_test_cmdline_rotate_270
[22:07:53] [PASSED] drm_test_cmdline_hmirror
[22:07:53] [PASSED] drm_test_cmdline_vmirror
[22:07:53] [PASSED] drm_test_cmdline_margin_options
[22:07:53] [PASSED] drm_test_cmdline_multiple_options
[22:07:53] [PASSED] drm_test_cmdline_bpp_extra_and_option
[22:07:53] [PASSED] drm_test_cmdline_extra_and_option
[22:07:53] [PASSED] drm_test_cmdline_freestanding_options
[22:07:53] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[22:07:53] [PASSED] drm_test_cmdline_panel_orientation
[22:07:53] ================ drm_test_cmdline_invalid  =================
[22:07:53] [PASSED] margin_only
[22:07:53] [PASSED] interlace_only
[22:07:53] [PASSED] res_missing_x
[22:07:53] [PASSED] res_missing_y
[22:07:53] [PASSED] res_bad_y
[22:07:53] [PASSED] res_missing_y_bpp
[22:07:53] [PASSED] res_bad_bpp
[22:07:53] [PASSED] res_bad_refresh
[22:07:53] [PASSED] res_bpp_refresh_force_on_off
[22:07:53] [PASSED] res_invalid_mode
[22:07:53] [PASSED] res_bpp_wrong_place_mode
[22:07:53] [PASSED] name_bpp_refresh
[22:07:53] [PASSED] name_refresh
[22:07:53] [PASSED] name_refresh_wrong_mode
[22:07:53] [PASSED] name_refresh_invalid_mode
[22:07:53] [PASSED] rotate_multiple
[22:07:53] [PASSED] rotate_invalid_val
[22:07:53] [PASSED] rotate_truncated
[22:07:53] [PASSED] invalid_option
[22:07:53] [PASSED] invalid_tv_option
[22:07:53] [PASSED] truncated_tv_option
[22:07:53] ============ [PASSED] drm_test_cmdline_invalid =============
[22:07:53] =============== drm_test_cmdline_tv_options  ===============
[22:07:53] [PASSED] NTSC
[22:07:53] [PASSED] NTSC_443
[22:07:53] [PASSED] NTSC_J
[22:07:53] [PASSED] PAL
[22:07:53] [PASSED] PAL_M
[22:07:53] [PASSED] PAL_N
[22:07:53] [PASSED] SECAM
[22:07:53] [PASSED] MONO_525
[22:07:53] [PASSED] MONO_625
[22:07:53] =========== [PASSED] drm_test_cmdline_tv_options ===========
[22:07:53] =============== [PASSED] drm_cmdline_parser ================
[22:07:53] ========== drmm_connector_hdmi_init (20 subtests) ==========
[22:07:53] [PASSED] drm_test_connector_hdmi_init_valid
[22:07:53] [PASSED] drm_test_connector_hdmi_init_bpc_8
[22:07:53] [PASSED] drm_test_connector_hdmi_init_bpc_10
[22:07:53] [PASSED] drm_test_connector_hdmi_init_bpc_12
[22:07:53] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[22:07:53] [PASSED] drm_test_connector_hdmi_init_bpc_null
[22:07:53] [PASSED] drm_test_connector_hdmi_init_formats_empty
[22:07:53] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[22:07:53] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[22:07:53] [PASSED] supported_formats=0x9 yuv420_allowed=1
[22:07:53] [PASSED] supported_formats=0x9 yuv420_allowed=0
[22:07:53] [PASSED] supported_formats=0x3 yuv420_allowed=1
[22:07:53] [PASSED] supported_formats=0x3 yuv420_allowed=0
[22:07:53] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:07:53] [PASSED] drm_test_connector_hdmi_init_null_ddc
[22:07:53] [PASSED] drm_test_connector_hdmi_init_null_product
[22:07:53] [PASSED] drm_test_connector_hdmi_init_null_vendor
[22:07:53] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[22:07:53] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[22:07:53] [PASSED] drm_test_connector_hdmi_init_product_valid
[22:07:53] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[22:07:53] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[22:07:53] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[22:07:53] ========= drm_test_connector_hdmi_init_type_valid  =========
[22:07:53] [PASSED] HDMI-A
[22:07:53] [PASSED] HDMI-B
[22:07:53] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[22:07:53] ======== drm_test_connector_hdmi_init_type_invalid  ========
[22:07:53] [PASSED] Unknown
[22:07:53] [PASSED] VGA
[22:07:53] [PASSED] DVI-I
[22:07:53] [PASSED] DVI-D
[22:07:53] [PASSED] DVI-A
[22:07:53] [PASSED] Composite
[22:07:53] [PASSED] SVIDEO
[22:07:53] [PASSED] LVDS
[22:07:53] [PASSED] Component
[22:07:53] [PASSED] DIN
[22:07:53] [PASSED] DP
[22:07:53] [PASSED] TV
[22:07:53] [PASSED] eDP
[22:07:53] [PASSED] Virtual
[22:07:53] [PASSED] DSI
[22:07:53] [PASSED] DPI
[22:07:53] [PASSED] Writeback
[22:07:53] [PASSED] SPI
[22:07:53] [PASSED] USB
[22:07:53] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[22:07:53] ============ [PASSED] drmm_connector_hdmi_init =============
[22:07:53] ============= drmm_connector_init (3 subtests) =============
[22:07:53] [PASSED] drm_test_drmm_connector_init
[22:07:53] [PASSED] drm_test_drmm_connector_init_null_ddc
[22:07:53] ========= drm_test_drmm_connector_init_type_valid  =========
[22:07:53] [PASSED] Unknown
[22:07:53] [PASSED] VGA
[22:07:53] [PASSED] DVI-I
[22:07:53] [PASSED] DVI-D
[22:07:53] [PASSED] DVI-A
[22:07:53] [PASSED] Composite
[22:07:53] [PASSED] SVIDEO
[22:07:53] [PASSED] LVDS
[22:07:53] [PASSED] Component
[22:07:53] [PASSED] DIN
[22:07:53] [PASSED] DP
[22:07:53] [PASSED] HDMI-A
[22:07:53] [PASSED] HDMI-B
[22:07:53] [PASSED] TV
[22:07:53] [PASSED] eDP
[22:07:53] [PASSED] Virtual
[22:07:53] [PASSED] DSI
[22:07:53] [PASSED] DPI
[22:07:53] [PASSED] Writeback
[22:07:53] [PASSED] SPI
[22:07:53] [PASSED] USB
[22:07:53] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[22:07:53] =============== [PASSED] drmm_connector_init ===============
[22:07:53] ========= drm_connector_dynamic_init (6 subtests) ==========
[22:07:53] [PASSED] drm_test_drm_connector_dynamic_init
[22:07:53] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[22:07:53] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[22:07:53] [PASSED] drm_test_drm_connector_dynamic_init_properties
[22:07:53] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[22:07:53] [PASSED] Unknown
[22:07:53] [PASSED] VGA
[22:07:53] [PASSED] DVI-I
[22:07:53] [PASSED] DVI-D
[22:07:53] [PASSED] DVI-A
[22:07:53] [PASSED] Composite
[22:07:53] [PASSED] SVIDEO
[22:07:53] [PASSED] LVDS
[22:07:53] [PASSED] Component
[22:07:53] [PASSED] DIN
[22:07:53] [PASSED] DP
[22:07:53] [PASSED] HDMI-A
[22:07:53] [PASSED] HDMI-B
[22:07:53] [PASSED] TV
[22:07:53] [PASSED] eDP
[22:07:53] [PASSED] Virtual
[22:07:53] [PASSED] DSI
[22:07:53] [PASSED] DPI
[22:07:53] [PASSED] Writeback
[22:07:53] [PASSED] SPI
[22:07:53] [PASSED] USB
[22:07:53] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[22:07:53] ======== drm_test_drm_connector_dynamic_init_name  =========
[22:07:53] [PASSED] Unknown
[22:07:53] [PASSED] VGA
[22:07:53] [PASSED] DVI-I
[22:07:53] [PASSED] DVI-D
[22:07:53] [PASSED] DVI-A
[22:07:53] [PASSED] Composite
[22:07:53] [PASSED] SVIDEO
[22:07:53] [PASSED] LVDS
[22:07:53] [PASSED] Component
[22:07:53] [PASSED] DIN
[22:07:53] [PASSED] DP
[22:07:53] [PASSED] HDMI-A
[22:07:53] [PASSED] HDMI-B
[22:07:53] [PASSED] TV
[22:07:53] [PASSED] eDP
[22:07:53] [PASSED] Virtual
[22:07:53] [PASSED] DSI
[22:07:53] [PASSED] DPI
[22:07:53] [PASSED] Writeback
[22:07:53] [PASSED] SPI
[22:07:53] [PASSED] USB
[22:07:53] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[22:07:53] =========== [PASSED] drm_connector_dynamic_init ============
[22:07:53] ==== drm_connector_dynamic_register_early (4 subtests) =====
[22:07:53] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[22:07:53] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[22:07:53] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[22:07:53] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[22:07:53] ====== [PASSED] drm_connector_dynamic_register_early =======
[22:07:53] ======= drm_connector_dynamic_register (7 subtests) ========
[22:07:53] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[22:07:53] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[22:07:53] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[22:07:53] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[22:07:53] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[22:07:53] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[22:07:53] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[22:07:53] ========= [PASSED] drm_connector_dynamic_register ==========
[22:07:53] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[22:07:53] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[22:07:53] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[22:07:53] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[22:07:53] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[22:07:53] ========== drm_test_get_tv_mode_from_name_valid  ===========
[22:07:53] [PASSED] NTSC
[22:07:53] [PASSED] NTSC-443
[22:07:53] [PASSED] NTSC-J
[22:07:53] [PASSED] PAL
[22:07:53] [PASSED] PAL-M
[22:07:53] [PASSED] PAL-N
[22:07:53] [PASSED] SECAM
[22:07:53] [PASSED] Mono
[22:07:53] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[22:07:53] [PASSED] drm_test_get_tv_mode_from_name_truncated
[22:07:53] ============ [PASSED] drm_get_tv_mode_from_name ============
[22:07:53] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[22:07:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[22:07:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[22:07:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[22:07:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[22:07:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[22:07:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[22:07:53] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[22:07:53] [PASSED] VIC 96
[22:07:53] [PASSED] VIC 97
[22:07:53] [PASSED] VIC 101
[22:07:53] [PASSED] VIC 102
[22:07:53] [PASSED] VIC 106
[22:07:53] [PASSED] VIC 107
[22:07:53] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[22:07:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[22:07:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[22:07:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[22:07:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[22:07:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[22:07:53] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[22:07:53] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[22:07:53] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[22:07:53] [PASSED] Automatic
[22:07:53] [PASSED] Full
[22:07:53] [PASSED] Limited 16:235
[22:07:53] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[22:07:53] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[22:07:53] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[22:07:53] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[22:07:53] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[22:07:53] [PASSED] RGB
[22:07:53] [PASSED] YUV 4:2:0
[22:07:53] [PASSED] YUV 4:2:2
[22:07:53] [PASSED] YUV 4:4:4
[22:07:53] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[22:07:53] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[22:07:53] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[22:07:53] ============= drm_damage_helper (21 subtests) ==============
[22:07:53] [PASSED] drm_test_damage_iter_no_damage
[22:07:53] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[22:07:53] [PASSED] drm_test_damage_iter_no_damage_src_moved
[22:07:53] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[22:07:53] [PASSED] drm_test_damage_iter_no_damage_not_visible
[22:07:53] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[22:07:53] [PASSED] drm_test_damage_iter_no_damage_no_fb
[22:07:53] [PASSED] drm_test_damage_iter_simple_damage
[22:07:53] [PASSED] drm_test_damage_iter_single_damage
[22:07:53] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[22:07:53] [PASSED] drm_test_damage_iter_single_damage_outside_src
[22:07:53] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[22:07:53] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[22:07:53] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[22:07:53] [PASSED] drm_test_damage_iter_single_damage_src_moved
[22:07:53] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[22:07:53] [PASSED] drm_test_damage_iter_damage
[22:07:53] [PASSED] drm_test_damage_iter_damage_one_intersect
[22:07:53] [PASSED] drm_test_damage_iter_damage_one_outside
[22:07:53] [PASSED] drm_test_damage_iter_damage_src_moved
[22:07:53] [PASSED] drm_test_damage_iter_damage_not_visible
[22:07:53] ================ [PASSED] drm_damage_helper ================
[22:07:53] ============== drm_dp_mst_helper (3 subtests) ==============
[22:07:53] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[22:07:53] [PASSED] Clock 154000 BPP 30 DSC disabled
[22:07:53] [PASSED] Clock 234000 BPP 30 DSC disabled
[22:07:53] [PASSED] Clock 297000 BPP 24 DSC disabled
[22:07:53] [PASSED] Clock 332880 BPP 24 DSC enabled
[22:07:53] [PASSED] Clock 324540 BPP 24 DSC enabled
[22:07:53] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[22:07:53] ============== drm_test_dp_mst_calc_pbn_div  ===============
[22:07:53] [PASSED] Link rate 2000000 lane count 4
[22:07:53] [PASSED] Link rate 2000000 lane count 2
[22:07:53] [PASSED] Link rate 2000000 lane count 1
[22:07:53] [PASSED] Link rate 1350000 lane count 4
[22:07:53] [PASSED] Link rate 1350000 lane count 2
[22:07:53] [PASSED] Link rate 1350000 lane count 1
[22:07:53] [PASSED] Link rate 1000000 lane count 4
[22:07:53] [PASSED] Link rate 1000000 lane count 2
[22:07:53] [PASSED] Link rate 1000000 lane count 1
[22:07:53] [PASSED] Link rate 810000 lane count 4
[22:07:53] [PASSED] Link rate 810000 lane count 2
[22:07:53] [PASSED] Link rate 810000 lane count 1
[22:07:53] [PASSED] Link rate 540000 lane count 4
[22:07:53] [PASSED] Link rate 540000 lane count 2
[22:07:53] [PASSED] Link rate 540000 lane count 1
[22:07:53] [PASSED] Link rate 270000 lane count 4
[22:07:53] [PASSED] Link rate 270000 lane count 2
[22:07:53] [PASSED] Link rate 270000 lane count 1
[22:07:53] [PASSED] Link rate 162000 lane count 4
[22:07:53] [PASSED] Link rate 162000 lane count 2
[22:07:53] [PASSED] Link rate 162000 lane count 1
[22:07:53] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[22:07:53] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[22:07:53] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[22:07:53] [PASSED] DP_POWER_UP_PHY with port number
[22:07:53] [PASSED] DP_POWER_DOWN_PHY with port number
[22:07:53] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[22:07:53] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[22:07:53] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[22:07:53] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[22:07:53] [PASSED] DP_QUERY_PAYLOAD with port number
[22:07:53] [PASSED] DP_QUERY_PAYLOAD with VCPI
[22:07:53] [PASSED] DP_REMOTE_DPCD_READ with port number
[22:07:53] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[22:07:53] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[22:07:53] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[22:07:53] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[22:07:53] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[22:07:53] [PASSED] DP_REMOTE_I2C_READ with port number
[22:07:53] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[22:07:53] [PASSED] DP_REMOTE_I2C_READ with transactions array
[22:07:53] [PASSED] DP_REMOTE_I2C_WRITE with port number
[22:07:53] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[22:07:53] [PASSED] DP_REMOTE_I2C_WRITE with data array
[22:07:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[22:07:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[22:07:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[22:07:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[22:07:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[22:07:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[22:07:53] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[22:07:53] ================ [PASSED] drm_dp_mst_helper ================
[22:07:53] ================== drm_exec (7 subtests) ===================
[22:07:53] [PASSED] sanitycheck
[22:07:53] [PASSED] test_lock
[22:07:53] [PASSED] test_lock_unlock
[22:07:53] [PASSED] test_duplicates
[22:07:53] [PASSED] test_prepare
[22:07:53] [PASSED] test_prepare_array
[22:07:53] [PASSED] test_multiple_loops
[22:07:53] ==================== [PASSED] drm_exec =====================
[22:07:53] =========== drm_format_helper_test (17 subtests) ===========
[22:07:53] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[22:07:53] [PASSED] single_pixel_source_buffer
[22:07:53] [PASSED] single_pixel_clip_rectangle
[22:07:53] [PASSED] well_known_colors
[22:07:53] [PASSED] destination_pitch
[22:07:53] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[22:07:53] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[22:07:53] [PASSED] single_pixel_source_buffer
[22:07:53] [PASSED] single_pixel_clip_rectangle
[22:07:53] [PASSED] well_known_colors
[22:07:53] [PASSED] destination_pitch
[22:07:53] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[22:07:53] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[22:07:53] [PASSED] single_pixel_source_buffer
[22:07:53] [PASSED] single_pixel_clip_rectangle
[22:07:53] [PASSED] well_known_colors
[22:07:53] [PASSED] destination_pitch
[22:07:53] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[22:07:53] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[22:07:53] [PASSED] single_pixel_source_buffer
[22:07:53] [PASSED] single_pixel_clip_rectangle
[22:07:53] [PASSED] well_known_colors
[22:07:53] [PASSED] destination_pitch
[22:07:53] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[22:07:53] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[22:07:53] [PASSED] single_pixel_source_buffer
[22:07:53] [PASSED] single_pixel_clip_rectangle
[22:07:53] [PASSED] well_known_colors
[22:07:53] [PASSED] destination_pitch
[22:07:53] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[22:07:53] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[22:07:53] [PASSED] single_pixel_source_buffer
[22:07:53] [PASSED] single_pixel_clip_rectangle
[22:07:53] [PASSED] well_known_colors
[22:07:53] [PASSED] destination_pitch
[22:07:53] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[22:07:53] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[22:07:53] [PASSED] single_pixel_source_buffer
[22:07:53] [PASSED] single_pixel_clip_rectangle
[22:07:53] [PASSED] well_known_colors
[22:07:53] [PASSED] destination_pitch
[22:07:53] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[22:07:53] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[22:07:53] [PASSED] single_pixel_source_buffer
[22:07:53] [PASSED] single_pixel_clip_rectangle
[22:07:53] [PASSED] well_known_colors
[22:07:53] [PASSED] destination_pitch
[22:07:53] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[22:07:53] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[22:07:53] [PASSED] single_pixel_source_buffer
[22:07:53] [PASSED] single_pixel_clip_rectangle
[22:07:53] [PASSED] well_known_colors
[22:07:53] [PASSED] destination_pitch
[22:07:53] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[22:07:53] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[22:07:53] [PASSED] single_pixel_source_buffer
[22:07:53] [PASSED] single_pixel_clip_rectangle
[22:07:53] [PASSED] well_known_colors
[22:07:53] [PASSED] destination_pitch
[22:07:53] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[22:07:53] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[22:07:53] [PASSED] single_pixel_source_buffer
[22:07:53] [PASSED] single_pixel_clip_rectangle
[22:07:53] [PASSED] well_known_colors
[22:07:53] [PASSED] destination_pitch
[22:07:53] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[22:07:53] ============== drm_test_fb_xrgb8888_to_mono  ===============
[22:07:53] [PASSED] single_pixel_source_buffer
[22:07:53] [PASSED] single_pixel_clip_rectangle
[22:07:53] [PASSED] well_known_colors
[22:07:53] [PASSED] destination_pitch
[22:07:53] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[22:07:53] ==================== drm_test_fb_swab  =====================
[22:07:53] [PASSED] single_pixel_source_buffer
[22:07:53] [PASSED] single_pixel_clip_rectangle
[22:07:53] [PASSED] well_known_colors
[22:07:53] [PASSED] destination_pitch
[22:07:53] ================ [PASSED] drm_test_fb_swab =================
[22:07:53] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[22:07:53] [PASSED] single_pixel_source_buffer
[22:07:53] [PASSED] single_pixel_clip_rectangle
[22:07:53] [PASSED] well_known_colors
[22:07:53] [PASSED] destination_pitch
[22:07:53] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[22:07:53] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[22:07:53] [PASSED] single_pixel_source_buffer
[22:07:53] [PASSED] single_pixel_clip_rectangle
[22:07:53] [PASSED] well_known_colors
[22:07:53] [PASSED] destination_pitch
[22:07:53] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[22:07:53] ================= drm_test_fb_clip_offset  =================
[22:07:53] [PASSED] pass through
[22:07:53] [PASSED] horizontal offset
[22:07:53] [PASSED] vertical offset
[22:07:53] [PASSED] horizontal and vertical offset
[22:07:53] [PASSED] horizontal offset (custom pitch)
[22:07:53] [PASSED] vertical offset (custom pitch)
[22:07:53] [PASSED] horizontal and vertical offset (custom pitch)
[22:07:53] ============= [PASSED] drm_test_fb_clip_offset =============
[22:07:53] =================== drm_test_fb_memcpy  ====================
[22:07:53] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[22:07:53] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[22:07:53] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[22:07:53] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[22:07:53] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[22:07:53] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[22:07:53] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[22:07:53] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[22:07:53] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[22:07:53] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[22:07:53] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[22:07:53] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[22:07:53] =============== [PASSED] drm_test_fb_memcpy ================
[22:07:53] ============= [PASSED] drm_format_helper_test ==============
[22:07:53] ================= drm_format (18 subtests) =================
[22:07:53] [PASSED] drm_test_format_block_width_invalid
[22:07:53] [PASSED] drm_test_format_block_width_one_plane
[22:07:53] [PASSED] drm_test_format_block_width_two_plane
[22:07:53] [PASSED] drm_test_format_block_width_three_plane
[22:07:53] [PASSED] drm_test_format_block_width_tiled
[22:07:53] [PASSED] drm_test_format_block_height_invalid
[22:07:53] [PASSED] drm_test_format_block_height_one_plane
[22:07:53] [PASSED] drm_test_format_block_height_two_plane
[22:07:53] [PASSED] drm_test_format_block_height_three_plane
[22:07:53] [PASSED] drm_test_format_block_height_tiled
[22:07:53] [PASSED] drm_test_format_min_pitch_invalid
[22:07:53] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[22:07:53] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[22:07:53] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[22:07:53] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[22:07:53] [PASSED] drm_test_format_min_pitch_two_plane
[22:07:53] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[22:07:53] [PASSED] drm_test_format_min_pitch_tiled
[22:07:53] =================== [PASSED] drm_format ====================
[22:07:53] ============== drm_framebuffer (10 subtests) ===============
[22:07:53] ========== drm_test_framebuffer_check_src_coords  ==========
[22:07:53] [PASSED] Success: source fits into fb
[22:07:53] [PASSED] Fail: overflowing fb with x-axis coordinate
[22:07:53] [PASSED] Fail: overflowing fb with y-axis coordinate
[22:07:53] [PASSED] Fail: overflowing fb with source width
[22:07:53] [PASSED] Fail: overflowing fb with source height
[22:07:53] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[22:07:53] [PASSED] drm_test_framebuffer_cleanup
[22:07:53] =============== drm_test_framebuffer_create  ===============
[22:07:53] [PASSED] ABGR8888 normal sizes
[22:07:53] [PASSED] ABGR8888 max sizes
[22:07:53] [PASSED] ABGR8888 pitch greater than min required
[22:07:53] [PASSED] ABGR8888 pitch less than min required
[22:07:53] [PASSED] ABGR8888 Invalid width
[22:07:53] [PASSED] ABGR8888 Invalid buffer handle
[22:07:53] [PASSED] No pixel format
[22:07:53] [PASSED] ABGR8888 Width 0
[22:07:53] [PASSED] ABGR8888 Height 0
[22:07:53] [PASSED] ABGR8888 Out of bound height * pitch combination
[22:07:53] [PASSED] ABGR8888 Large buffer offset
[22:07:53] [PASSED] ABGR8888 Buffer offset for inexistent plane
[22:07:53] [PASSED] ABGR8888 Invalid flag
[22:07:53] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[22:07:53] [PASSED] ABGR8888 Valid buffer modifier
[22:07:53] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[22:07:53] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[22:07:53] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[22:07:53] [PASSED] NV12 Normal sizes
[22:07:53] [PASSED] NV12 Max sizes
[22:07:53] [PASSED] NV12 Invalid pitch
[22:07:53] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[22:07:53] [PASSED] NV12 different  modifier per-plane
[22:07:53] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[22:07:53] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[22:07:53] [PASSED] NV12 Modifier for inexistent plane
[22:07:53] [PASSED] NV12 Handle for inexistent plane
[22:07:53] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[22:07:53] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[22:07:53] [PASSED] YVU420 Normal sizes
[22:07:53] [PASSED] YVU420 Max sizes
[22:07:53] [PASSED] YVU420 Invalid pitch
[22:07:53] [PASSED] YVU420 Different pitches
[22:07:53] [PASSED] YVU420 Different buffer offsets/pitches
[22:07:53] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[22:07:53] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[22:07:53] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[22:07:53] [PASSED] YVU420 Valid modifier
[22:07:53] [PASSED] YVU420 Different modifiers per plane
[22:07:53] [PASSED] YVU420 Modifier for inexistent plane
[22:07:53] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[22:07:53] [PASSED] X0L2 Normal sizes
[22:07:53] [PASSED] X0L2 Max sizes
[22:07:53] [PASSED] X0L2 Invalid pitch
[22:07:53] [PASSED] X0L2 Pitch greater than minimum required
[22:07:53] [PASSED] X0L2 Handle for inexistent plane
[22:07:53] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[22:07:53] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[22:07:53] [PASSED] X0L2 Valid modifier
[22:07:53] [PASSED] X0L2 Modifier for inexistent plane
[22:07:53] =========== [PASSED] drm_test_framebuffer_create ===========
[22:07:53] [PASSED] drm_test_framebuffer_free
[22:07:53] [PASSED] drm_test_framebuffer_init
[22:07:53] [PASSED] drm_test_framebuffer_init_bad_format
[22:07:53] [PASSED] drm_test_framebuffer_init_dev_mismatch
[22:07:53] [PASSED] drm_test_framebuffer_lookup
[22:07:53] [PASSED] drm_test_framebuffer_lookup_inexistent
[22:07:53] [PASSED] drm_test_framebuffer_modifiers_not_supported
[22:07:53] ================= [PASSED] drm_framebuffer =================
[22:07:53] ================ drm_gem_shmem (8 subtests) ================
[22:07:53] [PASSED] drm_gem_shmem_test_obj_create
[22:07:53] [PASSED] drm_gem_shmem_test_obj_create_private
[22:07:53] [PASSED] drm_gem_shmem_test_pin_pages
[22:07:53] [PASSED] drm_gem_shmem_test_vmap
[22:07:53] [PASSED] drm_gem_shmem_test_get_pages_sgt
[22:07:53] [PASSED] drm_gem_shmem_test_get_sg_table
[22:07:53] [PASSED] drm_gem_shmem_test_madvise
[22:07:53] [PASSED] drm_gem_shmem_test_purge
[22:07:53] ================== [PASSED] drm_gem_shmem ==================
[22:07:53] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[22:07:53] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[22:07:53] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[22:07:53] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[22:07:53] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[22:07:53] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[22:07:53] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[22:07:53] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[22:07:53] [PASSED] Automatic
[22:07:53] [PASSED] Full
[22:07:53] [PASSED] Limited 16:235
[22:07:53] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[22:07:53] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[22:07:53] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[22:07:53] [PASSED] drm_test_check_disable_connector
[22:07:53] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[22:07:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[22:07:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[22:07:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[22:07:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[22:07:53] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[22:07:53] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[22:07:53] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[22:07:53] [PASSED] drm_test_check_output_bpc_dvi
[22:07:53] [PASSED] drm_test_check_output_bpc_format_vic_1
[22:07:53] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[22:07:53] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[22:07:53] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[22:07:53] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[22:07:53] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[22:07:53] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[22:07:53] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[22:07:53] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[22:07:53] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[22:07:53] [PASSED] drm_test_check_broadcast_rgb_value
[22:07:53] [PASSED] drm_test_check_bpc_8_value
[22:07:53] [PASSED] drm_test_check_bpc_10_value
[22:07:53] [PASSED] drm_test_check_bpc_12_value
[22:07:53] [PASSED] drm_test_check_format_value
[22:07:53] [PASSED] drm_test_check_tmds_char_value
[22:07:53] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[22:07:53] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[22:07:53] [PASSED] drm_test_check_mode_valid
[22:07:53] [PASSED] drm_test_check_mode_valid_reject
[22:07:53] [PASSED] drm_test_check_mode_valid_reject_rate
[22:07:53] [PASSED] drm_test_check_mode_valid_reject_max_clock
[22:07:53] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[22:07:53] ================= drm_managed (2 subtests) =================
[22:07:53] [PASSED] drm_test_managed_release_action
[22:07:53] [PASSED] drm_test_managed_run_action
[22:07:53] =================== [PASSED] drm_managed ===================
[22:07:53] =================== drm_mm (6 subtests) ====================
[22:07:53] [PASSED] drm_test_mm_init
[22:07:53] [PASSED] drm_test_mm_debug
[22:07:53] [PASSED] drm_test_mm_align32
[22:07:53] [PASSED] drm_test_mm_align64
[22:07:53] [PASSED] drm_test_mm_lowest
[22:07:53] [PASSED] drm_test_mm_highest
[22:07:53] ===================== [PASSED] drm_mm ======================
[22:07:53] ============= drm_modes_analog_tv (5 subtests) =============
[22:07:53] [PASSED] drm_test_modes_analog_tv_mono_576i
[22:07:53] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[22:07:53] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[22:07:53] [PASSED] drm_test_modes_analog_tv_pal_576i
[22:07:53] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[22:07:53] =============== [PASSED] drm_modes_analog_tv ===============
[22:07:53] ============== drm_plane_helper (2 subtests) ===============
[22:07:53] =============== drm_test_check_plane_state  ================
[22:07:53] [PASSED] clipping_simple
[22:07:53] [PASSED] clipping_rotate_reflect
[22:07:53] [PASSED] positioning_simple
[22:07:53] [PASSED] upscaling
[22:07:53] [PASSED] downscaling
[22:07:53] [PASSED] rounding1
[22:07:53] [PASSED] rounding2
[22:07:53] [PASSED] rounding3
[22:07:53] [PASSED] rounding4
[22:07:53] =========== [PASSED] drm_test_check_plane_state ============
[22:07:53] =========== drm_test_check_invalid_plane_state  ============
[22:07:53] [PASSED] positioning_invalid
[22:07:53] [PASSED] upscaling_invalid
[22:07:53] [PASSED] downscaling_invalid
[22:07:53] ======= [PASSED] drm_test_check_invalid_plane_state ========
[22:07:53] ================ [PASSED] drm_plane_helper =================
[22:07:53] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[22:07:53] ====== drm_test_connector_helper_tv_get_modes_check  =======
[22:07:53] [PASSED] None
[22:07:53] [PASSED] PAL
[22:07:53] [PASSED] NTSC
[22:07:53] [PASSED] Both, NTSC Default
[22:07:53] [PASSED] Both, PAL Default
[22:07:53] [PASSED] Both, NTSC Default, with PAL on command-line
[22:07:53] [PASSED] Both, PAL Default, with NTSC on command-line
[22:07:53] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[22:07:53] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[22:07:53] ================== drm_rect (9 subtests) ===================
[22:07:53] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[22:07:53] [PASSED] drm_test_rect_clip_scaled_not_clipped
[22:07:53] [PASSED] drm_test_rect_clip_scaled_clipped
[22:07:53] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[22:07:53] ================= drm_test_rect_intersect  =================
[22:07:53] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[22:07:53] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[22:07:53] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[22:07:53] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[22:07:53] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[22:07:53] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[22:07:53] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[22:07:53] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[22:07:53] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[22:07:53] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[22:07:53] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[22:07:53] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[22:07:53] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[22:07:53] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[22:07:53] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[22:07:53] ============= [PASSED] drm_test_rect_intersect =============
[22:07:53] ================ drm_test_rect_calc_hscale  ================
[22:07:53] [PASSED] normal use
[22:07:53] [PASSED] out of max range
[22:07:53] [PASSED] out of min range
[22:07:53] [PASSED] zero dst
[22:07:53] [PASSED] negative src
[22:07:53] [PASSED] negative dst
[22:07:53] ============ [PASSED] drm_test_rect_calc_hscale ============
[22:07:53] ================ drm_test_rect_calc_vscale  ================
[22:07:53] [PASSED] normal use
[22:07:53] [PASSED] out of max range
[22:07:53] [PASSED] out of min range
[22:07:53] [PASSED] zero dst
[22:07:53] [PASSED] negative src
[22:07:53] [PASSED] negative dst
[22:07:53] ============ [PASSED] drm_test_rect_calc_vscale ============
[22:07:53] ================== drm_test_rect_rotate  ===================
[22:07:53] [PASSED] reflect-x
[22:07:53] [PASSED] reflect-y
[22:07:53] [PASSED] rotate-0
[22:07:53] [PASSED] rotate-90
[22:07:53] [PASSED] rotate-180
[22:07:53] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[22:07:53] ============== [PASSED] drm_test_rect_rotate ===============
[22:07:53] ================ drm_test_rect_rotate_inv  =================
[22:07:53] [PASSED] reflect-x
[22:07:53] [PASSED] reflect-y
[22:07:53] [PASSED] rotate-0
[22:07:53] [PASSED] rotate-90
[22:07:53] [PASSED] rotate-180
[22:07:53] [PASSED] rotate-270
[22:07:53] ============ [PASSED] drm_test_rect_rotate_inv =============
[22:07:53] ==================== [PASSED] drm_rect =====================
[22:07:53] ============ drm_sysfb_modeset_test (1 subtest) ============
[22:07:53] ============ drm_test_sysfb_build_fourcc_list  =============
[22:07:53] [PASSED] no native formats
[22:07:53] [PASSED] XRGB8888 as native format
[22:07:53] [PASSED] remove duplicates
[22:07:53] [PASSED] convert alpha formats
[22:07:53] [PASSED] random formats
[22:07:53] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[22:07:53] ============= [PASSED] drm_sysfb_modeset_test ==============
[22:07:53] ============================================================
[22:07:53] Testing complete. Ran 616 tests: passed: 616
[22:07:53] Elapsed time: 24.792s total, 1.692s configuring, 22.880s building, 0.188s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[22:07:53] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:07:55] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:08:03] Starting KUnit Kernel (1/1)...
[22:08:03] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:08:03] ================= ttm_device (5 subtests) ==================
[22:08:03] [PASSED] ttm_device_init_basic
[22:08:03] [PASSED] ttm_device_init_multiple
[22:08:03] [PASSED] ttm_device_fini_basic
[22:08:03] [PASSED] ttm_device_init_no_vma_man
[22:08:03] ================== ttm_device_init_pools  ==================
[22:08:03] [PASSED] No DMA allocations, no DMA32 required
[22:08:03] [PASSED] DMA allocations, DMA32 required
[22:08:03] [PASSED] No DMA allocations, DMA32 required
[22:08:03] [PASSED] DMA allocations, no DMA32 required
[22:08:03] ============== [PASSED] ttm_device_init_pools ==============
[22:08:03] =================== [PASSED] ttm_device ====================
[22:08:03] ================== ttm_pool (8 subtests) ===================
[22:08:03] ================== ttm_pool_alloc_basic  ===================
[22:08:03] [PASSED] One page
[22:08:03] [PASSED] More than one page
[22:08:03] [PASSED] Above the allocation limit
[22:08:03] [PASSED] One page, with coherent DMA mappings enabled
[22:08:03] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:08:03] ============== [PASSED] ttm_pool_alloc_basic ===============
[22:08:03] ============== ttm_pool_alloc_basic_dma_addr  ==============
[22:08:03] [PASSED] One page
[22:08:03] [PASSED] More than one page
[22:08:03] [PASSED] Above the allocation limit
[22:08:03] [PASSED] One page, with coherent DMA mappings enabled
[22:08:03] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:08:03] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[22:08:03] [PASSED] ttm_pool_alloc_order_caching_match
[22:08:03] [PASSED] ttm_pool_alloc_caching_mismatch
[22:08:03] [PASSED] ttm_pool_alloc_order_mismatch
[22:08:03] [PASSED] ttm_pool_free_dma_alloc
[22:08:03] [PASSED] ttm_pool_free_no_dma_alloc
[22:08:03] [PASSED] ttm_pool_fini_basic
[22:08:03] ==================== [PASSED] ttm_pool =====================
[22:08:03] ================ ttm_resource (8 subtests) =================
[22:08:03] ================= ttm_resource_init_basic  =================
[22:08:03] [PASSED] Init resource in TTM_PL_SYSTEM
[22:08:03] [PASSED] Init resource in TTM_PL_VRAM
[22:08:03] [PASSED] Init resource in a private placement
[22:08:03] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[22:08:03] ============= [PASSED] ttm_resource_init_basic =============
[22:08:03] [PASSED] ttm_resource_init_pinned
[22:08:03] [PASSED] ttm_resource_fini_basic
[22:08:03] [PASSED] ttm_resource_manager_init_basic
[22:08:03] [PASSED] ttm_resource_manager_usage_basic
[22:08:03] [PASSED] ttm_resource_manager_set_used_basic
[22:08:03] [PASSED] ttm_sys_man_alloc_basic
[22:08:03] [PASSED] ttm_sys_man_free_basic
[22:08:03] ================== [PASSED] ttm_resource ===================
[22:08:03] =================== ttm_tt (15 subtests) ===================
[22:08:03] ==================== ttm_tt_init_basic  ====================
[22:08:03] [PASSED] Page-aligned size
[22:08:03] [PASSED] Extra pages requested
[22:08:03] ================ [PASSED] ttm_tt_init_basic ================
[22:08:03] [PASSED] ttm_tt_init_misaligned
[22:08:03] [PASSED] ttm_tt_fini_basic
[22:08:03] [PASSED] ttm_tt_fini_sg
[22:08:03] [PASSED] ttm_tt_fini_shmem
[22:08:03] [PASSED] ttm_tt_create_basic
[22:08:03] [PASSED] ttm_tt_create_invalid_bo_type
[22:08:03] [PASSED] ttm_tt_create_ttm_exists
[22:08:03] [PASSED] ttm_tt_create_failed
[22:08:03] [PASSED] ttm_tt_destroy_basic
[22:08:03] [PASSED] ttm_tt_populate_null_ttm
[22:08:03] [PASSED] ttm_tt_populate_populated_ttm
[22:08:03] [PASSED] ttm_tt_unpopulate_basic
[22:08:03] [PASSED] ttm_tt_unpopulate_empty_ttm
[22:08:03] [PASSED] ttm_tt_swapin_basic
[22:08:03] ===================== [PASSED] ttm_tt ======================
[22:08:03] =================== ttm_bo (14 subtests) ===================
[22:08:03] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[22:08:03] [PASSED] Cannot be interrupted and sleeps
[22:08:03] [PASSED] Cannot be interrupted, locks straight away
[22:08:03] [PASSED] Can be interrupted, sleeps
[22:08:03] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[22:08:03] [PASSED] ttm_bo_reserve_locked_no_sleep
[22:08:03] [PASSED] ttm_bo_reserve_no_wait_ticket
[22:08:03] [PASSED] ttm_bo_reserve_double_resv
[22:08:03] [PASSED] ttm_bo_reserve_interrupted
[22:08:03] [PASSED] ttm_bo_reserve_deadlock
[22:08:03] [PASSED] ttm_bo_unreserve_basic
[22:08:03] [PASSED] ttm_bo_unreserve_pinned
[22:08:03] [PASSED] ttm_bo_unreserve_bulk
[22:08:03] [PASSED] ttm_bo_put_basic
[22:08:03] [PASSED] ttm_bo_put_shared_resv
[22:08:03] [PASSED] ttm_bo_pin_basic
[22:08:03] [PASSED] ttm_bo_pin_unpin_resource
[22:08:03] [PASSED] ttm_bo_multiple_pin_one_unpin
[22:08:03] ===================== [PASSED] ttm_bo ======================
[22:08:03] ============== ttm_bo_validate (21 subtests) ===============
[22:08:03] ============== ttm_bo_init_reserved_sys_man  ===============
[22:08:03] [PASSED] Buffer object for userspace
[22:08:03] [PASSED] Kernel buffer object
[22:08:03] [PASSED] Shared buffer object
[22:08:03] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[22:08:03] ============== ttm_bo_init_reserved_mock_man  ==============
[22:08:03] [PASSED] Buffer object for userspace
[22:08:03] [PASSED] Kernel buffer object
[22:08:03] [PASSED] Shared buffer object
[22:08:03] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[22:08:03] [PASSED] ttm_bo_init_reserved_resv
[22:08:03] ================== ttm_bo_validate_basic  ==================
[22:08:03] [PASSED] Buffer object for userspace
[22:08:03] [PASSED] Kernel buffer object
[22:08:03] [PASSED] Shared buffer object
[22:08:03] ============== [PASSED] ttm_bo_validate_basic ==============
[22:08:03] [PASSED] ttm_bo_validate_invalid_placement
[22:08:03] ============= ttm_bo_validate_same_placement  ==============
[22:08:03] [PASSED] System manager
[22:08:03] [PASSED] VRAM manager
[22:08:03] ========= [PASSED] ttm_bo_validate_same_placement ==========
[22:08:03] [PASSED] ttm_bo_validate_failed_alloc
[22:08:03] [PASSED] ttm_bo_validate_pinned
[22:08:03] [PASSED] ttm_bo_validate_busy_placement
[22:08:03] ================ ttm_bo_validate_multihop  =================
[22:08:03] [PASSED] Buffer object for userspace
[22:08:03] [PASSED] Kernel buffer object
[22:08:03] [PASSED] Shared buffer object
[22:08:03] ============ [PASSED] ttm_bo_validate_multihop =============
[22:08:03] ========== ttm_bo_validate_no_placement_signaled  ==========
[22:08:03] [PASSED] Buffer object in system domain, no page vector
[22:08:03] [PASSED] Buffer object in system domain with an existing page vector
[22:08:03] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[22:08:03] ======== ttm_bo_validate_no_placement_not_signaled  ========
[22:08:03] [PASSED] Buffer object for userspace
[22:08:03] [PASSED] Kernel buffer object
[22:08:03] [PASSED] Shared buffer object
[22:08:03] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[22:08:03] [PASSED] ttm_bo_validate_move_fence_signaled
[22:08:03] ========= ttm_bo_validate_move_fence_not_signaled  =========
[22:08:03] [PASSED] Waits for GPU
[22:08:03] [PASSED] Tries to lock straight away
[22:08:03] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[22:08:03] [PASSED] ttm_bo_validate_happy_evict
[22:08:03] [PASSED] ttm_bo_validate_all_pinned_evict
[22:08:03] [PASSED] ttm_bo_validate_allowed_only_evict
[22:08:03] [PASSED] ttm_bo_validate_deleted_evict
[22:08:03] [PASSED] ttm_bo_validate_busy_domain_evict
[22:08:03] [PASSED] ttm_bo_validate_evict_gutting
[22:08:03] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[22:08:03] ================= [PASSED] ttm_bo_validate =================
[22:08:03] ============================================================
[22:08:03] Testing complete. Ran 101 tests: passed: 101
[22:08:03] Elapsed time: 9.886s total, 1.699s configuring, 7.970s building, 0.187s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 20+ messages in thread

* ✓ Xe.CI.BAT: success for drm/xe: replace basename() with portable strrchr() (rev2)
  2025-08-20 20:16 [PATCH] drm/xe: replace basename() with portable strrchr() Carlos Llamas
                   ` (4 preceding siblings ...)
  2025-08-21 22:08 ` ✓ CI.KUnit: success for drm/xe: replace basename() with portable strrchr() (rev2) Patchwork
@ 2025-08-21 22:46 ` Patchwork
  2025-08-22 11:15 ` ✓ Xe.CI.Full: success for drm/xe: replace basename() with portable strrchr() Patchwork
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-08-21 22:46 UTC (permalink / raw)
  To: Carlos Llamas; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 1484 bytes --]

== Series Details ==

Series: drm/xe: replace basename() with portable strrchr() (rev2)
URL   : https://patchwork.freedesktop.org/series/153291/
State : success

== Summary ==

CI Bug Log - changes from xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f_BAT -> xe-pw-153291v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in xe-pw-153291v2_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-plain-flip@d-edp1:
    - bat-adlp-7:         [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4543]) +1 other test dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html

  
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543


Build changes
-------------

  * Linux: xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f -> xe-pw-153291v2

  IGT_8503: 8503
  xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f: cca87ca63e2f5b8a785dc59c23e526987530b27f
  xe-pw-153291v2: 153291v2

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/index.html

[-- Attachment #2: Type: text/html, Size: 2049 bytes --]

^ permalink raw reply	[flat|nested] 20+ messages in thread

* ✓ Xe.CI.Full: success for drm/xe: replace basename() with portable strrchr()
  2025-08-20 20:16 [PATCH] drm/xe: replace basename() with portable strrchr() Carlos Llamas
                   ` (5 preceding siblings ...)
  2025-08-21 22:46 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-08-22 11:15 ` Patchwork
  2025-08-22 22:12 ` ✗ Xe.CI.Full: failure for drm/xe: replace basename() with portable strrchr() (rev2) Patchwork
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-08-22 11:15 UTC (permalink / raw)
  To: Carlos Llamas; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 44594 bytes --]

== Series Details ==

Series: drm/xe: replace basename() with portable strrchr()
URL   : https://patchwork.freedesktop.org/series/153291/
State : success

== Summary ==

CI Bug Log - changes from xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408_FULL -> xe-pw-153291v1_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in xe-pw-153291v1_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          [PASS][1] -> [FAIL][2] ([Intel XE#911]) +3 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
    - shard-adlp:         [PASS][3] -> [FAIL][4] ([Intel XE#3884]) +1 other test fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-2/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-adlp-3/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][5] ([Intel XE#1407])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#1124]) +2 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-8/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-adlp:         [PASS][7] -> [DMESG-FAIL][8] ([Intel XE#4543]) +14 other tests dmesg-fail
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][9] ([Intel XE#1124]) +4 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][10] ([Intel XE#2191])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2887]) +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][12] ([Intel XE#2669]) +3 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][13] ([Intel XE#455] / [Intel XE#787]) +16 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#2887]) +5 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][15] ([Intel XE#3432])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#787]) +111 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][17] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) +1 other test incomplete
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_cdclk@mode-transition@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][18] ([Intel XE#4417]) +3 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-433/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-lnl:          NOTRUN -> [SKIP][19] ([Intel XE#373]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-5/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_content_protection@atomic@pipe-a-dp-2:
    - shard-dg2-set2:     NOTRUN -> [FAIL][20] ([Intel XE#1178]) +2 other tests fail
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-432/igt@kms_content_protection@atomic@pipe-a-dp-2.html

  * igt@kms_content_protection@uevent@pipe-a-dp-2:
    - shard-dg2-set2:     NOTRUN -> [FAIL][21] ([Intel XE#1188])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-432/igt@kms_content_protection@uevent@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-lnl:          NOTRUN -> [SKIP][22] ([Intel XE#2321])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-lnl:          NOTRUN -> [SKIP][23] ([Intel XE#309]) +2 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
    - shard-bmg:          [PASS][24] -> [SKIP][25] ([Intel XE#2291]) +3 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [PASS][26] -> [FAIL][27] ([Intel XE#4633])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [PASS][28] -> [SKIP][29] ([Intel XE#4302])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_flip@2x-dpms-vs-vblank-race:
    - shard-lnl:          NOTRUN -> [SKIP][30] ([Intel XE#1421]) +2 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-2/igt@kms_flip@2x-dpms-vs-vblank-race.html

  * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
    - shard-bmg:          [PASS][31] -> [SKIP][32] ([Intel XE#2316]) +6 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html

  * igt@kms_flip@bo-too-big-interruptible@a-edp1:
    - shard-lnl:          NOTRUN -> [TIMEOUT][33] ([Intel XE#1504] / [Intel XE#5737]) +1 other test timeout
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-5/igt@kms_flip@bo-too-big-interruptible@a-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [PASS][34] -> [FAIL][35] ([Intel XE#301]) +1 other test fail
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
    - shard-adlp:         [PASS][36] -> [DMESG-WARN][37] ([Intel XE#4543]) +9 other tests dmesg-warn
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-4/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-adlp-3/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html

  * igt@kms_flip@flip-vs-rmfb-interruptible:
    - shard-adlp:         [PASS][38] -> [DMESG-WARN][39] ([Intel XE#4543] / [Intel XE#5208])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-8/igt@kms_flip@flip-vs-rmfb-interruptible.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [PASS][40] -> [INCOMPLETE][41] ([Intel XE#2049] / [Intel XE#2597]) +3 other tests incomplete
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-dp2:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][42] ([Intel XE#2049] / [Intel XE#2597])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible@c-dp2.html

  * igt@kms_flip@flip-vs-suspend@c-hdmi-a6:
    - shard-dg2-set2:     [PASS][43] -> [INCOMPLETE][44] ([Intel XE#2049] / [Intel XE#2597]) +2 other tests incomplete
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-dg2-463/igt@kms_flip@flip-vs-suspend@c-hdmi-a6.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-466/igt@kms_flip@flip-vs-suspend@c-hdmi-a6.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#2311])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][46] ([Intel XE#651]) +3 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][47] ([Intel XE#656]) +4 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][48] ([Intel XE#651])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
    - shard-adlp:         [PASS][49] -> [DMESG-WARN][50] ([Intel XE#2953] / [Intel XE#4173]) +6 other tests dmesg-warn
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#5390])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#2313])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][53] ([Intel XE#653]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [PASS][54] -> [SKIP][55] ([Intel XE#3012])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-2-size-256:
    - shard-dg2-set2:     NOTRUN -> [FAIL][56] ([Intel XE#616]) +2 other tests fail
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-432/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-2-size-256.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [PASS][57] -> [FAIL][58] ([Intel XE#718])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][59] ([Intel XE#4608] / [Intel XE#5899]) +3 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][60] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#5899]) +1 other test skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][61] ([Intel XE#4609] / [Intel XE#5899])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html

  * igt@kms_psr@pr-sprite-render:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#1406] / [Intel XE#5899]) +1 other test skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-1/igt@kms_psr@pr-sprite-render.html

  * igt@kms_psr@psr2-cursor-blt:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#2234] / [Intel XE#2850] / [Intel XE#5899]) +1 other test skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-8/igt@kms_psr@psr2-cursor-blt.html
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#5784] / [Intel XE#5899]) +2 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-2/igt@kms_psr@psr2-cursor-blt.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#3414] / [Intel XE#3904])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-8/igt@kms_rotation_crc@bad-tiling.html
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#3414] / [Intel XE#3904])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-6/igt@kms_rotation_crc@bad-tiling.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-bmg:          [PASS][67] -> [SKIP][68] ([Intel XE#1435])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-2/igt@kms_setmode@invalid-clone-single-crtc.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-lnl:          NOTRUN -> [SKIP][69] ([Intel XE#1091] / [Intel XE#2849])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@xe_eudebug@basic-client:
    - shard-dg2-set2:     NOTRUN -> [SKIP][70] ([Intel XE#4837])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-434/igt@xe_eudebug@basic-client.html

  * igt@xe_eudebug@basic-connect:
    - shard-lnl:          NOTRUN -> [SKIP][71] ([Intel XE#4837]) +4 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-1/igt@xe_eudebug@basic-connect.html

  * igt@xe_eudebug@discovery-empty:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#4837]) +1 other test skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-6/igt@xe_eudebug@discovery-empty.html

  * igt@xe_evict@evict-small-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][73] ([Intel XE#688]) +1 other test skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-7/igt@xe_evict@evict-small-multi-vm.html

  * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> [SKIP][74] ([Intel XE#1392])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-once-null-defer-bind:
    - shard-dg2-set2:     [PASS][75] -> [SKIP][76] ([Intel XE#1392]) +4 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-dg2-435/igt@xe_exec_basic@multigpu-once-null-defer-bind.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null-defer-bind.html

  * igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault:
    - shard-adlp:         NOTRUN -> [SKIP][77] ([Intel XE#288] / [Intel XE#5561])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-adlp-3/igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][78] ([Intel XE#288]) +3 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault.html

  * igt@xe_exec_reset@cm-close-fd:
    - shard-adlp:         [PASS][79] -> [DMESG-WARN][80] ([Intel XE#3868])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-4/igt@xe_exec_reset@cm-close-fd.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-dg2-set2:     [PASS][81] -> [DMESG-WARN][82] ([Intel XE#3876])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_exec_system_allocator@once-large-mmap-free-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#4943]) +1 other test skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-2/igt@xe_exec_system_allocator@once-large-mmap-free-huge-nomemset.html

  * igt@xe_exec_system_allocator@process-many-mmap-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][84] ([Intel XE#4943]) +4 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-3/igt@xe_exec_system_allocator@process-many-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-large-mmap-remap-eocheck:
    - shard-adlp:         NOTRUN -> [SKIP][85] ([Intel XE#4915]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-adlp-1/igt@xe_exec_system_allocator@threads-many-large-mmap-remap-eocheck.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-race-nomemset:
    - shard-dg2-set2:     NOTRUN -> [SKIP][86] ([Intel XE#4915]) +12 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-466/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-race-nomemset.html

  * igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate:
    - shard-adlp:         [PASS][87] -> [DMESG-FAIL][88] ([Intel XE#3876]) +1 other test dmesg-fail
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-3/igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-adlp-8/igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate.html
    - shard-bmg:          [PASS][89] -> [DMESG-FAIL][90] ([Intel XE#3876]) +1 other test dmesg-fail
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-4/igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-6/igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-lnl:          NOTRUN -> [SKIP][91] ([Intel XE#2229])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-4/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_pm@s2idle-basic-exec:
    - shard-adlp:         [PASS][92] -> [DMESG-WARN][93] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-8/igt@xe_pm@s2idle-basic-exec.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-adlp-6/igt@xe_pm@s2idle-basic-exec.html

  * igt@xe_pmu@fn-engine-activity-sched-if-idle:
    - shard-bmg:          [PASS][94] -> [DMESG-WARN][95] ([Intel XE#3876])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-3/igt@xe_pmu@fn-engine-activity-sched-if-idle.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y:
    - shard-adlp:         [DMESG-WARN][96] ([Intel XE#4543]) -> [PASS][97] +17 other tests pass
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-9/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-adlp-8/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-adlp:         [DMESG-FAIL][98] ([Intel XE#4543]) -> [PASS][99] +7 other tests pass
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - shard-bmg:          [SKIP][100] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][101]
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
    - shard-bmg:          [SKIP][102] ([Intel XE#2291]) -> [PASS][103]
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html

  * igt@kms_flip@2x-busy-flip:
    - shard-bmg:          [SKIP][104] ([Intel XE#2316]) -> [PASS][105] +1 other test pass
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_flip@2x-busy-flip.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-2/igt@kms_flip@2x-busy-flip.html

  * igt@kms_flip@flip-vs-expired-vblank@b-edp1:
    - shard-lnl:          [FAIL][106] ([Intel XE#301]) -> [PASS][107] +1 other test pass
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-adlp:         [DMESG-FAIL][108] ([Intel XE#4543] / [Intel XE#4921]) -> [PASS][109] +1 other test pass
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

  * igt@kms_hdr@static-swap:
    - shard-bmg:          [SKIP][110] ([Intel XE#1503]) -> [PASS][111] +1 other test pass
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_hdr@static-swap.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-8/igt@kms_hdr@static-swap.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-bmg:          [SKIP][112] ([Intel XE#3012]) -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-4/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_mmap_write_crc@main:
    - shard-lnl:          [ABORT][114] ([Intel XE#5902]) -> [PASS][115] +1 other test pass
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-5/igt@kms_mmap_write_crc@main.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-5/igt@kms_mmap_write_crc@main.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [SKIP][116] ([Intel XE#4596]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-lnl:          [FAIL][118] ([Intel XE#718]) -> [PASS][119] +1 other test pass
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_vblank@ts-continuation-dpms-suspend:
    - shard-adlp:         [DMESG-WARN][120] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][121] +3 other tests pass
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-9/igt@kms_vblank@ts-continuation-dpms-suspend.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-adlp-4/igt@kms_vblank@ts-continuation-dpms-suspend.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [FAIL][122] ([Intel XE#4459]) -> [PASS][123] +1 other test pass
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
    - shard-dg2-set2:     [SKIP][124] ([Intel XE#1392]) -> [PASS][125] +9 other tests pass
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-433/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm:
    - shard-lnl:          [FAIL][126] -> [PASS][127]
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-8/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html

  * igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm:
    - shard-bmg:          [FAIL][128] -> [PASS][129]
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html

  * igt@xe_exec_threads@threads-hang-userptr-rebind:
    - shard-dg2-set2:     [DMESG-WARN][130] ([Intel XE#3876]) -> [PASS][131]
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-dg2-434/igt@xe_exec_threads@threads-hang-userptr-rebind.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-435/igt@xe_exec_threads@threads-hang-userptr-rebind.html

  * igt@xe_exec_threads@threads-mixed-fd-rebind:
    - shard-adlp:         [DMESG-FAIL][132] ([Intel XE#3876]) -> [PASS][133]
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-9/igt@xe_exec_threads@threads-mixed-fd-rebind.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-adlp-9/igt@xe_exec_threads@threads-mixed-fd-rebind.html

  * igt@xe_sriov_flr@flr-each-isolation:
    - shard-bmg:          [FAIL][134] ([Intel XE#5937]) -> [PASS][135]
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-5/igt@xe_sriov_flr@flr-each-isolation.html

  
#### Warnings ####

  * igt@kms_content_protection@atomic-dpms:
    - shard-bmg:          [FAIL][136] ([Intel XE#1178]) -> [SKIP][137] ([Intel XE#2341])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-7/igt@kms_content_protection@atomic-dpms.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_flip@flip-vs-rmfb:
    - shard-adlp:         [DMESG-WARN][138] ([Intel XE#4543] / [Intel XE#5208]) -> [DMESG-WARN][139] ([Intel XE#5208])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-8/igt@kms_flip@flip-vs-rmfb.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-adlp-6/igt@kms_flip@flip-vs-rmfb.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-adlp:         [DMESG-WARN][140] ([Intel XE#4543]) -> [DMESG-WARN][141] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
    - shard-bmg:          [SKIP][142] ([Intel XE#2311]) -> [SKIP][143] ([Intel XE#2312]) +14 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][144] ([Intel XE#2312]) -> [SKIP][145] ([Intel XE#2311]) +5 other tests skip
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][146] ([Intel XE#2312]) -> [SKIP][147] ([Intel XE#5390]) +3 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][148] ([Intel XE#5390]) -> [SKIP][149] ([Intel XE#2312]) +5 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][150] ([Intel XE#2313]) -> [SKIP][151] ([Intel XE#2312]) +10 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][152] ([Intel XE#2312]) -> [SKIP][153] ([Intel XE#2313]) +6 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
    - shard-lnl:          [SKIP][154] ([Intel XE#2893] / [Intel XE#5899]) -> [ABORT][155] ([Intel XE#5902])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-lnl-3/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-dg2-set2:     [SKIP][156] ([Intel XE#362]) -> [SKIP][157] ([Intel XE#1500])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [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#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
  [Intel XE#5737]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5737
  [Intel XE#5784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5784
  [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
  [Intel XE#5899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5899
  [Intel XE#5902]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5902
  [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911


Build changes
-------------

  * IGT: IGT_8501 -> IGT_8503
  * Linux: xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408 -> xe-pw-153291v1

  IGT_8501: 87027eb34ac38b8217351eeaa021aeae847b6b61 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8503: 8503
  xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408: 16e133c7e6922a9f224b272a48ac172cf06e3408
  xe-pw-153291v1: 153291v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v1/index.html

[-- Attachment #2: Type: text/html, Size: 51652 bytes --]

^ permalink raw reply	[flat|nested] 20+ messages in thread

* ✗ Xe.CI.Full: failure for drm/xe: replace basename() with portable strrchr() (rev2)
  2025-08-20 20:16 [PATCH] drm/xe: replace basename() with portable strrchr() Carlos Llamas
                   ` (6 preceding siblings ...)
  2025-08-22 11:15 ` ✓ Xe.CI.Full: success for drm/xe: replace basename() with portable strrchr() Patchwork
@ 2025-08-22 22:12 ` Patchwork
  2025-08-25 17:29 ` ✓ CI.KUnit: success for drm/xe: replace basename() with portable strrchr() (rev3) Patchwork
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-08-22 22:12 UTC (permalink / raw)
  To: Carlos Llamas; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 38063 bytes --]

== Series Details ==

Series: drm/xe: replace basename() with portable strrchr() (rev2)
URL   : https://patchwork.freedesktop.org/series/153291/
State : failure

== Summary ==

CI Bug Log - changes from xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f_FULL -> xe-pw-153291v2_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-153291v2_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-153291v2_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 xe-pw-153291v2_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_exec_system_allocator@process-many-new-bo-map-nomemset:
    - shard-lnl:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-lnl-2/igt@xe_exec_system_allocator@process-many-new-bo-map-nomemset.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-lnl-2/igt@xe_exec_system_allocator@process-many-new-bo-map-nomemset.html

  
Known issues
------------

  Here are the changes found in xe-pw-153291v2_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][3] ([Intel XE#316])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-432/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
    - shard-bmg:          NOTRUN -> [SKIP][4] ([Intel XE#2327])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [SKIP][5] ([Intel XE#1124]) +2 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
    - shard-dg2-set2:     NOTRUN -> [SKIP][6] ([Intel XE#1124])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-432/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
    - shard-bmg:          [PASS][7] -> [FAIL][8] ([Intel XE#5376])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][9] ([Intel XE#5376])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [PASS][10] -> [INCOMPLETE][11] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][12] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#2887]) +2 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
    - shard-dg2-set2:     [PASS][14] -> [INCOMPLETE][15] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html

  * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#787]) +90 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][17] ([Intel XE#455] / [Intel XE#787]) +12 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html

  * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2252])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][19] ([Intel XE#373])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-464/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html

  * igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][20] ([Intel XE#1178]) +1 other test fail
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-5/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][21] ([Intel XE#1178]) +1 other test fail
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-435/igt@kms_content_protection@srm@pipe-a-dp-4.html

  * igt@kms_content_protection@uevent@pipe-a-dp-2:
    - shard-dg2-set2:     NOTRUN -> [FAIL][22] ([Intel XE#1188])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-432/igt@kms_content_protection@uevent@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-offscreen-32x10:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2320]) +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-dg2-set2:     NOTRUN -> [SKIP][24] ([Intel XE#308])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-464/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#2321])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-bmg:          [PASS][26] -> [SKIP][27] ([Intel XE#2291]) +3 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
    - shard-bmg:          [PASS][28] -> [DMESG-WARN][29] ([Intel XE#5354])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-3/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [PASS][30] -> [FAIL][31] ([Intel XE#4633])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [PASS][32] -> [FAIL][33] ([Intel XE#5299])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [PASS][34] -> [SKIP][35] ([Intel XE#4302])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-3/igt@kms_display_modes@extended-mode-basic.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-bmg:          [PASS][36] -> [SKIP][37] ([Intel XE#1340])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#776])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-7/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-bmg:          [PASS][39] -> [SKIP][40] ([Intel XE#2316]) +8 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_flip@basic-plain-flip@c-hdmi-a1:
    - shard-adlp:         [PASS][41] -> [DMESG-WARN][42] ([Intel XE#4543]) +4 other tests dmesg-warn
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-adlp-2/igt@kms_flip@basic-plain-flip@c-hdmi-a1.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-adlp-9/igt@kms_flip@basic-plain-flip@c-hdmi-a1.html

  * igt@kms_flip@flip-vs-rmfb:
    - shard-adlp:         [PASS][43] -> [DMESG-WARN][44] ([Intel XE#4543] / [Intel XE#5208])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-adlp-9/igt@kms_flip@flip-vs-rmfb.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-adlp-2/igt@kms_flip@flip-vs-rmfb.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][45] ([Intel XE#455]) +4 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#2293]) +1 other test skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_tiling@flip-change-tiling:
    - shard-adlp:         [PASS][48] -> [DMESG-FAIL][49] ([Intel XE#4543]) +1 other test dmesg-fail
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x:
    - shard-adlp:         [PASS][50] -> [FAIL][51] ([Intel XE#1874]) +1 other test fail
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#2311]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][53] ([Intel XE#651]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#5390]) +2 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#2313]) +2 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][56] ([Intel XE#653])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [PASS][57] -> [SKIP][58] ([Intel XE#3012])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
    - shard-dg2-set2:     NOTRUN -> [FAIL][59] ([Intel XE#616]) +3 other tests fail
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-435/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html

  * igt@kms_psr@fbc-pr-cursor-blt:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#2234] / [Intel XE#2850] / [Intel XE#5899]) +4 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-7/igt@kms_psr@fbc-pr-cursor-blt.html

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][61] ([Intel XE#2850] / [Intel XE#5899] / [Intel XE#929]) +1 other test skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-464/igt@kms_psr@fbc-psr2-primary-render.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#3414] / [Intel XE#3904])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@xe_copy_basic@mem-set-linear-0xfffe:
    - shard-dg2-set2:     NOTRUN -> [SKIP][63] ([Intel XE#1126])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0xfffe.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race:
    - shard-dg2-set2:     [PASS][64] -> [SKIP][65] ([Intel XE#1392]) +6 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-dg2-433/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-once-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#2322]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-4/igt@xe_exec_basic@multigpu-once-userptr-rebind.html

  * igt@xe_exec_fault_mode@once-basic-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][67] ([Intel XE#288]) +1 other test skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-432/igt@xe_exec_fault_mode@once-basic-imm.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-adlp:         [PASS][68] -> [DMESG-WARN][69] ([Intel XE#3876])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-adlp-8/igt@xe_exec_reset@parallel-gt-reset.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-adlp-9/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_exec_system_allocator@once-large-mmap-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#4943]) +4 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-7/igt@xe_exec_system_allocator@once-large-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset:
    - shard-bmg:          [PASS][71] -> [FAIL][72] ([Intel XE#5817])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset.html

  * igt@xe_exec_system_allocator@unaligned-alloc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][73] ([Intel XE#4915]) +21 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-432/igt@xe_exec_system_allocator@unaligned-alloc.html

  * igt@xe_exec_threads@threads-hang-rebind:
    - shard-dg2-set2:     [PASS][74] -> [DMESG-WARN][75] ([Intel XE#3876])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-dg2-435/igt@xe_exec_threads@threads-hang-rebind.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-464/igt@xe_exec_threads@threads-hang-rebind.html

  * igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate:
    - shard-adlp:         [PASS][76] -> [DMESG-FAIL][77] ([Intel XE#3876]) +1 other test dmesg-fail
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-adlp-8/igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-adlp-9/igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate.html

  * igt@xe_pm@s2idle-mocs:
    - shard-adlp:         [PASS][78] -> [DMESG-WARN][79] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-adlp-2/igt@xe_pm@s2idle-mocs.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-adlp-1/igt@xe_pm@s2idle-mocs.html

  * igt@xe_pxp@pxp-stale-bo-exec-post-rpm:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#4733])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-4/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-3:
    - shard-bmg:          [INCOMPLETE][81] ([Intel XE#4912]) -> [PASS][82] +1 other test pass
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-4/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-3.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-7/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-3.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-adlp:         [DMESG-FAIL][83] ([Intel XE#4543]) -> [PASS][84]
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
    - shard-bmg:          [SKIP][85] ([Intel XE#2291]) -> [PASS][86] +3 other tests pass
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html

  * igt@kms_dp_aux_dev:
    - shard-bmg:          [SKIP][87] ([Intel XE#3009]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-6/igt@kms_dp_aux_dev.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-4/igt@kms_dp_aux_dev.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [SKIP][89] ([Intel XE#2373]) -> [PASS][90]
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-4/igt@kms_feature_discovery@display-2x.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-bmg:          [SKIP][91] ([Intel XE#2316]) -> [PASS][92] +5 other tests pass
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_flip@flip-vs-dpms-on-nop@b-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][93] ([Intel XE#4543]) -> [PASS][94] +4 other tests pass
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-adlp-4/igt@kms_flip@flip-vs-dpms-on-nop@b-hdmi-a1.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-adlp-6/igt@kms_flip@flip-vs-dpms-on-nop@b-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-bmg:          [INCOMPLETE][95] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][96] +1 other test pass
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-3/igt@kms_flip@flip-vs-suspend.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-2/igt@kms_flip@flip-vs-suspend.html
    - shard-dg2-set2:     [INCOMPLETE][97] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-dg2-433/igt@kms_flip@flip-vs-suspend.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-432/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_hdr@static-swap:
    - shard-bmg:          [SKIP][99] ([Intel XE#1503]) -> [PASS][100] +1 other test pass
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-6/igt@kms_hdr@static-swap.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-4/igt@kms_hdr@static-swap.html

  * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
    - shard-dg2-set2:     [SKIP][101] ([Intel XE#1392]) -> [PASS][102] +2 other tests pass
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-433/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind:
    - shard-bmg:          [FAIL][103] -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind.html

  * igt@xe_pmu@gt-frequency:
    - shard-dg2-set2:     [FAIL][105] ([Intel XE#4819]) -> [PASS][106] +1 other test pass
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-dg2-435/igt@xe_pmu@gt-frequency.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-464/igt@xe_pmu@gt-frequency.html
    - shard-lnl:          [FAIL][107] ([Intel XE#5166]) -> [PASS][108] +1 other test pass
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-lnl-7/igt@xe_pmu@gt-frequency.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-lnl-4/igt@xe_pmu@gt-frequency.html

  
#### Warnings ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][109] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [INCOMPLETE][110] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-bmg:          [FAIL][111] ([Intel XE#1178]) -> [SKIP][112] ([Intel XE#2341])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-7/igt@kms_content_protection@atomic-dpms.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [SKIP][113] ([Intel XE#2341]) -> [FAIL][114] ([Intel XE#1178]) +1 other test fail
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-6/igt@kms_content_protection@legacy.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-4/igt@kms_content_protection@legacy.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][115] ([Intel XE#2311]) -> [SKIP][116] ([Intel XE#2312]) +13 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][117] ([Intel XE#2312]) -> [SKIP][118] ([Intel XE#5390]) +3 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][119] ([Intel XE#5390]) -> [SKIP][120] ([Intel XE#2312]) +5 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
    - shard-bmg:          [SKIP][121] ([Intel XE#2312]) -> [SKIP][122] ([Intel XE#2311]) +11 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
    - shard-bmg:          [SKIP][123] ([Intel XE#2313]) -> [SKIP][124] ([Intel XE#2312]) +14 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][125] ([Intel XE#2312]) -> [SKIP][126] ([Intel XE#2313]) +8 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][127] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][128] ([Intel XE#3544])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          [SKIP][129] ([Intel XE#5021]) -> [SKIP][130] ([Intel XE#4596])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][131] ([Intel XE#2426]) -> [SKIP][132] ([Intel XE#2509])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
  [Intel XE#4912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4912
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5166
  [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
  [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5376
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5817]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5817
  [Intel XE#5899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5899
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929


Build changes
-------------

  * Linux: xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f -> xe-pw-153291v2

  IGT_8503: 8503
  xe-3597-cca87ca63e2f5b8a785dc59c23e526987530b27f: cca87ca63e2f5b8a785dc59c23e526987530b27f
  xe-pw-153291v2: 153291v2

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v2/index.html

[-- Attachment #2: Type: text/html, Size: 44418 bytes --]

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v2] drm/xe: switch to local __basename() helper
  2025-08-21 22:00       ` [PATCH v2] drm/xe: switch to local __basename() helper Carlos Llamas
@ 2025-08-23 11:56         ` Lucas De Marchi
  2025-08-25 15:49           ` Carlos Llamas
  2025-08-25 15:57           ` [PATCH v3] drm/xe: switch to local xbasename() helper Carlos Llamas
  0 siblings, 2 replies; 20+ messages in thread
From: Lucas De Marchi @ 2025-08-23 11:56 UTC (permalink / raw)
  To: Carlos Llamas
  Cc: Thomas Hellström, Rodrigo Vivi, David Airlie, Simona Vetter,
	Matt Atwood, kernel-team, linux-kernel, Tiffany Yang,
	open list:INTEL DRM XE DRIVER (Lunar Lake and newer),
	open list:DRM DRIVERS

On Thu, Aug 21, 2025 at 10:00:53PM +0000, Carlos Llamas wrote:
>Commit b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
>introduced a call to basename(). The GNU version of this function is not
>portable and fails to build with alternative libc implementations like
>musl or bionic. This causes the following build error:
>
>  drivers/gpu/drm/xe/xe_gen_wa_oob.c:130:12: error: assignment to ‘const char *’ from ‘int’ makes pointer from integer without a cast [-Wint-conversion]
>    130 |         fn = basename(fn);
>        |            ^
>
>While a POSIX version of basename() could be used, it would require a
>separate header plus the behavior differs from GNU version in that it
>might modify its argument. Not great.
>
>Instead, implement a local __basename() helper based on strrchr() that

double underscore is reserved for libc in userspace
(https://www.gnu.org/software/libc/manual/html_node/Reserved-Names.html):

	(...) all identifiers regardless of use that begin with either two
	underscores or an underscore followed by a capital letter are reserved
	names. This is so that the library and header files can define
	functions, variables, and macros for internal purposes without risk of
	conflict with names in user programs.

>provides the same functionality and avoids portability issues.

Unfortunately with that name it could created other portability issues.

Lucas De Marchi

>
>Fixes: b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
>Suggested-by: Lucas De Marchi <lucas.demarchi@intel.com>
>Reviewed-by: Tiffany Yang <ynaffit@google.com>
>Signed-off-by: Carlos Llamas <cmllamas@google.com>
>---
>v2:
> - Wrap changes in a helper function per Luca's feedback.
> - Fix typo in commit log: s/avoid/avoids/ per Tiffany.
> - Update commit log.
> - Collect tags.
>
>v1:
>https://lore.kernel.org/all/20250820201612.2549797-1-cmllamas@google.com/
>
> drivers/gpu/drm/xe/xe_gen_wa_oob.c | 10 +++++++++-
> 1 file changed, 9 insertions(+), 1 deletion(-)
>
>diff --git a/drivers/gpu/drm/xe/xe_gen_wa_oob.c b/drivers/gpu/drm/xe/xe_gen_wa_oob.c
>index 6581cb0f0e59..c18faccdeb90 100644
>--- a/drivers/gpu/drm/xe/xe_gen_wa_oob.c
>+++ b/drivers/gpu/drm/xe/xe_gen_wa_oob.c
>@@ -123,11 +123,19 @@ static int parse(FILE *input, FILE *csource, FILE *cheader, char *prefix)
> 	return 0;
> }
>
>+/* Avoid GNU vs POSIX basename() discrepancy, just use our own */
>+static const char *__basename(const char *s)
>+{
>+	const char *p = strrchr(s, '/');
>+
>+	return p ? p + 1 : s;
>+}
>+
> static int fn_to_prefix(const char *fn, char *prefix, size_t size)
> {
> 	size_t len;
>
>-	fn = basename(fn);
>+	fn = __basename(fn);
> 	len = strlen(fn);
>
> 	if (len > size - 1)
>-- 
>2.51.0.rc2.233.g662b1ed5c5-goog
>

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v2] drm/xe: switch to local __basename() helper
  2025-08-23 11:56         ` Lucas De Marchi
@ 2025-08-25 15:49           ` Carlos Llamas
  2025-08-25 15:57           ` [PATCH v3] drm/xe: switch to local xbasename() helper Carlos Llamas
  1 sibling, 0 replies; 20+ messages in thread
From: Carlos Llamas @ 2025-08-25 15:49 UTC (permalink / raw)
  To: Lucas De Marchi
  Cc: Thomas Hellström, Rodrigo Vivi, David Airlie, Simona Vetter,
	Matt Atwood, kernel-team, linux-kernel, Tiffany Yang,
	open list:INTEL DRM XE DRIVER (Lunar Lake and newer),
	open list:DRM DRIVERS

On Sat, Aug 23, 2025 at 06:56:30AM -0500, Lucas De Marchi wrote:
> On Thu, Aug 21, 2025 at 10:00:53PM +0000, Carlos Llamas wrote:
> > Commit b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
> > introduced a call to basename(). The GNU version of this function is not
> > portable and fails to build with alternative libc implementations like
> > musl or bionic. This causes the following build error:
> > 
> >  drivers/gpu/drm/xe/xe_gen_wa_oob.c:130:12: error: assignment to ‘const char *’ from ‘int’ makes pointer from integer without a cast [-Wint-conversion]
> >    130 |         fn = basename(fn);
> >        |            ^
> > 
> > While a POSIX version of basename() could be used, it would require a
> > separate header plus the behavior differs from GNU version in that it
> > might modify its argument. Not great.
> > 
> > Instead, implement a local __basename() helper based on strrchr() that
> 
> double underscore is reserved for libc in userspace
> (https://www.gnu.org/software/libc/manual/html_node/Reserved-Names.html):
> 
> 	(...) all identifiers regardless of use that begin with either two
> 	underscores or an underscore followed by a capital letter are reserved
> 	names. This is so that the library and header files can define
> 	functions, variables, and macros for internal purposes without risk of
> 	conflict with names in user programs.
> 

I see, xbasename() it is then...

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCH v3] drm/xe: switch to local xbasename() helper
  2025-08-23 11:56         ` Lucas De Marchi
  2025-08-25 15:49           ` Carlos Llamas
@ 2025-08-25 15:57           ` Carlos Llamas
  2025-08-25 16:01             ` Lucas De Marchi
  1 sibling, 1 reply; 20+ messages in thread
From: Carlos Llamas @ 2025-08-25 15:57 UTC (permalink / raw)
  To: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi,
	David Airlie, Simona Vetter, Matt Atwood
  Cc: kernel-team, linux-kernel, Carlos Llamas, Tiffany Yang,
	open list:INTEL DRM XE DRIVER (Lunar Lake and newer),
	open list:DRM DRIVERS

Commit b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
introduced a call to basename(). The GNU version of this function is not
portable and fails to build with alternative libc implementations like
musl or bionic. This causes the following build error:

  drivers/gpu/drm/xe/xe_gen_wa_oob.c:130:12: error: assignment to ‘const char *’ from ‘int’ makes pointer from integer without a cast [-Wint-conversion]
    130 |         fn = basename(fn);
        |            ^

While a POSIX version of basename() could be used, it would require a
separate header plus the behavior differs from GNU version in that it
might modify its argument. Not great.

Instead, implement a local xbasename() helper based on strrchr() that
provides the same functionality and avoids portability issues.

Fixes: b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
Suggested-by: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Tiffany Yang <ynaffit@google.com>
Signed-off-by: Carlos Llamas <cmllamas@google.com>
---
v3:
 - Switch __basename() -> xbasename() per Lucas.

v2:
https://lore.kernel.org/all/20250821220054.3700783-1-cmllamas@google.com/
 - Wrap changes in a helper function per Lucas' feedback.
 - Fix typo in commit log: s/avoid/avoids/ per Tiffany.
 - Update commit log.
 - Collect tags.

v1:
https://lore.kernel.org/all/20250820201612.2549797-1-cmllamas@google.com/
 drivers/gpu/drm/xe/xe_gen_wa_oob.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_gen_wa_oob.c b/drivers/gpu/drm/xe/xe_gen_wa_oob.c
index 6581cb0f0e59..247e41c1c48d 100644
--- a/drivers/gpu/drm/xe/xe_gen_wa_oob.c
+++ b/drivers/gpu/drm/xe/xe_gen_wa_oob.c
@@ -123,11 +123,19 @@ static int parse(FILE *input, FILE *csource, FILE *cheader, char *prefix)
 	return 0;
 }
 
+/* Avoid GNU vs POSIX basename() discrepancy, just use our own */
+static const char *xbasename(const char *s)
+{
+	const char *p = strrchr(s, '/');
+
+	return p ? p + 1 : s;
+}
+
 static int fn_to_prefix(const char *fn, char *prefix, size_t size)
 {
 	size_t len;
 
-	fn = basename(fn);
+	fn = xbasename(fn);
 	len = strlen(fn);
 
 	if (len > size - 1)
-- 
2.51.0.rc2.233.g662b1ed5c5-goog


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* Re: [PATCH v3] drm/xe: switch to local xbasename() helper
  2025-08-25 15:57           ` [PATCH v3] drm/xe: switch to local xbasename() helper Carlos Llamas
@ 2025-08-25 16:01             ` Lucas De Marchi
  0 siblings, 0 replies; 20+ messages in thread
From: Lucas De Marchi @ 2025-08-25 16:01 UTC (permalink / raw)
  To: Carlos Llamas
  Cc: Thomas Hellström, Rodrigo Vivi, David Airlie, Simona Vetter,
	Matt Atwood, kernel-team, linux-kernel, Tiffany Yang,
	open list:INTEL DRM XE DRIVER (Lunar Lake and newer),
	open list:DRM DRIVERS

On Mon, Aug 25, 2025 at 03:57:42PM +0000, Carlos Llamas wrote:
>Commit b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
>introduced a call to basename(). The GNU version of this function is not
>portable and fails to build with alternative libc implementations like
>musl or bionic. This causes the following build error:
>
>  drivers/gpu/drm/xe/xe_gen_wa_oob.c:130:12: error: assignment to ‘const char *’ from ‘int’ makes pointer from integer without a cast [-Wint-conversion]
>    130 |         fn = basename(fn);
>        |            ^
>
>While a POSIX version of basename() could be used, it would require a
>separate header plus the behavior differs from GNU version in that it
>might modify its argument. Not great.
>
>Instead, implement a local xbasename() helper based on strrchr() that
>provides the same functionality and avoids portability issues.
>
>Fixes: b0a2ee5567ab ("drm/xe: prepare xe_gen_wa_oob to be multi-use")
>Suggested-by: Lucas De Marchi <lucas.demarchi@intel.com>
>Reviewed-by: Tiffany Yang <ynaffit@google.com>
>Signed-off-by: Carlos Llamas <cmllamas@google.com>


Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>

I'll push to drm-xe-next later today. Thanks.

Lucas De Marchi

>---
>v3:
> - Switch __basename() -> xbasename() per Lucas.
>
>v2:
>https://lore.kernel.org/all/20250821220054.3700783-1-cmllamas@google.com/
> - Wrap changes in a helper function per Lucas' feedback.
> - Fix typo in commit log: s/avoid/avoids/ per Tiffany.
> - Update commit log.
> - Collect tags.
>
>v1:
>https://lore.kernel.org/all/20250820201612.2549797-1-cmllamas@google.com/
> drivers/gpu/drm/xe/xe_gen_wa_oob.c | 10 +++++++++-
> 1 file changed, 9 insertions(+), 1 deletion(-)
>
>diff --git a/drivers/gpu/drm/xe/xe_gen_wa_oob.c b/drivers/gpu/drm/xe/xe_gen_wa_oob.c
>index 6581cb0f0e59..247e41c1c48d 100644
>--- a/drivers/gpu/drm/xe/xe_gen_wa_oob.c
>+++ b/drivers/gpu/drm/xe/xe_gen_wa_oob.c
>@@ -123,11 +123,19 @@ static int parse(FILE *input, FILE *csource, FILE *cheader, char *prefix)
> 	return 0;
> }
>
>+/* Avoid GNU vs POSIX basename() discrepancy, just use our own */
>+static const char *xbasename(const char *s)
>+{
>+	const char *p = strrchr(s, '/');
>+
>+	return p ? p + 1 : s;
>+}
>+
> static int fn_to_prefix(const char *fn, char *prefix, size_t size)
> {
> 	size_t len;
>
>-	fn = basename(fn);
>+	fn = xbasename(fn);
> 	len = strlen(fn);
>
> 	if (len > size - 1)
>-- 
>2.51.0.rc2.233.g662b1ed5c5-goog
>

^ permalink raw reply	[flat|nested] 20+ messages in thread

* ✓ CI.KUnit: success for drm/xe: replace basename() with portable strrchr() (rev3)
  2025-08-20 20:16 [PATCH] drm/xe: replace basename() with portable strrchr() Carlos Llamas
                   ` (7 preceding siblings ...)
  2025-08-22 22:12 ` ✗ Xe.CI.Full: failure for drm/xe: replace basename() with portable strrchr() (rev2) Patchwork
@ 2025-08-25 17:29 ` Patchwork
  2025-08-25 18:18 ` ✓ Xe.CI.BAT: " Patchwork
  2025-08-26  2:01 ` ✗ Xe.CI.Full: failure " Patchwork
  10 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-08-25 17:29 UTC (permalink / raw)
  To: Carlos Llamas; +Cc: intel-xe

== Series Details ==

Series: drm/xe: replace basename() with portable strrchr() (rev3)
URL   : https://patchwork.freedesktop.org/series/153291/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[17:28:39] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:28:43] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[17:29:12] Starting KUnit Kernel (1/1)...
[17:29:12] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:29:12] ================== guc_buf (11 subtests) ===================
[17:29:12] [PASSED] test_smallest
[17:29:12] [PASSED] test_largest
[17:29:12] [PASSED] test_granular
[17:29:12] [PASSED] test_unique
[17:29:12] [PASSED] test_overlap
[17:29:12] [PASSED] test_reusable
[17:29:12] [PASSED] test_too_big
[17:29:12] [PASSED] test_flush
[17:29:12] [PASSED] test_lookup
[17:29:12] [PASSED] test_data
[17:29:12] [PASSED] test_class
[17:29:12] ===================== [PASSED] guc_buf =====================
[17:29:12] =================== guc_dbm (7 subtests) ===================
[17:29:12] [PASSED] test_empty
[17:29:12] [PASSED] test_default
[17:29:12] ======================== test_size  ========================
[17:29:12] [PASSED] 4
[17:29:12] [PASSED] 8
[17:29:12] [PASSED] 32
[17:29:12] [PASSED] 256
[17:29:12] ==================== [PASSED] test_size ====================
[17:29:12] ======================= test_reuse  ========================
[17:29:12] [PASSED] 4
[17:29:12] [PASSED] 8
[17:29:12] [PASSED] 32
[17:29:12] [PASSED] 256
[17:29:12] =================== [PASSED] test_reuse ====================
[17:29:12] =================== test_range_overlap  ====================
[17:29:12] [PASSED] 4
[17:29:12] [PASSED] 8
[17:29:12] [PASSED] 32
[17:29:12] [PASSED] 256
[17:29:12] =============== [PASSED] test_range_overlap ================
[17:29:12] =================== test_range_compact  ====================
[17:29:12] [PASSED] 4
[17:29:12] [PASSED] 8
[17:29:12] [PASSED] 32
[17:29:12] [PASSED] 256
[17:29:12] =============== [PASSED] test_range_compact ================
[17:29:12] ==================== test_range_spare  =====================
[17:29:12] [PASSED] 4
[17:29:12] [PASSED] 8
[17:29:12] [PASSED] 32
[17:29:12] [PASSED] 256
[17:29:12] ================ [PASSED] test_range_spare =================
[17:29:12] ===================== [PASSED] guc_dbm =====================
[17:29:12] =================== guc_idm (6 subtests) ===================
[17:29:12] [PASSED] bad_init
[17:29:12] [PASSED] no_init
[17:29:12] [PASSED] init_fini
[17:29:12] [PASSED] check_used
[17:29:12] [PASSED] check_quota
[17:29:12] [PASSED] check_all
[17:29:12] ===================== [PASSED] guc_idm =====================
[17:29:12] ================== no_relay (3 subtests) ===================
[17:29:12] [PASSED] xe_drops_guc2pf_if_not_ready
[17:29:12] [PASSED] xe_drops_guc2vf_if_not_ready
[17:29:12] [PASSED] xe_rejects_send_if_not_ready
[17:29:12] ==================== [PASSED] no_relay =====================
[17:29:12] ================== pf_relay (14 subtests) ==================
[17:29:12] [PASSED] pf_rejects_guc2pf_too_short
[17:29:12] [PASSED] pf_rejects_guc2pf_too_long
[17:29:12] [PASSED] pf_rejects_guc2pf_no_payload
[17:29:12] [PASSED] pf_fails_no_payload
[17:29:12] [PASSED] pf_fails_bad_origin
[17:29:12] [PASSED] pf_fails_bad_type
[17:29:12] [PASSED] pf_txn_reports_error
[17:29:12] [PASSED] pf_txn_sends_pf2guc
[17:29:12] [PASSED] pf_sends_pf2guc
[17:29:12] [SKIPPED] pf_loopback_nop
[17:29:12] [SKIPPED] pf_loopback_echo
[17:29:12] [SKIPPED] pf_loopback_fail
[17:29:12] [SKIPPED] pf_loopback_busy
[17:29:12] [SKIPPED] pf_loopback_retry
[17:29:12] ==================== [PASSED] pf_relay =====================
[17:29:12] ================== vf_relay (3 subtests) ===================
[17:29:12] [PASSED] vf_rejects_guc2vf_too_short
[17:29:12] [PASSED] vf_rejects_guc2vf_too_long
[17:29:12] [PASSED] vf_rejects_guc2vf_no_payload
[17:29:12] ==================== [PASSED] vf_relay =====================
[17:29:12] ===================== lmtt (1 subtest) =====================
[17:29:12] ======================== test_ops  =========================
[17:29:12] [PASSED] 2-level
[17:29:12] [PASSED] multi-level
[17:29:12] ==================== [PASSED] test_ops =====================
[17:29:12] ====================== [PASSED] lmtt =======================
[17:29:12] ================= pf_service (11 subtests) =================
[17:29:12] [PASSED] pf_negotiate_any
[17:29:12] [PASSED] pf_negotiate_base_match
[17:29:12] [PASSED] pf_negotiate_base_newer
[17:29:12] [PASSED] pf_negotiate_base_next
[17:29:12] [SKIPPED] pf_negotiate_base_older
[17:29:12] [PASSED] pf_negotiate_base_prev
[17:29:12] [PASSED] pf_negotiate_latest_match
[17:29:12] [PASSED] pf_negotiate_latest_newer
[17:29:12] [PASSED] pf_negotiate_latest_next
[17:29:12] [SKIPPED] pf_negotiate_latest_older
[17:29:12] [SKIPPED] pf_negotiate_latest_prev
[17:29:12] =================== [PASSED] pf_service ====================
[17:29:12] =================== xe_mocs (2 subtests) ===================
[17:29:12] ================ xe_live_mocs_kernel_kunit  ================
[17:29:12] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[17:29:12] ================ xe_live_mocs_reset_kunit  =================
[17:29:12] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[17:29:12] ==================== [SKIPPED] xe_mocs =====================
[17:29:12] ================= xe_migrate (2 subtests) ==================
[17:29:12] ================= xe_migrate_sanity_kunit  =================
[17:29:12] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[17:29:12] ================== xe_validate_ccs_kunit  ==================
[17:29:12] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[17:29:12] =================== [SKIPPED] xe_migrate ===================
[17:29:12] ================== xe_dma_buf (1 subtest) ==================
[17:29:12] ==================== xe_dma_buf_kunit  =====================
[17:29:12] ================ [SKIPPED] xe_dma_buf_kunit ================
[17:29:12] =================== [SKIPPED] xe_dma_buf ===================
[17:29:12] ================= xe_bo_shrink (1 subtest) =================
[17:29:12] =================== xe_bo_shrink_kunit  ====================
[17:29:12] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[17:29:12] ================== [SKIPPED] xe_bo_shrink ==================
[17:29:12] ==================== xe_bo (2 subtests) ====================
[17:29:12] ================== xe_ccs_migrate_kunit  ===================
[17:29:12] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[17:29:12] ==================== xe_bo_evict_kunit  ====================
[17:29:12] =============== [SKIPPED] xe_bo_evict_kunit ================
[17:29:12] ===================== [SKIPPED] xe_bo ======================
[17:29:12] ==================== args (11 subtests) ====================
[17:29:12] [PASSED] count_args_test
[17:29:12] [PASSED] call_args_example
[17:29:12] [PASSED] call_args_test
[17:29:12] [PASSED] drop_first_arg_example
[17:29:12] [PASSED] drop_first_arg_test
[17:29:12] [PASSED] first_arg_example
[17:29:12] [PASSED] first_arg_test
[17:29:12] [PASSED] last_arg_example
[17:29:12] [PASSED] last_arg_test
[17:29:12] [PASSED] pick_arg_example
[17:29:12] [PASSED] sep_comma_example
[17:29:12] ====================== [PASSED] args =======================
[17:29:12] =================== xe_pci (3 subtests) ====================
[17:29:12] ==================== check_graphics_ip  ====================
[17:29:12] [PASSED] 12.70 Xe_LPG
[17:29:12] [PASSED] 12.71 Xe_LPG
[17:29:12] [PASSED] 12.74 Xe_LPG+
[17:29:12] [PASSED] 20.01 Xe2_HPG
[17:29:12] [PASSED] 20.02 Xe2_HPG
[17:29:12] [PASSED] 20.04 Xe2_LPG
[17:29:12] [PASSED] 30.00 Xe3_LPG
[17:29:12] [PASSED] 30.01 Xe3_LPG
[17:29:12] [PASSED] 30.03 Xe3_LPG
[17:29:12] ================ [PASSED] check_graphics_ip ================
[17:29:12] ===================== check_media_ip  ======================
[17:29:12] [PASSED] 13.00 Xe_LPM+
[17:29:12] [PASSED] 13.01 Xe2_HPM
[17:29:12] [PASSED] 20.00 Xe2_LPM
[17:29:12] [PASSED] 30.00 Xe3_LPM
[17:29:12] [PASSED] 30.02 Xe3_LPM
[17:29:12] ================= [PASSED] check_media_ip ==================
[17:29:12] ================= check_platform_gt_count  =================
[17:29:12] [PASSED] 0x9A60 (TIGERLAKE)
[17:29:12] [PASSED] 0x9A68 (TIGERLAKE)
[17:29:12] [PASSED] 0x9A70 (TIGERLAKE)
[17:29:12] [PASSED] 0x9A40 (TIGERLAKE)
[17:29:12] [PASSED] 0x9A49 (TIGERLAKE)
[17:29:12] [PASSED] 0x9A59 (TIGERLAKE)
[17:29:12] [PASSED] 0x9A78 (TIGERLAKE)
[17:29:12] [PASSED] 0x9AC0 (TIGERLAKE)
[17:29:12] [PASSED] 0x9AC9 (TIGERLAKE)
[17:29:12] [PASSED] 0x9AD9 (TIGERLAKE)
[17:29:12] [PASSED] 0x9AF8 (TIGERLAKE)
[17:29:12] [PASSED] 0x4C80 (ROCKETLAKE)
[17:29:12] [PASSED] 0x4C8A (ROCKETLAKE)
[17:29:12] [PASSED] 0x4C8B (ROCKETLAKE)
[17:29:12] [PASSED] 0x4C8C (ROCKETLAKE)
[17:29:12] [PASSED] 0x4C90 (ROCKETLAKE)
[17:29:12] [PASSED] 0x4C9A (ROCKETLAKE)
[17:29:12] [PASSED] 0x4680 (ALDERLAKE_S)
[17:29:12] [PASSED] 0x4682 (ALDERLAKE_S)
[17:29:12] [PASSED] 0x4688 (ALDERLAKE_S)
[17:29:12] [PASSED] 0x468A (ALDERLAKE_S)
[17:29:12] [PASSED] 0x468B (ALDERLAKE_S)
[17:29:12] [PASSED] 0x4690 (ALDERLAKE_S)
[17:29:12] [PASSED] 0x4692 (ALDERLAKE_S)
[17:29:12] [PASSED] 0x4693 (ALDERLAKE_S)
[17:29:12] [PASSED] 0x46A0 (ALDERLAKE_P)
[17:29:12] [PASSED] 0x46A1 (ALDERLAKE_P)
[17:29:12] [PASSED] 0x46A2 (ALDERLAKE_P)
[17:29:12] [PASSED] 0x46A3 (ALDERLAKE_P)
[17:29:12] [PASSED] 0x46A6 (ALDERLAKE_P)
[17:29:12] [PASSED] 0x46A8 (ALDERLAKE_P)
[17:29:12] [PASSED] 0x46AA (ALDERLAKE_P)
[17:29:12] [PASSED] 0x462A (ALDERLAKE_P)
[17:29:12] [PASSED] 0x4626 (ALDERLAKE_P)
[17:29:12] [PASSED] 0x4628 (ALDERLAKE_P)
[17:29:12] [PASSED] 0x46B0 (ALDERLAKE_P)
[17:29:12] [PASSED] 0x46B1 (ALDERLAKE_P)
[17:29:12] [PASSED] 0x46B2 (ALDERLAKE_P)
[17:29:12] [PASSED] 0x46B3 (ALDERLAKE_P)
[17:29:12] [PASSED] 0x46C0 (ALDERLAKE_P)
[17:29:12] [PASSED] 0x46C1 (ALDERLAKE_P)
[17:29:12] [PASSED] 0x46C2 (ALDERLAKE_P)
[17:29:12] [PASSED] 0x46C3 (ALDERLAKE_P)
[17:29:12] [PASSED] 0x46D0 (ALDERLAKE_N)
[17:29:12] [PASSED] 0x46D1 (ALDERLAKE_N)
[17:29:12] [PASSED] 0x46D2 (ALDERLAKE_N)
[17:29:12] [PASSED] 0x46D3 (ALDERLAKE_N)
[17:29:12] [PASSED] 0x46D4 (ALDERLAKE_N)
[17:29:12] [PASSED] 0xA721 (ALDERLAKE_P)
[17:29:12] [PASSED] 0xA7A1 (ALDERLAKE_P)
[17:29:12] [PASSED] 0xA7A9 (ALDERLAKE_P)
[17:29:12] [PASSED] 0xA7AC (ALDERLAKE_P)
[17:29:12] [PASSED] 0xA7AD (ALDERLAKE_P)
[17:29:12] [PASSED] 0xA720 (ALDERLAKE_P)
[17:29:12] [PASSED] 0xA7A0 (ALDERLAKE_P)
[17:29:12] [PASSED] 0xA7A8 (ALDERLAKE_P)
[17:29:12] [PASSED] 0xA7AA (ALDERLAKE_P)
[17:29:12] [PASSED] 0xA7AB (ALDERLAKE_P)
[17:29:12] [PASSED] 0xA780 (ALDERLAKE_S)
[17:29:12] [PASSED] 0xA781 (ALDERLAKE_S)
[17:29:12] [PASSED] 0xA782 (ALDERLAKE_S)
[17:29:12] [PASSED] 0xA783 (ALDERLAKE_S)
[17:29:12] [PASSED] 0xA788 (ALDERLAKE_S)
[17:29:12] [PASSED] 0xA789 (ALDERLAKE_S)
[17:29:12] [PASSED] 0xA78A (ALDERLAKE_S)
[17:29:12] [PASSED] 0xA78B (ALDERLAKE_S)
[17:29:12] [PASSED] 0x4905 (DG1)
[17:29:12] [PASSED] 0x4906 (DG1)
[17:29:12] [PASSED] 0x4907 (DG1)
[17:29:12] [PASSED] 0x4908 (DG1)
[17:29:12] [PASSED] 0x4909 (DG1)
[17:29:12] [PASSED] 0x56C0 (DG2)
[17:29:12] [PASSED] 0x56C2 (DG2)
[17:29:12] [PASSED] 0x56C1 (DG2)
[17:29:12] [PASSED] 0x7D51 (METEORLAKE)
[17:29:12] [PASSED] 0x7DD1 (METEORLAKE)
[17:29:12] [PASSED] 0x7D41 (METEORLAKE)
[17:29:12] [PASSED] 0x7D67 (METEORLAKE)
[17:29:12] [PASSED] 0xB640 (METEORLAKE)
[17:29:12] [PASSED] 0x56A0 (DG2)
[17:29:12] [PASSED] 0x56A1 (DG2)
[17:29:12] [PASSED] 0x56A2 (DG2)
[17:29:12] [PASSED] 0x56BE (DG2)
[17:29:12] [PASSED] 0x56BF (DG2)
[17:29:12] [PASSED] 0x5690 (DG2)
[17:29:12] [PASSED] 0x5691 (DG2)
[17:29:12] [PASSED] 0x5692 (DG2)
[17:29:12] [PASSED] 0x56A5 (DG2)
[17:29:12] [PASSED] 0x56A6 (DG2)
[17:29:12] [PASSED] 0x56B0 (DG2)
[17:29:12] [PASSED] 0x56B1 (DG2)
[17:29:12] [PASSED] 0x56BA (DG2)
[17:29:12] [PASSED] 0x56BB (DG2)
[17:29:12] [PASSED] 0x56BC (DG2)
[17:29:12] [PASSED] 0x56BD (DG2)
[17:29:12] [PASSED] 0x5693 (DG2)
[17:29:12] [PASSED] 0x5694 (DG2)
[17:29:12] [PASSED] 0x5695 (DG2)
[17:29:12] [PASSED] 0x56A3 (DG2)
[17:29:12] [PASSED] 0x56A4 (DG2)
[17:29:12] [PASSED] 0x56B2 (DG2)
[17:29:12] [PASSED] 0x56B3 (DG2)
[17:29:12] [PASSED] 0x5696 (DG2)
[17:29:12] [PASSED] 0x5697 (DG2)
[17:29:12] [PASSED] 0xB69 (PVC)
[17:29:12] [PASSED] 0xB6E (PVC)
[17:29:12] [PASSED] 0xBD4 (PVC)
[17:29:12] [PASSED] 0xBD5 (PVC)
[17:29:12] [PASSED] 0xBD6 (PVC)
[17:29:12] [PASSED] 0xBD7 (PVC)
[17:29:12] [PASSED] 0xBD8 (PVC)
[17:29:12] [PASSED] 0xBD9 (PVC)
[17:29:12] [PASSED] 0xBDA (PVC)
[17:29:12] [PASSED] 0xBDB (PVC)
[17:29:12] [PASSED] 0xBE0 (PVC)
[17:29:12] [PASSED] 0xBE1 (PVC)
[17:29:12] [PASSED] 0xBE5 (PVC)
[17:29:12] [PASSED] 0x7D40 (METEORLAKE)
[17:29:12] [PASSED] 0x7D45 (METEORLAKE)
[17:29:12] [PASSED] 0x7D55 (METEORLAKE)
[17:29:12] [PASSED] 0x7D60 (METEORLAKE)
[17:29:12] [PASSED] 0x7DD5 (METEORLAKE)
[17:29:12] [PASSED] 0x6420 (LUNARLAKE)
[17:29:12] [PASSED] 0x64A0 (LUNARLAKE)
[17:29:12] [PASSED] 0x64B0 (LUNARLAKE)
[17:29:12] [PASSED] 0xE202 (BATTLEMAGE)
[17:29:12] [PASSED] 0xE209 (BATTLEMAGE)
[17:29:12] [PASSED] 0xE20B (BATTLEMAGE)
[17:29:12] [PASSED] 0xE20C (BATTLEMAGE)
[17:29:12] [PASSED] 0xE20D (BATTLEMAGE)
[17:29:12] [PASSED] 0xE210 (BATTLEMAGE)
[17:29:12] [PASSED] 0xE211 (BATTLEMAGE)
[17:29:12] [PASSED] 0xE212 (BATTLEMAGE)
[17:29:12] [PASSED] 0xE216 (BATTLEMAGE)
[17:29:12] [PASSED] 0xE220 (BATTLEMAGE)
[17:29:12] [PASSED] 0xE221 (BATTLEMAGE)
[17:29:12] [PASSED] 0xE222 (BATTLEMAGE)
[17:29:12] [PASSED] 0xE223 (BATTLEMAGE)
[17:29:12] [PASSED] 0xB080 (PANTHERLAKE)
[17:29:12] [PASSED] 0xB081 (PANTHERLAKE)
[17:29:12] [PASSED] 0xB082 (PANTHERLAKE)
[17:29:12] [PASSED] 0xB083 (PANTHERLAKE)
[17:29:12] [PASSED] 0xB084 (PANTHERLAKE)
[17:29:12] [PASSED] 0xB085 (PANTHERLAKE)
[17:29:12] [PASSED] 0xB086 (PANTHERLAKE)
[17:29:12] [PASSED] 0xB087 (PANTHERLAKE)
[17:29:12] [PASSED] 0xB08F (PANTHERLAKE)
[17:29:12] [PASSED] 0xB090 (PANTHERLAKE)
[17:29:12] [PASSED] 0xB0A0 (PANTHERLAKE)
[17:29:12] [PASSED] 0xB0B0 (PANTHERLAKE)
[17:29:12] [PASSED] 0xFD80 (PANTHERLAKE)
[17:29:12] [PASSED] 0xFD81 (PANTHERLAKE)
[17:29:12] ============= [PASSED] check_platform_gt_count =============
[17:29:12] ===================== [PASSED] xe_pci ======================
[17:29:12] =================== xe_rtp (2 subtests) ====================
[17:29:12] =============== xe_rtp_process_to_sr_tests  ================
[17:29:12] [PASSED] coalesce-same-reg
[17:29:12] [PASSED] no-match-no-add
[17:29:12] [PASSED] match-or
[17:29:12] [PASSED] match-or-xfail
[17:29:12] [PASSED] no-match-no-add-multiple-rules
[17:29:12] [PASSED] two-regs-two-entries
[17:29:12] [PASSED] clr-one-set-other
[17:29:12] [PASSED] set-field
[17:29:12] [PASSED] conflict-duplicate
[17:29:12] [PASSED] conflict-not-disjoint
[17:29:12] [PASSED] conflict-reg-type
[17:29:12] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[17:29:12] ================== xe_rtp_process_tests  ===================
[17:29:12] [PASSED] active1
[17:29:12] [PASSED] active2
[17:29:12] [PASSED] active-inactive
[17:29:12] [PASSED] inactive-active
[17:29:12] [PASSED] inactive-1st_or_active-inactive
[17:29:12] [PASSED] inactive-2nd_or_active-inactive
[17:29:12] [PASSED] inactive-last_or_active-inactive
[17:29:12] [PASSED] inactive-no_or_active-inactive
[17:29:12] ============== [PASSED] xe_rtp_process_tests ===============
[17:29:12] ===================== [PASSED] xe_rtp ======================
[17:29:12] ==================== xe_wa (1 subtest) =====================
[17:29:12] ======================== xe_wa_gt  =========================
[17:29:12] [PASSED] TIGERLAKE (B0)
[17:29:12] [PASSED] DG1 (A0)
[17:29:12] [PASSED] DG1 (B0)
[17:29:12] [PASSED] ALDERLAKE_S (A0)
[17:29:12] [PASSED] ALDERLAKE_S (B0)
[17:29:12] [PASSED] ALDERLAKE_S (C0)
[17:29:12] [PASSED] ALDERLAKE_S (D0)
[17:29:12] [PASSED] ALDERLAKE_P (A0)
[17:29:12] [PASSED] ALDERLAKE_P (B0)
[17:29:12] [PASSED] ALDERLAKE_P (C0)
[17:29:12] [PASSED] ALDERLAKE_S_RPLS (D0)
[17:29:12] [PASSED] ALDERLAKE_P_RPLU (E0)
[17:29:12] [PASSED] DG2_G10 (C0)
[17:29:12] [PASSED] DG2_G11 (B1)
[17:29:12] [PASSED] DG2_G12 (A1)
[17:29:12] [PASSED] METEORLAKE (g:A0, m:A0)
[17:29:12] [PASSED] METEORLAKE (g:A0, m:A0)
[17:29:12] [PASSED] METEORLAKE (g:A0, m:A0)
[17:29:12] [PASSED] LUNARLAKE (g:A0, m:A0)
[17:29:12] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[17:29:12] [PASSED] BATTLEMAGE (g:A0, m:A1)
[17:29:12] [PASSED] PANTHERLAKE (g:A0, m:A0)
[17:29:12] ==================== [PASSED] xe_wa_gt =====================
[17:29:12] ====================== [PASSED] xe_wa ======================
[17:29:12] ============================================================
[17:29:12] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[17:29:12] Elapsed time: 33.339s total, 4.253s configuring, 28.719s building, 0.325s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[17:29:12] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:29:14] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[17:29:37] Starting KUnit Kernel (1/1)...
[17:29:37] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:29:37] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[17:29:37] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[17:29:37] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[17:29:37] =========== drm_validate_clone_mode (2 subtests) ===========
[17:29:37] ============== drm_test_check_in_clone_mode  ===============
[17:29:37] [PASSED] in_clone_mode
[17:29:37] [PASSED] not_in_clone_mode
[17:29:37] ========== [PASSED] drm_test_check_in_clone_mode ===========
[17:29:37] =============== drm_test_check_valid_clones  ===============
[17:29:37] [PASSED] not_in_clone_mode
[17:29:37] [PASSED] valid_clone
[17:29:37] [PASSED] invalid_clone
[17:29:37] =========== [PASSED] drm_test_check_valid_clones ===========
[17:29:37] ============= [PASSED] drm_validate_clone_mode =============
[17:29:37] ============= drm_validate_modeset (1 subtest) =============
[17:29:37] [PASSED] drm_test_check_connector_changed_modeset
[17:29:37] ============== [PASSED] drm_validate_modeset ===============
[17:29:37] ====== drm_test_bridge_get_current_state (2 subtests) ======
[17:29:37] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[17:29:37] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[17:29:37] ======== [PASSED] drm_test_bridge_get_current_state ========
[17:29:37] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[17:29:37] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[17:29:37] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[17:29:37] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[17:29:37] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[17:29:37] ============== drm_bridge_alloc (2 subtests) ===============
[17:29:37] [PASSED] drm_test_drm_bridge_alloc_basic
[17:29:37] [PASSED] drm_test_drm_bridge_alloc_get_put
[17:29:37] ================ [PASSED] drm_bridge_alloc =================
[17:29:37] ================== drm_buddy (7 subtests) ==================
[17:29:37] [PASSED] drm_test_buddy_alloc_limit
[17:29:37] [PASSED] drm_test_buddy_alloc_optimistic
[17:29:37] [PASSED] drm_test_buddy_alloc_pessimistic
[17:29:37] [PASSED] drm_test_buddy_alloc_pathological
[17:29:37] [PASSED] drm_test_buddy_alloc_contiguous
[17:29:37] [PASSED] drm_test_buddy_alloc_clear
[17:29:37] [PASSED] drm_test_buddy_alloc_range_bias
[17:29:37] ==================== [PASSED] drm_buddy ====================
[17:29:37] ============= drm_cmdline_parser (40 subtests) =============
[17:29:37] [PASSED] drm_test_cmdline_force_d_only
[17:29:37] [PASSED] drm_test_cmdline_force_D_only_dvi
[17:29:37] [PASSED] drm_test_cmdline_force_D_only_hdmi
[17:29:37] [PASSED] drm_test_cmdline_force_D_only_not_digital
[17:29:37] [PASSED] drm_test_cmdline_force_e_only
[17:29:37] [PASSED] drm_test_cmdline_res
[17:29:37] [PASSED] drm_test_cmdline_res_vesa
[17:29:37] [PASSED] drm_test_cmdline_res_vesa_rblank
[17:29:37] [PASSED] drm_test_cmdline_res_rblank
[17:29:37] [PASSED] drm_test_cmdline_res_bpp
[17:29:37] [PASSED] drm_test_cmdline_res_refresh
[17:29:37] [PASSED] drm_test_cmdline_res_bpp_refresh
[17:29:37] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[17:29:37] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[17:29:37] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[17:29:37] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[17:29:37] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[17:29:37] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[17:29:37] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[17:29:37] [PASSED] drm_test_cmdline_res_margins_force_on
[17:29:37] [PASSED] drm_test_cmdline_res_vesa_margins
[17:29:37] [PASSED] drm_test_cmdline_name
[17:29:37] [PASSED] drm_test_cmdline_name_bpp
[17:29:37] [PASSED] drm_test_cmdline_name_option
[17:29:37] [PASSED] drm_test_cmdline_name_bpp_option
[17:29:37] [PASSED] drm_test_cmdline_rotate_0
[17:29:37] [PASSED] drm_test_cmdline_rotate_90
[17:29:37] [PASSED] drm_test_cmdline_rotate_180
[17:29:37] [PASSED] drm_test_cmdline_rotate_270
[17:29:37] [PASSED] drm_test_cmdline_hmirror
[17:29:37] [PASSED] drm_test_cmdline_vmirror
[17:29:37] [PASSED] drm_test_cmdline_margin_options
[17:29:37] [PASSED] drm_test_cmdline_multiple_options
[17:29:37] [PASSED] drm_test_cmdline_bpp_extra_and_option
[17:29:37] [PASSED] drm_test_cmdline_extra_and_option
[17:29:37] [PASSED] drm_test_cmdline_freestanding_options
[17:29:37] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[17:29:37] [PASSED] drm_test_cmdline_panel_orientation
[17:29:37] ================ drm_test_cmdline_invalid  =================
[17:29:37] [PASSED] margin_only
[17:29:37] [PASSED] interlace_only
[17:29:37] [PASSED] res_missing_x
[17:29:37] [PASSED] res_missing_y
[17:29:37] [PASSED] res_bad_y
[17:29:37] [PASSED] res_missing_y_bpp
[17:29:37] [PASSED] res_bad_bpp
[17:29:37] [PASSED] res_bad_refresh
[17:29:37] [PASSED] res_bpp_refresh_force_on_off
[17:29:37] [PASSED] res_invalid_mode
[17:29:37] [PASSED] res_bpp_wrong_place_mode
[17:29:37] [PASSED] name_bpp_refresh
[17:29:37] [PASSED] name_refresh
[17:29:37] [PASSED] name_refresh_wrong_mode
[17:29:37] [PASSED] name_refresh_invalid_mode
[17:29:37] [PASSED] rotate_multiple
[17:29:37] [PASSED] rotate_invalid_val
[17:29:37] [PASSED] rotate_truncated
[17:29:37] [PASSED] invalid_option
[17:29:37] [PASSED] invalid_tv_option
[17:29:37] [PASSED] truncated_tv_option
[17:29:37] ============ [PASSED] drm_test_cmdline_invalid =============
[17:29:37] =============== drm_test_cmdline_tv_options  ===============
[17:29:37] [PASSED] NTSC
[17:29:37] [PASSED] NTSC_443
[17:29:37] [PASSED] NTSC_J
[17:29:37] [PASSED] PAL
[17:29:37] [PASSED] PAL_M
[17:29:37] [PASSED] PAL_N
[17:29:37] [PASSED] SECAM
[17:29:37] [PASSED] MONO_525
[17:29:37] [PASSED] MONO_625
[17:29:37] =========== [PASSED] drm_test_cmdline_tv_options ===========
[17:29:37] =============== [PASSED] drm_cmdline_parser ================
[17:29:37] ========== drmm_connector_hdmi_init (20 subtests) ==========
[17:29:37] [PASSED] drm_test_connector_hdmi_init_valid
[17:29:37] [PASSED] drm_test_connector_hdmi_init_bpc_8
[17:29:37] [PASSED] drm_test_connector_hdmi_init_bpc_10
[17:29:37] [PASSED] drm_test_connector_hdmi_init_bpc_12
[17:29:37] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[17:29:37] [PASSED] drm_test_connector_hdmi_init_bpc_null
[17:29:37] [PASSED] drm_test_connector_hdmi_init_formats_empty
[17:29:37] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[17:29:37] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[17:29:37] [PASSED] supported_formats=0x9 yuv420_allowed=1
[17:29:37] [PASSED] supported_formats=0x9 yuv420_allowed=0
[17:29:37] [PASSED] supported_formats=0x3 yuv420_allowed=1
[17:29:37] [PASSED] supported_formats=0x3 yuv420_allowed=0
[17:29:37] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[17:29:37] [PASSED] drm_test_connector_hdmi_init_null_ddc
[17:29:37] [PASSED] drm_test_connector_hdmi_init_null_product
[17:29:37] [PASSED] drm_test_connector_hdmi_init_null_vendor
[17:29:37] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[17:29:37] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[17:29:37] [PASSED] drm_test_connector_hdmi_init_product_valid
[17:29:37] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[17:29:37] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[17:29:37] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[17:29:37] ========= drm_test_connector_hdmi_init_type_valid  =========
[17:29:37] [PASSED] HDMI-A
[17:29:37] [PASSED] HDMI-B
[17:29:37] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[17:29:37] ======== drm_test_connector_hdmi_init_type_invalid  ========
[17:29:37] [PASSED] Unknown
[17:29:37] [PASSED] VGA
[17:29:37] [PASSED] DVI-I
[17:29:37] [PASSED] DVI-D
[17:29:37] [PASSED] DVI-A
[17:29:37] [PASSED] Composite
[17:29:37] [PASSED] SVIDEO
[17:29:37] [PASSED] LVDS
[17:29:37] [PASSED] Component
[17:29:37] [PASSED] DIN
[17:29:37] [PASSED] DP
[17:29:37] [PASSED] TV
[17:29:37] [PASSED] eDP
[17:29:37] [PASSED] Virtual
[17:29:37] [PASSED] DSI
[17:29:37] [PASSED] DPI
[17:29:37] [PASSED] Writeback
[17:29:37] [PASSED] SPI
[17:29:37] [PASSED] USB
[17:29:37] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[17:29:37] ============ [PASSED] drmm_connector_hdmi_init =============
[17:29:37] ============= drmm_connector_init (3 subtests) =============
[17:29:37] [PASSED] drm_test_drmm_connector_init
[17:29:37] [PASSED] drm_test_drmm_connector_init_null_ddc
[17:29:37] ========= drm_test_drmm_connector_init_type_valid  =========
[17:29:37] [PASSED] Unknown
[17:29:37] [PASSED] VGA
[17:29:37] [PASSED] DVI-I
[17:29:37] [PASSED] DVI-D
[17:29:37] [PASSED] DVI-A
[17:29:37] [PASSED] Composite
[17:29:37] [PASSED] SVIDEO
[17:29:37] [PASSED] LVDS
[17:29:37] [PASSED] Component
[17:29:37] [PASSED] DIN
[17:29:37] [PASSED] DP
[17:29:37] [PASSED] HDMI-A
[17:29:37] [PASSED] HDMI-B
[17:29:37] [PASSED] TV
[17:29:37] [PASSED] eDP
[17:29:37] [PASSED] Virtual
[17:29:37] [PASSED] DSI
[17:29:37] [PASSED] DPI
[17:29:37] [PASSED] Writeback
[17:29:37] [PASSED] SPI
[17:29:37] [PASSED] USB
[17:29:37] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[17:29:37] =============== [PASSED] drmm_connector_init ===============
[17:29:37] ========= drm_connector_dynamic_init (6 subtests) ==========
[17:29:37] [PASSED] drm_test_drm_connector_dynamic_init
[17:29:37] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[17:29:37] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[17:29:37] [PASSED] drm_test_drm_connector_dynamic_init_properties
[17:29:37] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[17:29:37] [PASSED] Unknown
[17:29:37] [PASSED] VGA
[17:29:37] [PASSED] DVI-I
[17:29:37] [PASSED] DVI-D
[17:29:37] [PASSED] DVI-A
[17:29:37] [PASSED] Composite
[17:29:37] [PASSED] SVIDEO
[17:29:37] [PASSED] LVDS
[17:29:37] [PASSED] Component
[17:29:37] [PASSED] DIN
[17:29:37] [PASSED] DP
[17:29:37] [PASSED] HDMI-A
[17:29:37] [PASSED] HDMI-B
[17:29:37] [PASSED] TV
[17:29:37] [PASSED] eDP
[17:29:37] [PASSED] Virtual
[17:29:37] [PASSED] DSI
[17:29:37] [PASSED] DPI
[17:29:37] [PASSED] Writeback
[17:29:37] [PASSED] SPI
[17:29:37] [PASSED] USB
[17:29:37] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[17:29:37] ======== drm_test_drm_connector_dynamic_init_name  =========
[17:29:37] [PASSED] Unknown
[17:29:37] [PASSED] VGA
[17:29:37] [PASSED] DVI-I
[17:29:37] [PASSED] DVI-D
[17:29:37] [PASSED] DVI-A
[17:29:37] [PASSED] Composite
[17:29:37] [PASSED] SVIDEO
[17:29:37] [PASSED] LVDS
[17:29:37] [PASSED] Component
[17:29:37] [PASSED] DIN
[17:29:37] [PASSED] DP
[17:29:37] [PASSED] HDMI-A
[17:29:37] [PASSED] HDMI-B
[17:29:37] [PASSED] TV
[17:29:37] [PASSED] eDP
[17:29:37] [PASSED] Virtual
[17:29:37] [PASSED] DSI
[17:29:37] [PASSED] DPI
[17:29:37] [PASSED] Writeback
[17:29:37] [PASSED] SPI
[17:29:37] [PASSED] USB
[17:29:37] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[17:29:37] =========== [PASSED] drm_connector_dynamic_init ============
[17:29:37] ==== drm_connector_dynamic_register_early (4 subtests) =====
[17:29:37] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[17:29:37] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[17:29:37] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[17:29:37] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[17:29:37] ====== [PASSED] drm_connector_dynamic_register_early =======
[17:29:37] ======= drm_connector_dynamic_register (7 subtests) ========
[17:29:37] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[17:29:37] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[17:29:37] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[17:29:37] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[17:29:37] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[17:29:37] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[17:29:37] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[17:29:37] ========= [PASSED] drm_connector_dynamic_register ==========
[17:29:37] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[17:29:37] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[17:29:37] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[17:29:37] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[17:29:37] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[17:29:37] ========== drm_test_get_tv_mode_from_name_valid  ===========
[17:29:37] [PASSED] NTSC
[17:29:37] [PASSED] NTSC-443
[17:29:37] [PASSED] NTSC-J
[17:29:37] [PASSED] PAL
[17:29:37] [PASSED] PAL-M
[17:29:37] [PASSED] PAL-N
[17:29:37] [PASSED] SECAM
[17:29:37] [PASSED] Mono
[17:29:37] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[17:29:37] [PASSED] drm_test_get_tv_mode_from_name_truncated
[17:29:37] ============ [PASSED] drm_get_tv_mode_from_name ============
[17:29:37] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[17:29:37] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[17:29:37] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[17:29:37] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[17:29:37] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[17:29:37] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[17:29:37] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[17:29:37] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[17:29:37] [PASSED] VIC 96
[17:29:37] [PASSED] VIC 97
[17:29:37] [PASSED] VIC 101
[17:29:37] [PASSED] VIC 102
[17:29:37] [PASSED] VIC 106
[17:29:37] [PASSED] VIC 107
[17:29:37] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[17:29:37] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[17:29:37] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[17:29:37] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[17:29:37] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[17:29:37] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[17:29:37] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[17:29:37] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[17:29:37] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[17:29:37] [PASSED] Automatic
[17:29:37] [PASSED] Full
[17:29:37] [PASSED] Limited 16:235
[17:29:37] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[17:29:37] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[17:29:37] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[17:29:37] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[17:29:37] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[17:29:37] [PASSED] RGB
[17:29:37] [PASSED] YUV 4:2:0
[17:29:37] [PASSED] YUV 4:2:2
[17:29:37] [PASSED] YUV 4:4:4
[17:29:37] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[17:29:37] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[17:29:37] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[17:29:37] ============= drm_damage_helper (21 subtests) ==============
[17:29:37] [PASSED] drm_test_damage_iter_no_damage
[17:29:37] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[17:29:37] [PASSED] drm_test_damage_iter_no_damage_src_moved
[17:29:37] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[17:29:37] [PASSED] drm_test_damage_iter_no_damage_not_visible
[17:29:37] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[17:29:37] [PASSED] drm_test_damage_iter_no_damage_no_fb
[17:29:37] [PASSED] drm_test_damage_iter_simple_damage
[17:29:37] [PASSED] drm_test_damage_iter_single_damage
[17:29:37] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[17:29:37] [PASSED] drm_test_damage_iter_single_damage_outside_src
[17:29:37] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[17:29:37] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[17:29:37] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[17:29:37] [PASSED] drm_test_damage_iter_single_damage_src_moved
[17:29:37] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[17:29:37] [PASSED] drm_test_damage_iter_damage
[17:29:37] [PASSED] drm_test_damage_iter_damage_one_intersect
[17:29:37] [PASSED] drm_test_damage_iter_damage_one_outside
[17:29:37] [PASSED] drm_test_damage_iter_damage_src_moved
[17:29:37] [PASSED] drm_test_damage_iter_damage_not_visible
[17:29:37] ================ [PASSED] drm_damage_helper ================
[17:29:37] ============== drm_dp_mst_helper (3 subtests) ==============
[17:29:37] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[17:29:37] [PASSED] Clock 154000 BPP 30 DSC disabled
[17:29:37] [PASSED] Clock 234000 BPP 30 DSC disabled
[17:29:37] [PASSED] Clock 297000 BPP 24 DSC disabled
[17:29:37] [PASSED] Clock 332880 BPP 24 DSC enabled
[17:29:37] [PASSED] Clock 324540 BPP 24 DSC enabled
[17:29:37] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[17:29:37] ============== drm_test_dp_mst_calc_pbn_div  ===============
[17:29:37] [PASSED] Link rate 2000000 lane count 4
[17:29:37] [PASSED] Link rate 2000000 lane count 2
[17:29:37] [PASSED] Link rate 2000000 lane count 1
[17:29:37] [PASSED] Link rate 1350000 lane count 4
[17:29:37] [PASSED] Link rate 1350000 lane count 2
[17:29:37] [PASSED] Link rate 1350000 lane count 1
[17:29:37] [PASSED] Link rate 1000000 lane count 4
[17:29:37] [PASSED] Link rate 1000000 lane count 2
[17:29:37] [PASSED] Link rate 1000000 lane count 1
[17:29:37] [PASSED] Link rate 810000 lane count 4
[17:29:37] [PASSED] Link rate 810000 lane count 2
[17:29:37] [PASSED] Link rate 810000 lane count 1
[17:29:37] [PASSED] Link rate 540000 lane count 4
[17:29:37] [PASSED] Link rate 540000 lane count 2
[17:29:37] [PASSED] Link rate 540000 lane count 1
[17:29:37] [PASSED] Link rate 270000 lane count 4
[17:29:37] [PASSED] Link rate 270000 lane count 2
[17:29:37] [PASSED] Link rate 270000 lane count 1
[17:29:37] [PASSED] Link rate 162000 lane count 4
[17:29:37] [PASSED] Link rate 162000 lane count 2
[17:29:37] [PASSED] Link rate 162000 lane count 1
[17:29:37] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[17:29:37] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[17:29:37] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[17:29:37] [PASSED] DP_POWER_UP_PHY with port number
[17:29:37] [PASSED] DP_POWER_DOWN_PHY with port number
[17:29:37] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[17:29:37] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[17:29:37] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[17:29:37] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[17:29:37] [PASSED] DP_QUERY_PAYLOAD with port number
[17:29:37] [PASSED] DP_QUERY_PAYLOAD with VCPI
[17:29:37] [PASSED] DP_REMOTE_DPCD_READ with port number
[17:29:37] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[17:29:37] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[17:29:37] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[17:29:37] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[17:29:37] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[17:29:37] [PASSED] DP_REMOTE_I2C_READ with port number
[17:29:37] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[17:29:37] [PASSED] DP_REMOTE_I2C_READ with transactions array
[17:29:37] [PASSED] DP_REMOTE_I2C_WRITE with port number
[17:29:37] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[17:29:37] [PASSED] DP_REMOTE_I2C_WRITE with data array
[17:29:37] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[17:29:37] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[17:29:37] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[17:29:37] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[17:29:37] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[17:29:37] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[17:29:37] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[17:29:37] ================ [PASSED] drm_dp_mst_helper ================
[17:29:37] ================== drm_exec (7 subtests) ===================
[17:29:37] [PASSED] sanitycheck
[17:29:37] [PASSED] test_lock
[17:29:37] [PASSED] test_lock_unlock
[17:29:37] [PASSED] test_duplicates
[17:29:37] [PASSED] test_prepare
[17:29:37] [PASSED] test_prepare_array
[17:29:37] [PASSED] test_multiple_loops
[17:29:37] ==================== [PASSED] drm_exec =====================
[17:29:37] =========== drm_format_helper_test (17 subtests) ===========
[17:29:37] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[17:29:37] [PASSED] single_pixel_source_buffer
[17:29:37] [PASSED] single_pixel_clip_rectangle
[17:29:37] [PASSED] well_known_colors
[17:29:37] [PASSED] destination_pitch
[17:29:37] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[17:29:37] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[17:29:37] [PASSED] single_pixel_source_buffer
[17:29:37] [PASSED] single_pixel_clip_rectangle
[17:29:37] [PASSED] well_known_colors
[17:29:37] [PASSED] destination_pitch
[17:29:37] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[17:29:37] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[17:29:37] [PASSED] single_pixel_source_buffer
[17:29:37] [PASSED] single_pixel_clip_rectangle
[17:29:37] [PASSED] well_known_colors
[17:29:37] [PASSED] destination_pitch
[17:29:37] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[17:29:37] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[17:29:37] [PASSED] single_pixel_source_buffer
[17:29:37] [PASSED] single_pixel_clip_rectangle
[17:29:37] [PASSED] well_known_colors
[17:29:37] [PASSED] destination_pitch
[17:29:37] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[17:29:37] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[17:29:37] [PASSED] single_pixel_source_buffer
[17:29:37] [PASSED] single_pixel_clip_rectangle
[17:29:37] [PASSED] well_known_colors
[17:29:37] [PASSED] destination_pitch
[17:29:37] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[17:29:37] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[17:29:37] [PASSED] single_pixel_source_buffer
[17:29:37] [PASSED] single_pixel_clip_rectangle
[17:29:37] [PASSED] well_known_colors
[17:29:37] [PASSED] destination_pitch
[17:29:37] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[17:29:37] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[17:29:37] [PASSED] single_pixel_source_buffer
[17:29:37] [PASSED] single_pixel_clip_rectangle
[17:29:37] [PASSED] well_known_colors
[17:29:37] [PASSED] destination_pitch
[17:29:37] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[17:29:37] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[17:29:37] [PASSED] single_pixel_source_buffer
[17:29:37] [PASSED] single_pixel_clip_rectangle
[17:29:37] [PASSED] well_known_colors
[17:29:37] [PASSED] destination_pitch
[17:29:37] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[17:29:37] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[17:29:37] [PASSED] single_pixel_source_buffer
[17:29:37] [PASSED] single_pixel_clip_rectangle
[17:29:37] [PASSED] well_known_colors
[17:29:37] [PASSED] destination_pitch
[17:29:37] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[17:29:37] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[17:29:37] [PASSED] single_pixel_source_buffer
[17:29:37] [PASSED] single_pixel_clip_rectangle
[17:29:37] [PASSED] well_known_colors
[17:29:37] [PASSED] destination_pitch
[17:29:37] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[17:29:37] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[17:29:37] [PASSED] single_pixel_source_buffer
[17:29:37] [PASSED] single_pixel_clip_rectangle
[17:29:37] [PASSED] well_known_colors
[17:29:37] [PASSED] destination_pitch
[17:29:37] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[17:29:37] ============== drm_test_fb_xrgb8888_to_mono  ===============
[17:29:37] [PASSED] single_pixel_source_buffer
[17:29:37] [PASSED] single_pixel_clip_rectangle
[17:29:37] [PASSED] well_known_colors
[17:29:37] [PASSED] destination_pitch
[17:29:37] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[17:29:37] ==================== drm_test_fb_swab  =====================
[17:29:37] [PASSED] single_pixel_source_buffer
[17:29:37] [PASSED] single_pixel_clip_rectangle
[17:29:37] [PASSED] well_known_colors
[17:29:37] [PASSED] destination_pitch
[17:29:37] ================ [PASSED] drm_test_fb_swab =================
[17:29:37] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[17:29:37] [PASSED] single_pixel_source_buffer
[17:29:37] [PASSED] single_pixel_clip_rectangle
[17:29:37] [PASSED] well_known_colors
[17:29:37] [PASSED] destination_pitch
[17:29:37] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[17:29:37] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[17:29:37] [PASSED] single_pixel_source_buffer
[17:29:37] [PASSED] single_pixel_clip_rectangle
[17:29:37] [PASSED] well_known_colors
[17:29:37] [PASSED] destination_pitch
[17:29:37] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[17:29:37] ================= drm_test_fb_clip_offset  =================
[17:29:37] [PASSED] pass through
[17:29:37] [PASSED] horizontal offset
[17:29:37] [PASSED] vertical offset
[17:29:37] [PASSED] horizontal and vertical offset
[17:29:37] [PASSED] horizontal offset (custom pitch)
[17:29:37] [PASSED] vertical offset (custom pitch)
[17:29:37] [PASSED] horizontal and vertical offset (custom pitch)
[17:29:37] ============= [PASSED] drm_test_fb_clip_offset =============
[17:29:37] =================== drm_test_fb_memcpy  ====================
[17:29:37] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[17:29:37] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[17:29:37] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[17:29:37] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[17:29:37] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[17:29:37] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[17:29:37] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[17:29:37] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[17:29:37] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[17:29:37] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[17:29:37] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[17:29:37] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[17:29:37] =============== [PASSED] drm_test_fb_memcpy ================
[17:29:37] ============= [PASSED] drm_format_helper_test ==============
[17:29:37] ================= drm_format (18 subtests) =================
[17:29:37] [PASSED] drm_test_format_block_width_invalid
[17:29:37] [PASSED] drm_test_format_block_width_one_plane
[17:29:37] [PASSED] drm_test_format_block_width_two_plane
[17:29:37] [PASSED] drm_test_format_block_width_three_plane
[17:29:37] [PASSED] drm_test_format_block_width_tiled
[17:29:37] [PASSED] drm_test_format_block_height_invalid
[17:29:37] [PASSED] drm_test_format_block_height_one_plane
[17:29:37] [PASSED] drm_test_format_block_height_two_plane
[17:29:37] [PASSED] drm_test_format_block_height_three_plane
[17:29:37] [PASSED] drm_test_format_block_height_tiled
[17:29:37] [PASSED] drm_test_format_min_pitch_invalid
[17:29:37] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[17:29:37] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[17:29:37] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[17:29:37] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[17:29:37] [PASSED] drm_test_format_min_pitch_two_plane
[17:29:37] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[17:29:37] [PASSED] drm_test_format_min_pitch_tiled
[17:29:37] =================== [PASSED] drm_format ====================
[17:29:37] ============== drm_framebuffer (10 subtests) ===============
[17:29:37] ========== drm_test_framebuffer_check_src_coords  ==========
[17:29:37] [PASSED] Success: source fits into fb
[17:29:37] [PASSED] Fail: overflowing fb with x-axis coordinate
[17:29:37] [PASSED] Fail: overflowing fb with y-axis coordinate
[17:29:37] [PASSED] Fail: overflowing fb with source width
[17:29:37] [PASSED] Fail: overflowing fb with source height
[17:29:37] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[17:29:37] [PASSED] drm_test_framebuffer_cleanup
[17:29:37] =============== drm_test_framebuffer_create  ===============
[17:29:37] [PASSED] ABGR8888 normal sizes
[17:29:37] [PASSED] ABGR8888 max sizes
[17:29:37] [PASSED] ABGR8888 pitch greater than min required
[17:29:37] [PASSED] ABGR8888 pitch less than min required
[17:29:37] [PASSED] ABGR8888 Invalid width
[17:29:37] [PASSED] ABGR8888 Invalid buffer handle
[17:29:37] [PASSED] No pixel format
[17:29:37] [PASSED] ABGR8888 Width 0
[17:29:37] [PASSED] ABGR8888 Height 0
[17:29:37] [PASSED] ABGR8888 Out of bound height * pitch combination
[17:29:37] [PASSED] ABGR8888 Large buffer offset
[17:29:37] [PASSED] ABGR8888 Buffer offset for inexistent plane
[17:29:37] [PASSED] ABGR8888 Invalid flag
[17:29:37] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[17:29:37] [PASSED] ABGR8888 Valid buffer modifier
[17:29:37] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[17:29:37] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[17:29:37] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[17:29:37] [PASSED] NV12 Normal sizes
[17:29:37] [PASSED] NV12 Max sizes
[17:29:37] [PASSED] NV12 Invalid pitch
[17:29:37] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[17:29:37] [PASSED] NV12 different  modifier per-plane
[17:29:37] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[17:29:37] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[17:29:37] [PASSED] NV12 Modifier for inexistent plane
[17:29:37] [PASSED] NV12 Handle for inexistent plane
[17:29:37] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[17:29:37] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[17:29:37] [PASSED] YVU420 Normal sizes
[17:29:37] [PASSED] YVU420 Max sizes
[17:29:37] [PASSED] YVU420 Invalid pitch
[17:29:37] [PASSED] YVU420 Different pitches
[17:29:37] [PASSED] YVU420 Different buffer offsets/pitches
[17:29:37] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[17:29:37] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[17:29:37] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[17:29:37] [PASSED] YVU420 Valid modifier
[17:29:37] [PASSED] YVU420 Different modifiers per plane
[17:29:37] [PASSED] YVU420 Modifier for inexistent plane
[17:29:37] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[17:29:37] [PASSED] X0L2 Normal sizes
[17:29:37] [PASSED] X0L2 Max sizes
[17:29:37] [PASSED] X0L2 Invalid pitch
[17:29:37] [PASSED] X0L2 Pitch greater than minimum required
[17:29:37] [PASSED] X0L2 Handle for inexistent plane
[17:29:37] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[17:29:37] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[17:29:37] [PASSED] X0L2 Valid modifier
[17:29:37] [PASSED] X0L2 Modifier for inexistent plane
[17:29:37] =========== [PASSED] drm_test_framebuffer_create ===========
[17:29:37] [PASSED] drm_test_framebuffer_free
[17:29:37] [PASSED] drm_test_framebuffer_init
[17:29:37] [PASSED] drm_test_framebuffer_init_bad_format
[17:29:37] [PASSED] drm_test_framebuffer_init_dev_mismatch
[17:29:37] [PASSED] drm_test_framebuffer_lookup
[17:29:37] [PASSED] drm_test_framebuffer_lookup_inexistent
[17:29:37] [PASSED] drm_test_framebuffer_modifiers_not_supported
[17:29:37] ================= [PASSED] drm_framebuffer =================
[17:29:37] ================ drm_gem_shmem (8 subtests) ================
[17:29:37] [PASSED] drm_gem_shmem_test_obj_create
[17:29:37] [PASSED] drm_gem_shmem_test_obj_create_private
[17:29:37] [PASSED] drm_gem_shmem_test_pin_pages
[17:29:37] [PASSED] drm_gem_shmem_test_vmap
[17:29:37] [PASSED] drm_gem_shmem_test_get_pages_sgt
[17:29:37] [PASSED] drm_gem_shmem_test_get_sg_table
[17:29:37] [PASSED] drm_gem_shmem_test_madvise
[17:29:37] [PASSED] drm_gem_shmem_test_purge
[17:29:37] ================== [PASSED] drm_gem_shmem ==================
[17:29:37] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[17:29:37] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[17:29:37] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[17:29:37] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[17:29:37] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[17:29:37] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[17:29:37] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[17:29:37] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[17:29:37] [PASSED] Automatic
[17:29:37] [PASSED] Full
[17:29:37] [PASSED] Limited 16:235
[17:29:37] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[17:29:37] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[17:29:37] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[17:29:37] [PASSED] drm_test_check_disable_connector
[17:29:37] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[17:29:37] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[17:29:37] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[17:29:37] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[17:29:37] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[17:29:37] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[17:29:37] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[17:29:37] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[17:29:37] [PASSED] drm_test_check_output_bpc_dvi
[17:29:37] [PASSED] drm_test_check_output_bpc_format_vic_1
[17:29:37] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[17:29:37] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[17:29:37] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[17:29:37] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[17:29:37] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[17:29:37] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[17:29:37] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[17:29:37] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[17:29:37] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[17:29:37] [PASSED] drm_test_check_broadcast_rgb_value
[17:29:37] [PASSED] drm_test_check_bpc_8_value
[17:29:37] [PASSED] drm_test_check_bpc_10_value
[17:29:37] [PASSED] drm_test_check_bpc_12_value
[17:29:37] [PASSED] drm_test_check_format_value
[17:29:37] [PASSED] drm_test_check_tmds_char_value
[17:29:37] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[17:29:37] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[17:29:37] [PASSED] drm_test_check_mode_valid
[17:29:37] [PASSED] drm_test_check_mode_valid_reject
[17:29:37] [PASSED] drm_test_check_mode_valid_reject_rate
[17:29:37] [PASSED] drm_test_check_mode_valid_reject_max_clock
[17:29:37] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[17:29:37] ================= drm_managed (2 subtests) =================
[17:29:37] [PASSED] drm_test_managed_release_action
[17:29:37] [PASSED] drm_test_managed_run_action
[17:29:37] =================== [PASSED] drm_managed ===================
[17:29:37] =================== drm_mm (6 subtests) ====================
[17:29:37] [PASSED] drm_test_mm_init
[17:29:37] [PASSED] drm_test_mm_debug
[17:29:37] [PASSED] drm_test_mm_align32
[17:29:37] [PASSED] drm_test_mm_align64
[17:29:37] [PASSED] drm_test_mm_lowest
[17:29:37] [PASSED] drm_test_mm_highest
[17:29:37] ===================== [PASSED] drm_mm ======================
[17:29:37] ============= drm_modes_analog_tv (5 subtests) =============
[17:29:37] [PASSED] drm_test_modes_analog_tv_mono_576i
[17:29:37] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[17:29:37] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[17:29:37] [PASSED] drm_test_modes_analog_tv_pal_576i
[17:29:37] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[17:29:37] =============== [PASSED] drm_modes_analog_tv ===============
[17:29:37] ============== drm_plane_helper (2 subtests) ===============
[17:29:37] =============== drm_test_check_plane_state  ================
[17:29:37] [PASSED] clipping_simple
[17:29:37] [PASSED] clipping_rotate_reflect
[17:29:37] [PASSED] positioning_simple
[17:29:37] [PASSED] upscaling
[17:29:37] [PASSED] downscaling
[17:29:37] [PASSED] rounding1
[17:29:37] [PASSED] rounding2
[17:29:37] [PASSED] rounding3
[17:29:37] [PASSED] rounding4
[17:29:37] =========== [PASSED] drm_test_check_plane_state ============
[17:29:37] =========== drm_test_check_invalid_plane_state  ============
[17:29:37] [PASSED] positioning_invalid
[17:29:37] [PASSED] upscaling_invalid
[17:29:37] [PASSED] downscaling_invalid
[17:29:37] ======= [PASSED] drm_test_check_invalid_plane_state ========
[17:29:37] ================ [PASSED] drm_plane_helper =================
[17:29:37] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[17:29:37] ====== drm_test_connector_helper_tv_get_modes_check  =======
[17:29:37] [PASSED] None
[17:29:37] [PASSED] PAL
[17:29:37] [PASSED] NTSC
[17:29:37] [PASSED] Both, NTSC Default
[17:29:37] [PASSED] Both, PAL Default
[17:29:37] [PASSED] Both, NTSC Default, with PAL on command-line
[17:29:37] [PASSED] Both, PAL Default, with NTSC on command-line
[17:29:37] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[17:29:37] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[17:29:37] ================== drm_rect (9 subtests) ===================
[17:29:37] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[17:29:37] [PASSED] drm_test_rect_clip_scaled_not_clipped
[17:29:37] [PASSED] drm_test_rect_clip_scaled_clipped
[17:29:37] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[17:29:37] ================= drm_test_rect_intersect  =================
[17:29:37] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[17:29:37] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[17:29:37] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[17:29:37] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[17:29:37] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[17:29:37] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[17:29:37] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[17:29:37] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[17:29:37] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[17:29:37] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[17:29:37] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[17:29:37] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[17:29:37] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[17:29:37] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[17:29:37] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[17:29:37] ============= [PASSED] drm_test_rect_intersect =============
[17:29:37] ================ drm_test_rect_calc_hscale  ================
[17:29:37] [PASSED] normal use
[17:29:37] [PASSED] out of max range
[17:29:37] [PASSED] out of min range
[17:29:37] [PASSED] zero dst
[17:29:37] [PASSED] negative src
[17:29:37] [PASSED] negative dst
[17:29:37] ============ [PASSED] drm_test_rect_calc_hscale ============
[17:29:37] ================ drm_test_rect_calc_vscale  ================
[17:29:37] [PASSED] normal use
[17:29:37] [PASSED] out of max range
[17:29:37] [PASSED] out of min range
[17:29:37] [PASSED] zero dst
[17:29:37] [PASSED] negative src
[17:29:37] [PASSED] negative dst
[17:29:37] ============ [PASSED] drm_test_rect_calc_vscale ============
[17:29:37] ================== drm_test_rect_rotate  ===================
[17:29:37] [PASSED] reflect-x
[17:29:37] [PASSED] reflect-y
[17:29:37] [PASSED] rotate-0
[17:29:37] [PASSED] rotate-90
[17:29:37] [PASSED] rotate-180
[17:29:37] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[17:29:37] ============== [PASSED] drm_test_rect_rotate ===============
[17:29:37] ================ drm_test_rect_rotate_inv  =================
[17:29:37] [PASSED] reflect-x
[17:29:37] [PASSED] reflect-y
[17:29:37] [PASSED] rotate-0
[17:29:37] [PASSED] rotate-90
[17:29:37] [PASSED] rotate-180
[17:29:37] [PASSED] rotate-270
[17:29:37] ============ [PASSED] drm_test_rect_rotate_inv =============
[17:29:37] ==================== [PASSED] drm_rect =====================
[17:29:37] ============ drm_sysfb_modeset_test (1 subtest) ============
[17:29:37] ============ drm_test_sysfb_build_fourcc_list  =============
[17:29:37] [PASSED] no native formats
[17:29:37] [PASSED] XRGB8888 as native format
[17:29:37] [PASSED] remove duplicates
[17:29:37] [PASSED] convert alpha formats
[17:29:37] [PASSED] random formats
[17:29:37] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[17:29:37] ============= [PASSED] drm_sysfb_modeset_test ==============
[17:29:37] ============================================================
[17:29:37] Testing complete. Ran 616 tests: passed: 616
[17:29:37] Elapsed time: 24.797s total, 1.673s configuring, 22.956s building, 0.150s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[17:29:37] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:29:39] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[17:29:47] Starting KUnit Kernel (1/1)...
[17:29:47] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:29:47] ================= ttm_device (5 subtests) ==================
[17:29:47] [PASSED] ttm_device_init_basic
[17:29:47] [PASSED] ttm_device_init_multiple
[17:29:47] [PASSED] ttm_device_fini_basic
[17:29:47] [PASSED] ttm_device_init_no_vma_man
[17:29:47] ================== ttm_device_init_pools  ==================
[17:29:47] [PASSED] No DMA allocations, no DMA32 required
[17:29:47] [PASSED] DMA allocations, DMA32 required
[17:29:47] [PASSED] No DMA allocations, DMA32 required
[17:29:47] [PASSED] DMA allocations, no DMA32 required
[17:29:47] ============== [PASSED] ttm_device_init_pools ==============
[17:29:47] =================== [PASSED] ttm_device ====================
[17:29:47] ================== ttm_pool (8 subtests) ===================
[17:29:47] ================== ttm_pool_alloc_basic  ===================
[17:29:47] [PASSED] One page
[17:29:47] [PASSED] More than one page
[17:29:47] [PASSED] Above the allocation limit
[17:29:47] [PASSED] One page, with coherent DMA mappings enabled
[17:29:47] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:29:47] ============== [PASSED] ttm_pool_alloc_basic ===============
[17:29:47] ============== ttm_pool_alloc_basic_dma_addr  ==============
[17:29:47] [PASSED] One page
[17:29:47] [PASSED] More than one page
[17:29:47] [PASSED] Above the allocation limit
[17:29:47] [PASSED] One page, with coherent DMA mappings enabled
[17:29:47] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:29:47] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[17:29:47] [PASSED] ttm_pool_alloc_order_caching_match
[17:29:47] [PASSED] ttm_pool_alloc_caching_mismatch
[17:29:47] [PASSED] ttm_pool_alloc_order_mismatch
[17:29:47] [PASSED] ttm_pool_free_dma_alloc
[17:29:47] [PASSED] ttm_pool_free_no_dma_alloc
[17:29:47] [PASSED] ttm_pool_fini_basic
[17:29:47] ==================== [PASSED] ttm_pool =====================
[17:29:47] ================ ttm_resource (8 subtests) =================
[17:29:47] ================= ttm_resource_init_basic  =================
[17:29:47] [PASSED] Init resource in TTM_PL_SYSTEM
[17:29:47] [PASSED] Init resource in TTM_PL_VRAM
[17:29:47] [PASSED] Init resource in a private placement
[17:29:47] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[17:29:47] ============= [PASSED] ttm_resource_init_basic =============
[17:29:47] [PASSED] ttm_resource_init_pinned
[17:29:47] [PASSED] ttm_resource_fini_basic
[17:29:47] [PASSED] ttm_resource_manager_init_basic
[17:29:47] [PASSED] ttm_resource_manager_usage_basic
[17:29:47] [PASSED] ttm_resource_manager_set_used_basic
[17:29:47] [PASSED] ttm_sys_man_alloc_basic
[17:29:47] [PASSED] ttm_sys_man_free_basic
[17:29:47] ================== [PASSED] ttm_resource ===================
[17:29:47] =================== ttm_tt (15 subtests) ===================
[17:29:47] ==================== ttm_tt_init_basic  ====================
[17:29:47] [PASSED] Page-aligned size
[17:29:47] [PASSED] Extra pages requested
[17:29:47] ================ [PASSED] ttm_tt_init_basic ================
[17:29:47] [PASSED] ttm_tt_init_misaligned
[17:29:47] [PASSED] ttm_tt_fini_basic
[17:29:47] [PASSED] ttm_tt_fini_sg
[17:29:47] [PASSED] ttm_tt_fini_shmem
[17:29:47] [PASSED] ttm_tt_create_basic
[17:29:47] [PASSED] ttm_tt_create_invalid_bo_type
[17:29:47] [PASSED] ttm_tt_create_ttm_exists
[17:29:47] [PASSED] ttm_tt_create_failed
[17:29:47] [PASSED] ttm_tt_destroy_basic
[17:29:47] [PASSED] ttm_tt_populate_null_ttm
[17:29:47] [PASSED] ttm_tt_populate_populated_ttm
[17:29:47] [PASSED] ttm_tt_unpopulate_basic
[17:29:47] [PASSED] ttm_tt_unpopulate_empty_ttm
[17:29:47] [PASSED] ttm_tt_swapin_basic
[17:29:47] ===================== [PASSED] ttm_tt ======================
[17:29:47] =================== ttm_bo (14 subtests) ===================
[17:29:47] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[17:29:47] [PASSED] Cannot be interrupted and sleeps
[17:29:47] [PASSED] Cannot be interrupted, locks straight away
[17:29:47] [PASSED] Can be interrupted, sleeps
[17:29:47] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[17:29:47] [PASSED] ttm_bo_reserve_locked_no_sleep
[17:29:47] [PASSED] ttm_bo_reserve_no_wait_ticket
[17:29:47] [PASSED] ttm_bo_reserve_double_resv
[17:29:47] [PASSED] ttm_bo_reserve_interrupted
[17:29:47] [PASSED] ttm_bo_reserve_deadlock
[17:29:47] [PASSED] ttm_bo_unreserve_basic
[17:29:47] [PASSED] ttm_bo_unreserve_pinned
[17:29:47] [PASSED] ttm_bo_unreserve_bulk
[17:29:47] [PASSED] ttm_bo_put_basic
[17:29:47] [PASSED] ttm_bo_put_shared_resv
[17:29:47] [PASSED] ttm_bo_pin_basic
[17:29:47] [PASSED] ttm_bo_pin_unpin_resource
[17:29:47] [PASSED] ttm_bo_multiple_pin_one_unpin
[17:29:47] ===================== [PASSED] ttm_bo ======================
[17:29:47] ============== ttm_bo_validate (21 subtests) ===============
[17:29:47] ============== ttm_bo_init_reserved_sys_man  ===============
[17:29:47] [PASSED] Buffer object for userspace
[17:29:47] [PASSED] Kernel buffer object
[17:29:47] [PASSED] Shared buffer object
[17:29:47] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[17:29:47] ============== ttm_bo_init_reserved_mock_man  ==============
[17:29:47] [PASSED] Buffer object for userspace
[17:29:47] [PASSED] Kernel buffer object
[17:29:47] [PASSED] Shared buffer object
[17:29:47] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[17:29:47] [PASSED] ttm_bo_init_reserved_resv
[17:29:47] ================== ttm_bo_validate_basic  ==================
[17:29:47] [PASSED] Buffer object for userspace
[17:29:47] [PASSED] Kernel buffer object
[17:29:47] [PASSED] Shared buffer object
[17:29:47] ============== [PASSED] ttm_bo_validate_basic ==============
[17:29:47] [PASSED] ttm_bo_validate_invalid_placement
[17:29:47] ============= ttm_bo_validate_same_placement  ==============
[17:29:47] [PASSED] System manager
[17:29:47] [PASSED] VRAM manager
[17:29:47] ========= [PASSED] ttm_bo_validate_same_placement ==========
[17:29:47] [PASSED] ttm_bo_validate_failed_alloc
[17:29:47] [PASSED] ttm_bo_validate_pinned
[17:29:47] [PASSED] ttm_bo_validate_busy_placement
[17:29:47] ================ ttm_bo_validate_multihop  =================
[17:29:47] [PASSED] Buffer object for userspace
[17:29:47] [PASSED] Kernel buffer object
[17:29:47] [PASSED] Shared buffer object
[17:29:47] ============ [PASSED] ttm_bo_validate_multihop =============
[17:29:47] ========== ttm_bo_validate_no_placement_signaled  ==========
[17:29:47] [PASSED] Buffer object in system domain, no page vector
[17:29:47] [PASSED] Buffer object in system domain with an existing page vector
[17:29:47] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[17:29:47] ======== ttm_bo_validate_no_placement_not_signaled  ========
[17:29:47] [PASSED] Buffer object for userspace
[17:29:47] [PASSED] Kernel buffer object
[17:29:47] [PASSED] Shared buffer object
[17:29:47] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[17:29:47] [PASSED] ttm_bo_validate_move_fence_signaled
[17:29:47] ========= ttm_bo_validate_move_fence_not_signaled  =========
[17:29:47] [PASSED] Waits for GPU
[17:29:47] [PASSED] Tries to lock straight away
[17:29:47] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[17:29:47] [PASSED] ttm_bo_validate_happy_evict
[17:29:47] [PASSED] ttm_bo_validate_all_pinned_evict
[17:29:47] [PASSED] ttm_bo_validate_allowed_only_evict
[17:29:47] [PASSED] ttm_bo_validate_deleted_evict
[17:29:47] [PASSED] ttm_bo_validate_busy_domain_evict
[17:29:47] [PASSED] ttm_bo_validate_evict_gutting
[17:29:47] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[17:29:47] ================= [PASSED] ttm_bo_validate =================
[17:29:47] ============================================================
[17:29:47] Testing complete. Ran 101 tests: passed: 101
[17:29:47] Elapsed time: 9.980s total, 1.703s configuring, 8.010s building, 0.232s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 20+ messages in thread

* ✓ Xe.CI.BAT: success for drm/xe: replace basename() with portable strrchr() (rev3)
  2025-08-20 20:16 [PATCH] drm/xe: replace basename() with portable strrchr() Carlos Llamas
                   ` (8 preceding siblings ...)
  2025-08-25 17:29 ` ✓ CI.KUnit: success for drm/xe: replace basename() with portable strrchr() (rev3) Patchwork
@ 2025-08-25 18:18 ` Patchwork
  2025-08-26  2:01 ` ✗ Xe.CI.Full: failure " Patchwork
  10 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-08-25 18:18 UTC (permalink / raw)
  To: Carlos Llamas; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 1336 bytes --]

== Series Details ==

Series: drm/xe: replace basename() with portable strrchr() (rev3)
URL   : https://patchwork.freedesktop.org/series/153291/
State : success

== Summary ==

CI Bug Log - changes from xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729_BAT -> xe-pw-153291v3_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in xe-pw-153291v3_BAT that come from known issues:

### IGT changes ###

  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#5783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5783


Build changes
-------------

  * IGT: IGT_8506 -> IGT_8507
  * Linux: xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729 -> xe-pw-153291v3

  IGT_8506: 7d64f83f6d40ca187e9f317007c03db9d8b34ffb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8507: 8507
  xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729: 18d3cf2c98bae56e1e393a788980d9d26442f729
  xe-pw-153291v3: 153291v3

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/index.html

[-- Attachment #2: Type: text/html, Size: 1827 bytes --]

^ permalink raw reply	[flat|nested] 20+ messages in thread

* ✗ Xe.CI.Full: failure for drm/xe: replace basename() with portable strrchr() (rev3)
  2025-08-20 20:16 [PATCH] drm/xe: replace basename() with portable strrchr() Carlos Llamas
                   ` (9 preceding siblings ...)
  2025-08-25 18:18 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-08-26  2:01 ` Patchwork
  10 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-08-26  2:01 UTC (permalink / raw)
  To: Carlos Llamas; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 96365 bytes --]

== Series Details ==

Series: drm/xe: replace basename() with portable strrchr() (rev3)
URL   : https://patchwork.freedesktop.org/series/153291/
State : failure

== Summary ==

CI Bug Log - changes from xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729_FULL -> xe-pw-153291v3_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-153291v3_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-153291v3_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 xe-pw-153291v3_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_pmu@engine-activity-single-load:
    - shard-dg2-set2:     [PASS][1] -> [FAIL][2] +6 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-432/igt@xe_pmu@engine-activity-single-load.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-464/igt@xe_pmu@engine-activity-single-load.html
    - shard-lnl:          [PASS][3] -> [FAIL][4] +4 other tests fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-lnl-8/igt@xe_pmu@engine-activity-single-load.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-1/igt@xe_pmu@engine-activity-single-load.html

  * igt@xe_pmu@engine-activity-single-load@engine-drm_xe_engine_class_render0:
    - shard-adlp:         [PASS][5] -> [FAIL][6] +4 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-adlp-1/igt@xe_pmu@engine-activity-single-load@engine-drm_xe_engine_class_render0.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-1/igt@xe_pmu@engine-activity-single-load@engine-drm_xe_engine_class_render0.html
    - shard-bmg:          [PASS][7] -> [FAIL][8] +7 other tests fail
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-5/igt@xe_pmu@engine-activity-single-load@engine-drm_xe_engine_class_render0.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-2/igt@xe_pmu@engine-activity-single-load@engine-drm_xe_engine_class_render0.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-bmg:          NOTRUN -> [FAIL][9]
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-5/igt@xe_sriov_flr@flr-vfs-parallel.html

  
Known issues
------------

  Here are the changes found in xe-pw-153291v3_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@intel_hwmon@hwmon-write:
    - shard-bmg:          NOTRUN -> [FAIL][10] ([Intel XE#4665])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-3/igt@intel_hwmon@hwmon-write.html

  * igt@kms_async_flips@crc-atomic:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_async_flips@crc-atomic.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2370])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][13] ([Intel XE#1407]) +1 other test skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-adlp:         NOTRUN -> [SKIP][14] ([Intel XE#1124]) +3 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@linear-64bpp-rotate-180:
    - shard-dg2-set2:     NOTRUN -> [SKIP][15] ([Intel XE#2351] / [Intel XE#4208])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-180.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-adlp:         NOTRUN -> [SKIP][16] ([Intel XE#316])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-8/igt@kms_big_fb@linear-64bpp-rotate-90.html
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2327]) +4 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-4/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-0:
    - shard-dg2-set2:     [PASS][18] -> [SKIP][19] ([Intel XE#2351] / [Intel XE#4208]) +4 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-436/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-0:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][20] ([Intel XE#4543])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-8/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][21] ([Intel XE#316]) +3 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-dg2-set2:     NOTRUN -> [SKIP][22] ([Intel XE#610])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][23] ([Intel XE#1124]) +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-adlp:         [PASS][24] -> [DMESG-FAIL][25] ([Intel XE#4543]) +5 other tests dmesg-fail
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#1124]) +5 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#1124]) +2 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - shard-lnl:          NOTRUN -> [SKIP][28] ([Intel XE#2191])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-8/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][29] ([Intel XE#367])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-2/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#367]) +1 other test skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-1920x1080p:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#1512])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-4/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][32] ([Intel XE#787]) +132 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-2.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2887]) +10 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][34] ([Intel XE#787]) +23 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-9/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][35] ([Intel XE#2887]) +5 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][36] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][37] ([Intel XE#2907]) +1 other test skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][38] ([Intel XE#5376]) +1 other test fail
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][39] ([Intel XE#455] / [Intel XE#787]) +22 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [PASS][40] -> [INCOMPLETE][41] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][42] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [PASS][43] -> [INCOMPLETE][44] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
    - shard-dg2-set2:     [PASS][45] -> [INCOMPLETE][46] ([Intel XE#3124])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [PASS][47] -> [DMESG-WARN][48] ([Intel XE#1727] / [Intel XE#3113])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#4416]) +3 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-464/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#2325]) +2 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-7/igt@kms_chamelium_color@ctm-0-25.html
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#306])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-3/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_color@ctm-limited-range:
    - shard-adlp:         NOTRUN -> [SKIP][53] ([Intel XE#306])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-2/igt@kms_chamelium_color@ctm-limited-range.html

  * igt@kms_chamelium_edid@vga-edid-read:
    - shard-dg2-set2:     NOTRUN -> [SKIP][54] ([Intel XE#373]) +2 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-433/igt@kms_chamelium_edid@vga-edid-read.html

  * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
    - shard-lnl:          NOTRUN -> [SKIP][55] ([Intel XE#373]) +3 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-2/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html

  * igt@kms_chamelium_frames@hdmi-crc-single:
    - shard-adlp:         NOTRUN -> [SKIP][56] ([Intel XE#373]) +2 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-4/igt@kms_chamelium_frames@hdmi-crc-single.html

  * igt@kms_chamelium_hpd@dp-hpd:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2252]) +2 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd.html

  * igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][58] ([Intel XE#1178]) +1 other test fail
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-3/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][59] ([Intel XE#1178]) +1 other test fail
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-463/igt@kms_content_protection@srm@pipe-a-dp-4.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          NOTRUN -> [FAIL][60] ([Intel XE#1188]) +1 other test fail
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-1/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-onscreen-128x42:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#2320]) +5 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html

  * igt@kms_cursor_crc@cursor-onscreen-64x64:
    - shard-dg2-set2:     [PASS][62] -> [SKIP][63] ([Intel XE#4208] / [i915#2575]) +47 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-64x64.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-64x64.html

  * igt@kms_cursor_crc@cursor-sliding-128x42:
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#1424]) +2 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-128x42.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-adlp:         NOTRUN -> [SKIP][65] ([Intel XE#308])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-1/igt@kms_cursor_crc@cursor-sliding-512x170.html
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#2321])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
    - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#309]) +2 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-bmg:          [PASS][68] -> [SKIP][69] ([Intel XE#2291]) +1 other test skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@torture-bo:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][70] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-3/igt@kms_cursor_legacy@torture-bo.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-bmg:          NOTRUN -> [SKIP][71] ([Intel XE#4354])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-4/igt@kms_dp_link_training@uhbr-mst.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][72] ([Intel XE#4356])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-463/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-lnl:          NOTRUN -> [SKIP][73] ([Intel XE#2244])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-8/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-bmg:          NOTRUN -> [SKIP][74] ([Intel XE#2244]) +1 other test skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-7/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_fbcon_fbt@fbc:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#5425])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-1/igt@kms_fbcon_fbt@fbc.html

  * igt@kms_flip@2x-absolute-wf_vblank-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#1421]) +1 other test skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-5/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-modeset-vs-hang:
    - shard-adlp:         NOTRUN -> [SKIP][77] ([Intel XE#310]) +2 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-9/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
    - shard-bmg:          NOTRUN -> [SKIP][78] ([Intel XE#2316]) +1 other test skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-bmg:          [PASS][79] -> [SKIP][80] ([Intel XE#2316]) +4 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-5/igt@kms_flip@2x-wf_vblank-ts-check.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [PASS][81] -> [FAIL][82] ([Intel XE#301]) +1 other test fail
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-panning-interruptible:
    - shard-adlp:         [PASS][83] -> [DMESG-WARN][84] ([Intel XE#4543] / [Intel XE#5208]) +1 other test dmesg-warn
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-adlp-4/igt@kms_flip@flip-vs-panning-interruptible.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-1/igt@kms_flip@flip-vs-panning-interruptible.html

  * igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
    - shard-adlp:         [PASS][85] -> [DMESG-WARN][86] ([Intel XE#4543]) +11 other tests dmesg-warn
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-adlp-3/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-8/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html

  * igt@kms_flip@modeset-vs-vblank-race-interruptible:
    - shard-lnl:          [PASS][87] -> [FAIL][88] ([Intel XE#3098]) +1 other test fail
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-lnl-1/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-8/igt@kms_flip@modeset-vs-vblank-race-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
    - shard-lnl:          NOTRUN -> [FAIL][89] ([Intel XE#4683]) +1 other test fail
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
    - shard-adlp:         [PASS][90] -> [DMESG-FAIL][91] ([Intel XE#4543] / [Intel XE#4921]) +3 other tests dmesg-fail
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-9/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#2293]) +2 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html

  * igt@kms_force_connector_basic@force-connector-state:
    - shard-lnl:          NOTRUN -> [SKIP][94] ([Intel XE#352])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-2/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][95] ([Intel XE#651]) +2 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][96] ([Intel XE#2311]) +20 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
    - shard-adlp:         NOTRUN -> [SKIP][97] ([Intel XE#651]) +5 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][98] ([Intel XE#5390]) +3 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#2312]) +2 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][100] ([Intel XE#651]) +7 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-4:
    - shard-adlp:         NOTRUN -> [SKIP][101] ([Intel XE#1151])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][102] ([Intel XE#653]) +8 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][103] ([Intel XE#656]) +10 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
    - shard-bmg:          NOTRUN -> [SKIP][104] ([Intel XE#2313]) +18 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-adlp:         NOTRUN -> [SKIP][105] ([Intel XE#653]) +5 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#5672])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-dg2-set2:     NOTRUN -> [SKIP][107] ([Intel XE#1158])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][108] ([Intel XE#656]) +9 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_hdr@invalid-hdr:
    - shard-dg2-set2:     [PASS][109] -> [SKIP][110] ([Intel XE#455])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-466/igt@kms_hdr@invalid-hdr.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][111] ([Intel XE#346])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-8/igt@kms_joiner@basic-big-joiner.html
    - shard-bmg:          NOTRUN -> [SKIP][112] ([Intel XE#346])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-8/igt@kms_joiner@basic-big-joiner.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][113] ([Intel XE#346])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-432/igt@kms_joiner@basic-big-joiner.html
    - shard-lnl:          NOTRUN -> [SKIP][114] ([Intel XE#346])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-4/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][115] ([Intel XE#4298])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-3/igt@kms_joiner@basic-max-non-joiner.html
    - shard-bmg:          NOTRUN -> [SKIP][116] ([Intel XE#4298])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-1/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [PASS][117] -> [SKIP][118] ([Intel XE#3012])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-bmg:          NOTRUN -> [SKIP][119] ([Intel XE#2501])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane@plane-panning-bottom-right-suspend:
    - shard-adlp:         [PASS][120] -> [DMESG-WARN][121] ([Intel XE#2953] / [Intel XE#4173]) +7 other tests dmesg-warn
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-adlp-8/igt@kms_plane@plane-panning-bottom-right-suspend.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-3/igt@kms_plane@plane-panning-bottom-right-suspend.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-adlp:         NOTRUN -> [SKIP][122] ([Intel XE#5020])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-4/igt@kms_plane_multiple@tiling-yf.html
    - shard-bmg:          NOTRUN -> [SKIP][123] ([Intel XE#5020])
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-7/igt@kms_plane_multiple@tiling-yf.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][124] ([Intel XE#5020])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_plane_multiple@tiling-yf.html
    - shard-lnl:          NOTRUN -> [SKIP][125] ([Intel XE#5020])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-3/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-adlp:         NOTRUN -> [SKIP][126] ([Intel XE#309]) +5 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
    - shard-bmg:          NOTRUN -> [SKIP][127] ([Intel XE#2763]) +4 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-lnl:          [PASS][128] -> [FAIL][129] ([Intel XE#718])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-2/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][130] ([Intel XE#2499])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-8/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-adlp:         NOTRUN -> [SKIP][131] ([Intel XE#836])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
    - shard-lnl:          NOTRUN -> [SKIP][132] ([Intel XE#1439] / [Intel XE#3141])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][133] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-lnl:          NOTRUN -> [SKIP][134] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][135] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
    - shard-bmg:          NOTRUN -> [SKIP][136] ([Intel XE#1406] / [Intel XE#1489]) +6 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][137] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
    - shard-adlp:         NOTRUN -> [SKIP][138] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-2/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr@fbc-pr-cursor-render:
    - shard-lnl:          NOTRUN -> [SKIP][139] ([Intel XE#1406] / [Intel XE#5784])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-2/igt@kms_psr@fbc-pr-cursor-render.html

  * igt@kms_psr@fbc-psr2-primary-page-flip@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][140] ([Intel XE#1406] / [Intel XE#4609])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-8/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html

  * igt@kms_psr@pr-basic:
    - shard-dg2-set2:     NOTRUN -> [SKIP][141] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-466/igt@kms_psr@pr-basic.html
    - shard-lnl:          NOTRUN -> [SKIP][142] ([Intel XE#1406]) +1 other test skip
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-1/igt@kms_psr@pr-basic.html

  * igt@kms_psr@psr-basic:
    - shard-adlp:         NOTRUN -> [SKIP][143] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +4 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-8/igt@kms_psr@psr-basic.html
    - shard-bmg:          NOTRUN -> [SKIP][144] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +11 other tests skip
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-2/igt@kms_psr@psr-basic.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-dg2-set2:     NOTRUN -> [SKIP][145] ([Intel XE#455]) +6 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-436/igt@kms_scaling_modes@scaling-mode-full-aspect.html
    - shard-bmg:          NOTRUN -> [SKIP][146] ([Intel XE#2413])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-bmg:          NOTRUN -> [SKIP][147] ([Intel XE#1435])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-4/igt@kms_setmode@basic-clone-single-crtc.html
    - shard-lnl:          NOTRUN -> [SKIP][148] ([Intel XE#1435])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-4/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-lnl:          NOTRUN -> [SKIP][149] ([Intel XE#330])
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-2/igt@kms_tv_load_detect@load-detect.html
    - shard-adlp:         NOTRUN -> [SKIP][150] ([Intel XE#330])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-1/igt@kms_tv_load_detect@load-detect.html
    - shard-bmg:          NOTRUN -> [SKIP][151] ([Intel XE#2450])
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-adlp:         [PASS][152] -> [INCOMPLETE][153] ([Intel XE#4488] / [Intel XE#5545])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-adlp-2/igt@kms_vblank@ts-continuation-suspend.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-4/igt@kms_vblank@ts-continuation-suspend.html
    - shard-bmg:          [PASS][154] -> [INCOMPLETE][155] ([Intel XE#4488]) +1 other test incomplete
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-8/igt@kms_vblank@ts-continuation-suspend.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-8/igt@kms_vblank@ts-continuation-suspend.html

  * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1:
    - shard-adlp:         [PASS][156] -> [DMESG-FAIL][157] ([Intel XE#5545])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-adlp-2/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-4/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html

  * igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-1:
    - shard-adlp:         [PASS][158] -> [INCOMPLETE][159] ([Intel XE#4488])
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-adlp-2/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-1.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-4/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-1.html

  * igt@kms_vrr@flip-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][160] ([Intel XE#455]) +11 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-4/igt@kms_vrr@flip-suspend.html
    - shard-bmg:          NOTRUN -> [SKIP][161] ([Intel XE#1499]) +1 other test skip
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-7/igt@kms_vrr@flip-suspend.html

  * igt@xe_compute_preempt@compute-preempt-many-all-ram:
    - shard-adlp:         NOTRUN -> [SKIP][162] ([Intel XE#455] / [Intel XE#5632])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-2/igt@xe_compute_preempt@compute-preempt-many-all-ram.html

  * igt@xe_eu_stall@blocking-read:
    - shard-adlp:         NOTRUN -> [SKIP][163] ([Intel XE#5626])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-2/igt@xe_eu_stall@blocking-read.html

  * igt@xe_eudebug@discovery-empty:
    - shard-adlp:         NOTRUN -> [SKIP][164] ([Intel XE#4837] / [Intel XE#5565]) +1 other test skip
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-3/igt@xe_eudebug@discovery-empty.html
    - shard-bmg:          NOTRUN -> [SKIP][165] ([Intel XE#4837]) +7 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-2/igt@xe_eudebug@discovery-empty.html

  * igt@xe_eudebug@multiple-sessions:
    - shard-dg2-set2:     NOTRUN -> [SKIP][166] ([Intel XE#4837]) +2 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-466/igt@xe_eudebug@multiple-sessions.html

  * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram:
    - shard-lnl:          NOTRUN -> [SKIP][167] ([Intel XE#4837]) +2 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-2/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html

  * igt@xe_evict@evict-large-cm:
    - shard-adlp:         NOTRUN -> [SKIP][168] ([Intel XE#261] / [Intel XE#5564]) +2 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-1/igt@xe_evict@evict-large-cm.html
    - shard-lnl:          NOTRUN -> [SKIP][169] ([Intel XE#688])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-2/igt@xe_evict@evict-large-cm.html

  * igt@xe_exec_balancer@twice-virtual-basic:
    - shard-dg2-set2:     NOTRUN -> [SKIP][170] ([Intel XE#4208]) +15 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_exec_balancer@twice-virtual-basic.html

  * igt@xe_exec_basic@many-null-rebind:
    - shard-dg2-set2:     [PASS][171] -> [SKIP][172] ([Intel XE#4208]) +80 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-466/igt@xe_exec_basic@many-null-rebind.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_exec_basic@many-null-rebind.html

  * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
    - shard-dg2-set2:     [PASS][173] -> [SKIP][174] ([Intel XE#1392]) +6 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-433/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html

  * igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
    - shard-lnl:          NOTRUN -> [SKIP][175] ([Intel XE#1392])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-bind:
    - shard-adlp:         NOTRUN -> [SKIP][176] ([Intel XE#1392] / [Intel XE#5575]) +2 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-2/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
    - shard-bmg:          NOTRUN -> [SKIP][177] ([Intel XE#2322]) +4 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-3/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html

  * igt@xe_exec_fault_mode@many-invalid-userptr-fault:
    - shard-adlp:         NOTRUN -> [SKIP][178] ([Intel XE#288] / [Intel XE#5561]) +9 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-9/igt@xe_exec_fault_mode@many-invalid-userptr-fault.html

  * igt@xe_exec_fault_mode@many-userptr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][179] ([Intel XE#288]) +3 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-464/igt@xe_exec_fault_mode@many-userptr.html

  * igt@xe_exec_system_allocator@once-mmap-free-huge:
    - shard-lnl:          NOTRUN -> [SKIP][180] ([Intel XE#4943]) +4 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-5/igt@xe_exec_system_allocator@once-mmap-free-huge.html

  * igt@xe_exec_system_allocator@process-many-large-mmap-huge:
    - shard-bmg:          NOTRUN -> [SKIP][181] ([Intel XE#4943]) +17 other tests skip
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-4/igt@xe_exec_system_allocator@process-many-large-mmap-huge.html

  * igt@xe_exec_system_allocator@process-many-large-mmap-remap-ro:
    - shard-adlp:         NOTRUN -> [SKIP][182] ([Intel XE#4915]) +91 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-1/igt@xe_exec_system_allocator@process-many-large-mmap-remap-ro.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-shared-nomemset:
    - shard-dg2-set2:     NOTRUN -> [SKIP][183] ([Intel XE#4915]) +77 other tests skip
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-463/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-shared-nomemset.html

  * igt@xe_exec_threads@threads-hang-fd-rebind:
    - shard-dg2-set2:     [PASS][184] -> [DMESG-WARN][185] ([Intel XE#3876])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-464/igt@xe_exec_threads@threads-hang-fd-rebind.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-435/igt@xe_exec_threads@threads-hang-fd-rebind.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-dg2-set2:     [PASS][186] -> [DMESG-WARN][187] ([Intel XE#5893])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-466/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-466/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
    - shard-bmg:          NOTRUN -> [ABORT][188] ([Intel XE#5530])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-6/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  * igt@xe_media_fill@media-fill:
    - shard-bmg:          NOTRUN -> [SKIP][189] ([Intel XE#2459] / [Intel XE#2596])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-4/igt@xe_media_fill@media-fill.html

  * igt@xe_module_load@reload:
    - shard-dg2-set2:     [PASS][190] -> [FAIL][191] ([Intel XE#4208])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-463/igt@xe_module_load@reload.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_module_load@reload.html

  * igt@xe_oa@invalid-create-userspace-config:
    - shard-dg2-set2:     NOTRUN -> [SKIP][192] ([Intel XE#3573]) +3 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-463/igt@xe_oa@invalid-create-userspace-config.html

  * igt@xe_oa@non-sampling-read-error:
    - shard-adlp:         NOTRUN -> [SKIP][193] ([Intel XE#3573]) +3 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-3/igt@xe_oa@non-sampling-read-error.html

  * igt@xe_pm@s2idle-vm-bind-userptr:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][194] ([Intel XE#4504])
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_pm@s2idle-vm-bind-userptr.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [SKIP][195] ([Intel XE#2284] / [Intel XE#366])
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-435/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pmu@fn-engine-activity-sched-if-idle:
    - shard-bmg:          [PASS][196] -> [DMESG-WARN][197] ([Intel XE#3876])
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-3/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-6/igt@xe_pmu@fn-engine-activity-sched-if-idle.html

  * igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy:
    - shard-dg2-set2:     NOTRUN -> [SKIP][198] ([Intel XE#4733])
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-436/igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy.html

  * igt@xe_pxp@pxp-stale-queue-post-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][199] ([Intel XE#4733]) +1 other test skip
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-7/igt@xe_pxp@pxp-stale-queue-post-suspend.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-adlp:         NOTRUN -> [SKIP][200] ([Intel XE#944])
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-4/igt@xe_query@multigpu-query-cs-cycles.html
    - shard-bmg:          NOTRUN -> [SKIP][201] ([Intel XE#944]) +1 other test skip
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-7/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
    - shard-lnl:          NOTRUN -> [SKIP][202] ([Intel XE#944])
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-1/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html

  * igt@xe_render_copy@render-stress-2-copies:
    - shard-dg2-set2:     NOTRUN -> [SKIP][203] ([Intel XE#4814])
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_render_copy@render-stress-2-copies.html

  * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][204] ([Intel XE#4130])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-433/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
    - shard-lnl:          NOTRUN -> [SKIP][205] ([Intel XE#4130])
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html

  
#### Possible fixes ####

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2:
    - shard-bmg:          [FAIL][206] ([Intel XE#3718] / [Intel XE#827]) -> [PASS][207] +1 other test pass
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-bmg:          [SKIP][208] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][209]
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [INCOMPLETE][210] ([Intel XE#3862]) -> [PASS][211] +1 other test pass
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][212] ([Intel XE#3862]) -> [PASS][213] +1 other test pass
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
    - shard-bmg:          [SKIP][214] ([Intel XE#2291]) -> [PASS][215] +2 other tests pass
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-bmg:          [FAIL][216] ([Intel XE#1475]) -> [PASS][217]
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [SKIP][218] ([Intel XE#2373]) -> [PASS][219]
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-2/igt@kms_feature_discovery@display-2x.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-bmg:          [SKIP][220] ([Intel XE#2316]) -> [PASS][221] +8 other tests pass
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][222] ([Intel XE#4543]) -> [PASS][223] +8 other tests pass
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-adlp-9/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-4/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [INCOMPLETE][224] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][225] +1 other test pass
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
    - shard-adlp:         [DMESG-FAIL][226] ([Intel XE#4543]) -> [PASS][227] +12 other tests pass
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
    - shard-adlp:         [FAIL][228] ([Intel XE#5671]) -> [PASS][229]
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-adlp-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-bmg:          [SKIP][230] ([Intel XE#1503]) -> [PASS][231]
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-6/igt@kms_hdr@static-toggle-dpms.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-2/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [SKIP][232] ([Intel XE#4596]) -> [PASS][233] +1 other test pass
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-bmg:          [SKIP][234] ([Intel XE#2685] / [Intel XE#3307]) -> [PASS][235]
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-2/igt@kms_plane_scaling@intel-max-src-size.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-2/igt@kms_plane_scaling@intel-max-src-size.html
    - shard-dg2-set2:     [SKIP][236] ([Intel XE#455]) -> [PASS][237]
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [FAIL][238] ([Intel XE#718]) -> [PASS][239]
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-bmg:          [INCOMPLETE][240] -> [PASS][241]
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-5/igt@kms_pm_rpm@system-suspend-modeset.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-2/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_pm_rpm@universal-planes:
    - shard-adlp:         [DMESG-WARN][242] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#5750]) -> [PASS][243]
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-adlp-3/igt@kms_pm_rpm@universal-planes.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-4/igt@kms_pm_rpm@universal-planes.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [FAIL][244] ([Intel XE#4459]) -> [PASS][245] +1 other test pass
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@xe_exec_balancer@twice-cm-virtual-userptr:
    - shard-dg2-set2:     [INCOMPLETE][246] ([Intel XE#2594]) -> [PASS][247]
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-434/igt@xe_exec_balancer@twice-cm-virtual-userptr.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-463/igt@xe_exec_balancer@twice-cm-virtual-userptr.html

  * igt@xe_exec_basic@multigpu-no-exec-rebind:
    - shard-dg2-set2:     [SKIP][248] ([Intel XE#1392]) -> [PASS][249] +2 other tests pass
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-rebind.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-435/igt@xe_exec_basic@multigpu-no-exec-rebind.html

  * igt@xe_exec_threads@threads-hang-userptr-invalidate:
    - shard-adlp:         [DMESG-FAIL][250] ([Intel XE#3876]) -> [PASS][251]
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-adlp-1/igt@xe_exec_threads@threads-hang-userptr-invalidate.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-1/igt@xe_exec_threads@threads-hang-userptr-invalidate.html
    - shard-bmg:          [DMESG-FAIL][252] ([Intel XE#3876]) -> [PASS][253]
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-5/igt@xe_exec_threads@threads-hang-userptr-invalidate.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-5/igt@xe_exec_threads@threads-hang-userptr-invalidate.html

  * igt@xe_pmu@gt-frequency:
    - shard-dg2-set2:     [FAIL][254] ([Intel XE#5841]) -> [PASS][255] +1 other test pass
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-434/igt@xe_pmu@gt-frequency.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-463/igt@xe_pmu@gt-frequency.html

  
#### Warnings ####

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][256] ([Intel XE#316]) -> [SKIP][257] ([Intel XE#4208])
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][258] ([Intel XE#1124]) -> [SKIP][259] ([Intel XE#2351] / [Intel XE#4208])
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-dg2-set2:     [SKIP][260] ([Intel XE#1124]) -> [SKIP][261] ([Intel XE#4208]) +4 other tests skip
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_bw@linear-tiling-2-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][262] ([Intel XE#367]) -> [SKIP][263] ([Intel XE#4208] / [i915#2575])
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
    - shard-dg2-set2:     [SKIP][264] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][265] ([Intel XE#4208]) +7 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
    - shard-dg2-set2:     [SKIP][266] ([Intel XE#2907]) -> [SKIP][267] ([Intel XE#4208]) +1 other test skip
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html

  * igt@kms_chamelium_color@gamma:
    - shard-dg2-set2:     [SKIP][268] ([Intel XE#306]) -> [SKIP][269] ([Intel XE#4208] / [i915#2575])
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-434/igt@kms_chamelium_color@gamma.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-dg2-set2:     [SKIP][270] ([Intel XE#373]) -> [SKIP][271] ([Intel XE#4208] / [i915#2575]) +3 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-432/igt@kms_chamelium_edid@dp-edid-resolution-list.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [FAIL][272] ([Intel XE#1178]) -> [SKIP][273] ([Intel XE#2341])
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-7/igt@kms_content_protection@legacy.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-6/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic-type-1:
    - shard-dg2-set2:     [SKIP][274] ([Intel XE#455]) -> [SKIP][275] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-434/igt@kms_content_protection@lic-type-1.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_content_protection@lic-type-1.html

  * igt@kms_content_protection@srm:
    - shard-bmg:          [SKIP][276] ([Intel XE#2341]) -> [FAIL][277] ([Intel XE#1178]) +1 other test fail
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-6/igt@kms_content_protection@srm.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-4/igt@kms_content_protection@srm.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-dg2-set2:     [SKIP][278] ([Intel XE#4422]) -> [SKIP][279] ([Intel XE#4208])
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-435/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_feature_discovery@display-4x:
    - shard-dg2-set2:     [SKIP][280] ([Intel XE#1138]) -> [SKIP][281] ([Intel XE#4208] / [i915#2575])
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-466/igt@kms_feature_discovery@display-4x.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_feature_discovery@display-4x.html

  * igt@kms_flip@flip-vs-rmfb-interruptible:
    - shard-adlp:         [DMESG-WARN][282] ([Intel XE#5208]) -> [DMESG-WARN][283] ([Intel XE#4543] / [Intel XE#5208])
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-adlp-8/igt@kms_flip@flip-vs-rmfb-interruptible.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-8/igt@kms_flip@flip-vs-rmfb-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-dg2-set2:     [SKIP][284] ([Intel XE#455]) -> [SKIP][285] ([Intel XE#2351] / [Intel XE#4208])
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-dg2-set2:     [SKIP][286] ([Intel XE#455]) -> [SKIP][287] ([Intel XE#4208]) +2 other tests skip
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][288] ([Intel XE#2312]) -> [SKIP][289] ([Intel XE#5390]) +4 other tests skip
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][290] ([Intel XE#5390]) -> [SKIP][291] ([Intel XE#2312]) +2 other tests skip
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen:
    - shard-dg2-set2:     [SKIP][292] ([Intel XE#651]) -> [SKIP][293] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][294] ([Intel XE#2312]) -> [SKIP][295] ([Intel XE#2311]) +8 other tests skip
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][296] ([Intel XE#2311]) -> [SKIP][297] ([Intel XE#2312]) +6 other tests skip
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw:
    - shard-dg2-set2:     [SKIP][298] ([Intel XE#651]) -> [SKIP][299] ([Intel XE#4208]) +9 other tests skip
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][300] ([Intel XE#653]) -> [SKIP][301] ([Intel XE#4208]) +13 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][302] ([Intel XE#2313]) -> [SKIP][303] ([Intel XE#2312]) +2 other tests skip
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][304] ([Intel XE#2312]) -> [SKIP][305] ([Intel XE#2313]) +10 other tests skip
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html

  * igt@kms_psr2_sf@pr-cursor-plane-update-sf:
    - shard-dg2-set2:     [SKIP][306] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][307] ([Intel XE#1406] / [Intel XE#4208]) +3 other tests skip
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-435/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-dg2-set2:     [SKIP][308] ([Intel XE#1122] / [Intel XE#1406]) -> [SKIP][309] ([Intel XE#1406] / [Intel XE#4208])
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-432/igt@kms_psr2_su@page_flip-p010.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-psr2-cursor-plane-onoff:
    - shard-dg2-set2:     [SKIP][310] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][311] ([Intel XE#1406] / [Intel XE#4208]) +3 other tests skip
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-463/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html

  * igt@kms_psr@pr-dpms:
    - shard-dg2-set2:     [SKIP][312] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][313] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-432/igt@kms_psr@pr-dpms.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_psr@pr-dpms.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-dg2-set2:     [SKIP][314] ([Intel XE#3414]) -> [SKIP][315] ([Intel XE#4208] / [i915#2575])
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-90.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [SKIP][316] ([Intel XE#362]) -> [FAIL][317] ([Intel XE#1729])
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern.html

  * igt@xe_compute_preempt@compute-preempt-many:
    - shard-dg2-set2:     [FAIL][318] ([Intel XE#5890]) -> [SKIP][319] ([Intel XE#4208])
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many.html

  * igt@xe_copy_basic@mem-set-linear-0xfffe:
    - shard-dg2-set2:     [SKIP][320] ([Intel XE#1126]) -> [SKIP][321] ([Intel XE#4208])
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfffe.html

  * igt@xe_eu_stall@invalid-gt-id:
    - shard-dg2-set2:     [SKIP][322] ([Intel XE#5626]) -> [SKIP][323] ([Intel XE#4208])
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-464/igt@xe_eu_stall@invalid-gt-id.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_eu_stall@invalid-gt-id.html

  * igt@xe_eudebug@vm-bind-clear-faultable:
    - shard-dg2-set2:     [SKIP][324] ([Intel XE#4837]) -> [SKIP][325] ([Intel XE#4208]) +4 other tests skip
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-434/igt@xe_eudebug@vm-bind-clear-faultable.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_eudebug@vm-bind-clear-faultable.html

  * igt@xe_eudebug_sriov@deny-eudebug:
    - shard-dg2-set2:     [SKIP][326] ([Intel XE#4518]) -> [SKIP][327] ([Intel XE#4208])
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-433/igt@xe_eudebug_sriov@deny-eudebug.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_eudebug_sriov@deny-eudebug.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
    - shard-dg2-set2:     [SKIP][328] ([Intel XE#1392]) -> [SKIP][329] ([Intel XE#4208])
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html

  * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm:
    - shard-dg2-set2:     [SKIP][330] ([Intel XE#288]) -> [SKIP][331] ([Intel XE#4208]) +9 other tests skip
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-463/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
    - shard-dg2-set2:     [SKIP][332] ([Intel XE#2360]) -> [SKIP][333] ([Intel XE#4208])
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html

  * igt@xe_exec_system_allocator@threads-many-execqueues-mmap-remap-dontunmap-eocheck:
    - shard-dg2-set2:     [SKIP][334] ([Intel XE#4915]) -> [SKIP][335] ([Intel XE#4208]) +115 other tests skip
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-432/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-remap-dontunmap-eocheck.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-remap-dontunmap-eocheck.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-dg2-set2:     [ABORT][336] ([Intel XE#4917]) -> [SKIP][337] ([Intel XE#4208])
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-463/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_oa@buffer-size:
    - shard-dg2-set2:     [SKIP][338] ([Intel XE#5103]) -> [SKIP][339] ([Intel XE#4208])
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-433/igt@xe_oa@buffer-size.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_oa@buffer-size.html

  * igt@xe_oa@missing-sample-flags:
    - shard-dg2-set2:     [SKIP][340] ([Intel XE#3573]) -> [SKIP][341] ([Intel XE#4208]) +2 other tests skip
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-434/igt@xe_oa@missing-sample-flags.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_oa@missing-sample-flags.html

  * igt@xe_peer2peer@read:
    - shard-dg2-set2:     [FAIL][342] ([Intel XE#1173]) -> [SKIP][343] ([Intel XE#1061])
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-433/igt@xe_peer2peer@read.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-432/igt@xe_peer2peer@read.html

  * igt@xe_pm@d3cold-mocs:
    - shard-adlp:         [ABORT][344] ([Intel XE#5545]) -> [SKIP][345] ([Intel XE#2284])
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-adlp-1/igt@xe_pm@d3cold-mocs.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-adlp-9/igt@xe_pm@d3cold-mocs.html
    - shard-bmg:          [ABORT][346] ([Intel XE#4760] / [Intel XE#5440] / [Intel XE#5545]) -> [SKIP][347] ([Intel XE#2284])
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-bmg-5/igt@xe_pm@d3cold-mocs.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-bmg-6/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-dg2-set2:     [SKIP][348] ([Intel XE#579]) -> [SKIP][349] ([Intel XE#4208])
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-463/igt@xe_pm@vram-d3cold-threshold.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_query@multigpu-query-mem-usage:
    - shard-dg2-set2:     [SKIP][350] ([Intel XE#944]) -> [SKIP][351] ([Intel XE#4208])
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-434/igt@xe_query@multigpu-query-mem-usage.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_query@multigpu-query-mem-usage.html

  * igt@xe_render_copy@render-stress-1-copies:
    - shard-dg2-set2:     [SKIP][352] ([Intel XE#4814]) -> [SKIP][353] ([Intel XE#4208])
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729/shard-dg2-434/igt@xe_render_copy@render-stress-1-copies.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/shard-dg2-434/igt@xe_render_copy@render-stress-1-copies.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [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#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
  [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
  [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
  [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
  [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
  [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685
  [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#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [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#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
  [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4488
  [Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
  [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4665
  [Intel XE#4683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
  [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
  [Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5103
  [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
  [Intel XE#5376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5376
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5425
  [Intel XE#5440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5440
  [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
  [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
  [Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
  [Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
  [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
  [Intel XE#5632]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5632
  [Intel XE#5671]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5671
  [Intel XE#5672]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5672
  [Intel XE#5750]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5750
  [Intel XE#5784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5784
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#5841]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5841
  [Intel XE#5890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5890
  [Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575


Build changes
-------------

  * IGT: IGT_8506 -> IGT_8507
  * Linux: xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729 -> xe-pw-153291v3

  IGT_8506: 7d64f83f6d40ca187e9f317007c03db9d8b34ffb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8507: 8507
  xe-3613-18d3cf2c98bae56e1e393a788980d9d26442f729: 18d3cf2c98bae56e1e393a788980d9d26442f729
  xe-pw-153291v3: 153291v3

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153291v3/index.html

[-- Attachment #2: Type: text/html, Size: 115984 bytes --]

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2025-08-26  2:01 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-20 20:16 [PATCH] drm/xe: replace basename() with portable strrchr() Carlos Llamas
2025-08-20 21:15 ` Lucas De Marchi
2025-08-20 23:05   ` Carlos Llamas
2025-08-21 21:00     ` Lucas De Marchi
2025-08-21 21:32       ` Carlos Llamas
2025-08-21 22:00       ` [PATCH v2] drm/xe: switch to local __basename() helper Carlos Llamas
2025-08-23 11:56         ` Lucas De Marchi
2025-08-25 15:49           ` Carlos Llamas
2025-08-25 15:57           ` [PATCH v3] drm/xe: switch to local xbasename() helper Carlos Llamas
2025-08-25 16:01             ` Lucas De Marchi
2025-08-20 21:18 ` [PATCH] drm/xe: replace basename() with portable strrchr() Tiffany Yang
2025-08-21 13:14 ` ✓ CI.KUnit: success for " Patchwork
2025-08-21 13:58 ` ✓ Xe.CI.BAT: " Patchwork
2025-08-21 22:08 ` ✓ CI.KUnit: success for drm/xe: replace basename() with portable strrchr() (rev2) Patchwork
2025-08-21 22:46 ` ✓ Xe.CI.BAT: " Patchwork
2025-08-22 11:15 ` ✓ Xe.CI.Full: success for drm/xe: replace basename() with portable strrchr() Patchwork
2025-08-22 22:12 ` ✗ Xe.CI.Full: failure for drm/xe: replace basename() with portable strrchr() (rev2) Patchwork
2025-08-25 17:29 ` ✓ CI.KUnit: success for drm/xe: replace basename() with portable strrchr() (rev3) Patchwork
2025-08-25 18:18 ` ✓ Xe.CI.BAT: " Patchwork
2025-08-26  2:01 ` ✗ Xe.CI.Full: failure " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).