* [PATCH v2 1/2] drm/xe/guc: distinguish wedged from recoverable cancellation
2026-06-24 19:46 [PATCH v2 0/2] drm/xe/guc: distinguish wedged from recoverable cancellation Sk Anirban
@ 2026-06-24 19:46 ` Sk Anirban
2026-06-30 14:27 ` Matthew Brost
2026-06-24 19:46 ` [PATCH v2 2/2] drm/xe/guc: fix activity stats error message format Sk Anirban
` (6 subsequent siblings)
7 siblings, 1 reply; 10+ messages in thread
From: Sk Anirban @ 2026-06-24 19:46 UTC (permalink / raw)
To: intel-xe
Cc: anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa,
raag.jadav, soham.purkait, mallesh.koujalagi, vinay.belgaumkar,
matthew.brost, michal.wajdeczko, Sk Anirban
The CT layer returns -ECANCELED regardless of whether cancellation
is due to a GT reset or a wedged device. Return -ENOTRECOVERABLE
on wedge so callers don't need xe_device_wedged() checks
to suppress spurious error logs.
Also document the return codes of xe_guc_ct_send() in kernel-doc form.
v2: Fix -ECANCELED description (Matt)
Signed-off-by: Sk Anirban <sk.anirban@intel.com>
---
drivers/gpu/drm/xe/xe_guc_ct.c | 40 +++++++++++++++++++++++++++++++++-
1 file changed, 39 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
index 21e0dad9a481..8ca7d37c79b6 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct.c
+++ b/drivers/gpu/drm/xe/xe_guc_ct.c
@@ -1065,6 +1065,11 @@ static int __guc_ct_send_locked(struct xe_guc_ct *ct, const u32 *action,
xe_gt_assert(gt, g2h_len || !num_g2h);
lockdep_assert_held(&ct->lock);
+ if (xe_device_wedged(ct_to_xe(ct))) {
+ ret = -ENOTRECOVERABLE;
+ goto out;
+ }
+
if (unlikely(ct->ctbs.h2g.info.broken)) {
ret = -EPIPE;
goto out;
@@ -1236,6 +1241,36 @@ static int guc_ct_send(struct xe_guc_ct *ct, const u32 *action, u32 len,
return ret;
}
+/**
+ * xe_guc_ct_send - Send an HXG message to the GuC over CT
+ * @ct: the &xe_guc_ct
+ * @action: dword array with the HXG message (can't be NULL)
+ * @len: length of the HXG message in dwords (can't be 0)
+ * @g2h_len: G2H response space to reserve in dwords, or 0
+ * @num_g2h: number of G2H messages expected, or 0
+ *
+ * Return codes from the non-blocking send helpers are:
+ *
+ * * -ENOTRECOVERABLE: the xe device is wedged. Stop submitting new GuC work; the
+ * request cannot make progress until the device is recovered.
+ * * -EPIPE: the H2G CTB is marked broken. The channel stays unusable until the
+ * CT is restarted, which clears the broken flag.
+ * * -ENODEV: the CT channel is disabled, messages not expected in this state.
+ * Don't retry until it is enabled again.
+ * * -ECANCELED: the CT channel is stopped or a GT recovery is pending; the
+ * message was dropped. Often benign. Cancel-tolerant callers (e.g. TLB
+ * invalidations, GuC submission) rely on the stop/start flow to recover;
+ * others should retry once the CT is re-enabled or the reset/recovery
+ * completes.
+ * * -EDEADLK: no CTB room and the wait for space timed out. The send helpers
+ * have already requested an async GT reset before returning this error.
+ *
+ * -ENOMEM may also be returned if an internal allocation fails; the blocking
+ * xe_guc_ct_send_recv() path retries that allocation. -EBUSY and
+ * -EAGAIN are internal flow-control results handled by the send helpers.
+ *
+ * Return: 0 on success, or a negative error code on failure.
+ */
int xe_guc_ct_send(struct xe_guc_ct *ct, const u32 *action, u32 len,
u32 g2h_len, u32 num_g2h)
{
@@ -1388,7 +1423,7 @@ static int guc_ct_send_recv(struct xe_guc_ct *ct, const u32 *action, u32 len,
if (g2h_fence.fail) {
if (g2h_fence.cancel) {
xe_gt_dbg(gt, "H2G request %#x canceled!\n", action[0]);
- ret = -ECANCELED;
+ ret = xe_device_wedged(ct_to_xe(ct)) ? -ENOTRECOVERABLE : -ECANCELED;
goto unlock;
}
xe_gt_err(gt, "H2G request %#x failed: error %#x hint %#x\n",
@@ -1724,6 +1759,9 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path)
xe_gt_assert(gt, xe_guc_ct_initialized(ct));
lockdep_assert_held(&ct->fast_lock);
+ if (xe_device_wedged(xe))
+ return -ENOTRECOVERABLE;
+
if (ct->state == XE_GUC_CT_STATE_DISABLED)
return -ENODEV;
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* Re: [PATCH v2 1/2] drm/xe/guc: distinguish wedged from recoverable cancellation
2026-06-24 19:46 ` [PATCH v2 1/2] " Sk Anirban
@ 2026-06-30 14:27 ` Matthew Brost
0 siblings, 0 replies; 10+ messages in thread
From: Matthew Brost @ 2026-06-30 14:27 UTC (permalink / raw)
To: Sk Anirban
Cc: intel-xe, anshuman.gupta, badal.nilawar, riana.tauro,
karthik.poosa, raag.jadav, soham.purkait, mallesh.koujalagi,
vinay.belgaumkar, michal.wajdeczko
On Thu, Jun 25, 2026 at 01:16:20AM +0530, Sk Anirban wrote:
> The CT layer returns -ECANCELED regardless of whether cancellation
> is due to a GT reset or a wedged device. Return -ENOTRECOVERABLE
> on wedge so callers don't need xe_device_wedged() checks
> to suppress spurious error logs.
> Also document the return codes of xe_guc_ct_send() in kernel-doc form.
>
> v2: Fix -ECANCELED description (Matt)
>
> Signed-off-by: Sk Anirban <sk.anirban@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
> ---
> drivers/gpu/drm/xe/xe_guc_ct.c | 40 +++++++++++++++++++++++++++++++++-
> 1 file changed, 39 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
> index 21e0dad9a481..8ca7d37c79b6 100644
> --- a/drivers/gpu/drm/xe/xe_guc_ct.c
> +++ b/drivers/gpu/drm/xe/xe_guc_ct.c
> @@ -1065,6 +1065,11 @@ static int __guc_ct_send_locked(struct xe_guc_ct *ct, const u32 *action,
> xe_gt_assert(gt, g2h_len || !num_g2h);
> lockdep_assert_held(&ct->lock);
>
> + if (xe_device_wedged(ct_to_xe(ct))) {
> + ret = -ENOTRECOVERABLE;
> + goto out;
> + }
> +
> if (unlikely(ct->ctbs.h2g.info.broken)) {
> ret = -EPIPE;
> goto out;
> @@ -1236,6 +1241,36 @@ static int guc_ct_send(struct xe_guc_ct *ct, const u32 *action, u32 len,
> return ret;
> }
>
> +/**
> + * xe_guc_ct_send - Send an HXG message to the GuC over CT
> + * @ct: the &xe_guc_ct
> + * @action: dword array with the HXG message (can't be NULL)
> + * @len: length of the HXG message in dwords (can't be 0)
> + * @g2h_len: G2H response space to reserve in dwords, or 0
> + * @num_g2h: number of G2H messages expected, or 0
> + *
> + * Return codes from the non-blocking send helpers are:
> + *
> + * * -ENOTRECOVERABLE: the xe device is wedged. Stop submitting new GuC work; the
> + * request cannot make progress until the device is recovered.
> + * * -EPIPE: the H2G CTB is marked broken. The channel stays unusable until the
> + * CT is restarted, which clears the broken flag.
> + * * -ENODEV: the CT channel is disabled, messages not expected in this state.
> + * Don't retry until it is enabled again.
> + * * -ECANCELED: the CT channel is stopped or a GT recovery is pending; the
> + * message was dropped. Often benign. Cancel-tolerant callers (e.g. TLB
> + * invalidations, GuC submission) rely on the stop/start flow to recover;
> + * others should retry once the CT is re-enabled or the reset/recovery
> + * completes.
> + * * -EDEADLK: no CTB room and the wait for space timed out. The send helpers
> + * have already requested an async GT reset before returning this error.
> + *
> + * -ENOMEM may also be returned if an internal allocation fails; the blocking
> + * xe_guc_ct_send_recv() path retries that allocation. -EBUSY and
> + * -EAGAIN are internal flow-control results handled by the send helpers.
> + *
> + * Return: 0 on success, or a negative error code on failure.
> + */
> int xe_guc_ct_send(struct xe_guc_ct *ct, const u32 *action, u32 len,
> u32 g2h_len, u32 num_g2h)
> {
> @@ -1388,7 +1423,7 @@ static int guc_ct_send_recv(struct xe_guc_ct *ct, const u32 *action, u32 len,
> if (g2h_fence.fail) {
> if (g2h_fence.cancel) {
> xe_gt_dbg(gt, "H2G request %#x canceled!\n", action[0]);
> - ret = -ECANCELED;
> + ret = xe_device_wedged(ct_to_xe(ct)) ? -ENOTRECOVERABLE : -ECANCELED;
> goto unlock;
> }
> xe_gt_err(gt, "H2G request %#x failed: error %#x hint %#x\n",
> @@ -1724,6 +1759,9 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path)
> xe_gt_assert(gt, xe_guc_ct_initialized(ct));
> lockdep_assert_held(&ct->fast_lock);
>
> + if (xe_device_wedged(xe))
> + return -ENOTRECOVERABLE;
> +
> if (ct->state == XE_GUC_CT_STATE_DISABLED)
> return -ENODEV;
>
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2 2/2] drm/xe/guc: fix activity stats error message format
2026-06-24 19:46 [PATCH v2 0/2] drm/xe/guc: distinguish wedged from recoverable cancellation Sk Anirban
2026-06-24 19:46 ` [PATCH v2 1/2] " Sk Anirban
@ 2026-06-24 19:46 ` Sk Anirban
2026-06-24 19:59 ` ✓ CI.KUnit: success for drm/xe/guc: distinguish wedged from recoverable cancellation (rev2) Patchwork
` (5 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Sk Anirban @ 2026-06-24 19:46 UTC (permalink / raw)
To: intel-xe
Cc: anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa,
raag.jadav, soham.purkait, mallesh.koujalagi, vinay.belgaumkar,
matthew.brost, michal.wajdeczko, Sk Anirban
Use ERR_PTR() to print the error code symbolically.
This makes the failure easier to spot from IGT,
e.g. when the device is wedged.
Signed-off-by: Sk Anirban <sk.anirban@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
---
drivers/gpu/drm/xe/xe_guc_engine_activity.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_engine_activity.c b/drivers/gpu/drm/xe/xe_guc_engine_activity.c
index 2b99c1ebdd58..f43ca1c76f75 100644
--- a/drivers/gpu/drm/xe/xe_guc_engine_activity.c
+++ b/drivers/gpu/drm/xe/xe_guc_engine_activity.c
@@ -473,7 +473,7 @@ void xe_guc_engine_activity_enable_stats(struct xe_guc *guc)
ret = enable_engine_activity_stats(guc);
if (ret)
- xe_gt_err(guc_to_gt(guc), "failed to enable activity stats%d\n", ret);
+ xe_gt_err(guc_to_gt(guc), "failed to enable activity stats: %pe\n", ERR_PTR(ret));
else
engine_activity_set_cpu_ts(guc, 0);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* ✓ CI.KUnit: success for drm/xe/guc: distinguish wedged from recoverable cancellation (rev2)
2026-06-24 19:46 [PATCH v2 0/2] drm/xe/guc: distinguish wedged from recoverable cancellation Sk Anirban
2026-06-24 19:46 ` [PATCH v2 1/2] " Sk Anirban
2026-06-24 19:46 ` [PATCH v2 2/2] drm/xe/guc: fix activity stats error message format Sk Anirban
@ 2026-06-24 19:59 ` Patchwork
2026-06-25 0:10 ` ✗ Xe.CI.BAT: failure " Patchwork
` (4 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-06-24 19:59 UTC (permalink / raw)
To: Sk Anirban; +Cc: intel-xe
== Series Details ==
Series: drm/xe/guc: distinguish wedged from recoverable cancellation (rev2)
URL : https://patchwork.freedesktop.org/series/168780/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[19:58:25] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:58:29] 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
[19:59:00] Starting KUnit Kernel (1/1)...
[19:59:00] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:59:01] ================== guc_buf (11 subtests) ===================
[19:59:01] [PASSED] test_smallest
[19:59:01] [PASSED] test_largest
[19:59:01] [PASSED] test_granular
[19:59:01] [PASSED] test_unique
[19:59:01] [PASSED] test_overlap
[19:59:01] [PASSED] test_reusable
[19:59:01] [PASSED] test_too_big
[19:59:01] [PASSED] test_flush
[19:59:01] [PASSED] test_lookup
[19:59:01] [PASSED] test_data
[19:59:01] [PASSED] test_class
[19:59:01] ===================== [PASSED] guc_buf =====================
[19:59:01] =================== guc_dbm (7 subtests) ===================
[19:59:01] [PASSED] test_empty
[19:59:01] [PASSED] test_default
[19:59:01] ======================== test_size ========================
[19:59:01] [PASSED] 4
[19:59:01] [PASSED] 8
[19:59:01] [PASSED] 32
[19:59:01] [PASSED] 256
[19:59:01] ==================== [PASSED] test_size ====================
[19:59:01] ======================= test_reuse ========================
[19:59:01] [PASSED] 4
[19:59:01] [PASSED] 8
[19:59:01] [PASSED] 32
[19:59:01] [PASSED] 256
[19:59:01] =================== [PASSED] test_reuse ====================
[19:59:01] =================== test_range_overlap ====================
[19:59:01] [PASSED] 4
[19:59:01] [PASSED] 8
[19:59:01] [PASSED] 32
[19:59:01] [PASSED] 256
[19:59:01] =============== [PASSED] test_range_overlap ================
[19:59:01] =================== test_range_compact ====================
[19:59:01] [PASSED] 4
[19:59:01] [PASSED] 8
[19:59:01] [PASSED] 32
[19:59:01] [PASSED] 256
[19:59:01] =============== [PASSED] test_range_compact ================
[19:59:01] ==================== test_range_spare =====================
[19:59:01] [PASSED] 4
[19:59:01] [PASSED] 8
[19:59:01] [PASSED] 32
[19:59:01] [PASSED] 256
[19:59:01] ================ [PASSED] test_range_spare =================
[19:59:01] ===================== [PASSED] guc_dbm =====================
[19:59:01] =================== guc_idm (6 subtests) ===================
[19:59:01] [PASSED] bad_init
[19:59:01] [PASSED] no_init
[19:59:01] [PASSED] init_fini
[19:59:01] [PASSED] check_used
[19:59:01] [PASSED] check_quota
[19:59:01] [PASSED] check_all
[19:59:01] ===================== [PASSED] guc_idm =====================
[19:59:01] ================== no_relay (3 subtests) ===================
[19:59:01] [PASSED] xe_drops_guc2pf_if_not_ready
[19:59:01] [PASSED] xe_drops_guc2vf_if_not_ready
[19:59:01] [PASSED] xe_rejects_send_if_not_ready
[19:59:01] ==================== [PASSED] no_relay =====================
[19:59:01] ================== pf_relay (14 subtests) ==================
[19:59:01] [PASSED] pf_rejects_guc2pf_too_short
[19:59:01] [PASSED] pf_rejects_guc2pf_too_long
[19:59:01] [PASSED] pf_rejects_guc2pf_no_payload
[19:59:01] [PASSED] pf_fails_no_payload
[19:59:01] [PASSED] pf_fails_bad_origin
[19:59:01] [PASSED] pf_fails_bad_type
[19:59:01] [PASSED] pf_txn_reports_error
[19:59:01] [PASSED] pf_txn_sends_pf2guc
[19:59:01] [PASSED] pf_sends_pf2guc
[19:59:01] [SKIPPED] pf_loopback_nop
[19:59:01] [SKIPPED] pf_loopback_echo
[19:59:01] [SKIPPED] pf_loopback_fail
[19:59:01] [SKIPPED] pf_loopback_busy
[19:59:01] [SKIPPED] pf_loopback_retry
[19:59:01] ==================== [PASSED] pf_relay =====================
[19:59:01] ================== vf_relay (3 subtests) ===================
[19:59:01] [PASSED] vf_rejects_guc2vf_too_short
[19:59:01] [PASSED] vf_rejects_guc2vf_too_long
[19:59:01] [PASSED] vf_rejects_guc2vf_no_payload
[19:59:01] ==================== [PASSED] vf_relay =====================
[19:59:01] ================ pf_gt_config (9 subtests) =================
[19:59:01] [PASSED] fair_contexts_1vf
[19:59:01] [PASSED] fair_doorbells_1vf
[19:59:01] [PASSED] fair_ggtt_1vf
[19:59:01] ====================== fair_vram_1vf ======================
[19:59:01] [PASSED] 3.50 GiB
[19:59:01] [PASSED] 11.5 GiB
[19:59:01] [PASSED] 15.5 GiB
[19:59:01] [PASSED] 31.5 GiB
[19:59:01] [PASSED] 63.5 GiB
[19:59:01] [PASSED] 1.91 GiB
[19:59:01] ================== [PASSED] fair_vram_1vf ==================
[19:59:01] ================ fair_vram_1vf_admin_only =================
[19:59:01] [PASSED] 3.50 GiB
[19:59:01] [PASSED] 11.5 GiB
[19:59:01] [PASSED] 15.5 GiB
[19:59:01] [PASSED] 31.5 GiB
[19:59:01] [PASSED] 63.5 GiB
[19:59:01] [PASSED] 1.91 GiB
[19:59:01] ============ [PASSED] fair_vram_1vf_admin_only =============
[19:59:01] ====================== fair_contexts ======================
[19:59:01] [PASSED] 1 VF
[19:59:01] [PASSED] 2 VFs
[19:59:01] [PASSED] 3 VFs
[19:59:01] [PASSED] 4 VFs
[19:59:01] [PASSED] 5 VFs
[19:59:01] [PASSED] 6 VFs
[19:59:01] [PASSED] 7 VFs
[19:59:01] [PASSED] 8 VFs
[19:59:01] [PASSED] 9 VFs
[19:59:01] [PASSED] 10 VFs
[19:59:01] [PASSED] 11 VFs
[19:59:01] [PASSED] 12 VFs
[19:59:01] [PASSED] 13 VFs
[19:59:01] [PASSED] 14 VFs
[19:59:01] [PASSED] 15 VFs
[19:59:01] [PASSED] 16 VFs
[19:59:01] [PASSED] 17 VFs
[19:59:01] [PASSED] 18 VFs
[19:59:01] [PASSED] 19 VFs
[19:59:01] [PASSED] 20 VFs
[19:59:01] [PASSED] 21 VFs
[19:59:01] [PASSED] 22 VFs
[19:59:01] [PASSED] 23 VFs
[19:59:01] [PASSED] 24 VFs
[19:59:01] [PASSED] 25 VFs
[19:59:01] [PASSED] 26 VFs
[19:59:01] [PASSED] 27 VFs
[19:59:01] [PASSED] 28 VFs
[19:59:01] [PASSED] 29 VFs
[19:59:01] [PASSED] 30 VFs
[19:59:01] [PASSED] 31 VFs
[19:59:01] [PASSED] 32 VFs
[19:59:01] [PASSED] 33 VFs
[19:59:01] [PASSED] 34 VFs
[19:59:01] [PASSED] 35 VFs
[19:59:01] [PASSED] 36 VFs
[19:59:01] [PASSED] 37 VFs
[19:59:01] [PASSED] 38 VFs
[19:59:01] [PASSED] 39 VFs
[19:59:01] [PASSED] 40 VFs
[19:59:01] [PASSED] 41 VFs
[19:59:01] [PASSED] 42 VFs
[19:59:01] [PASSED] 43 VFs
[19:59:01] [PASSED] 44 VFs
[19:59:01] [PASSED] 45 VFs
[19:59:01] [PASSED] 46 VFs
[19:59:01] [PASSED] 47 VFs
[19:59:01] [PASSED] 48 VFs
[19:59:01] [PASSED] 49 VFs
[19:59:01] [PASSED] 50 VFs
[19:59:01] [PASSED] 51 VFs
[19:59:01] [PASSED] 52 VFs
[19:59:01] [PASSED] 53 VFs
[19:59:01] [PASSED] 54 VFs
[19:59:01] [PASSED] 55 VFs
[19:59:01] [PASSED] 56 VFs
[19:59:01] [PASSED] 57 VFs
[19:59:01] [PASSED] 58 VFs
[19:59:01] [PASSED] 59 VFs
[19:59:01] [PASSED] 60 VFs
[19:59:01] [PASSED] 61 VFs
[19:59:01] [PASSED] 62 VFs
[19:59:01] [PASSED] 63 VFs
[19:59:01] ================== [PASSED] fair_contexts ==================
[19:59:01] ===================== fair_doorbells ======================
[19:59:01] [PASSED] 1 VF
[19:59:01] [PASSED] 2 VFs
[19:59:01] [PASSED] 3 VFs
[19:59:01] [PASSED] 4 VFs
[19:59:01] [PASSED] 5 VFs
[19:59:01] [PASSED] 6 VFs
[19:59:01] [PASSED] 7 VFs
[19:59:01] [PASSED] 8 VFs
[19:59:01] [PASSED] 9 VFs
[19:59:01] [PASSED] 10 VFs
[19:59:01] [PASSED] 11 VFs
[19:59:01] [PASSED] 12 VFs
[19:59:01] [PASSED] 13 VFs
[19:59:01] [PASSED] 14 VFs
[19:59:01] [PASSED] 15 VFs
[19:59:01] [PASSED] 16 VFs
[19:59:01] [PASSED] 17 VFs
[19:59:01] [PASSED] 18 VFs
[19:59:01] [PASSED] 19 VFs
[19:59:01] [PASSED] 20 VFs
[19:59:01] [PASSED] 21 VFs
[19:59:01] [PASSED] 22 VFs
[19:59:01] [PASSED] 23 VFs
[19:59:01] [PASSED] 24 VFs
[19:59:01] [PASSED] 25 VFs
[19:59:01] [PASSED] 26 VFs
[19:59:01] [PASSED] 27 VFs
[19:59:01] [PASSED] 28 VFs
[19:59:01] [PASSED] 29 VFs
[19:59:01] [PASSED] 30 VFs
[19:59:01] [PASSED] 31 VFs
[19:59:01] [PASSED] 32 VFs
[19:59:01] [PASSED] 33 VFs
[19:59:01] [PASSED] 34 VFs
[19:59:01] [PASSED] 35 VFs
[19:59:01] [PASSED] 36 VFs
[19:59:01] [PASSED] 37 VFs
[19:59:01] [PASSED] 38 VFs
[19:59:01] [PASSED] 39 VFs
[19:59:01] [PASSED] 40 VFs
[19:59:01] [PASSED] 41 VFs
[19:59:01] [PASSED] 42 VFs
[19:59:01] [PASSED] 43 VFs
[19:59:01] [PASSED] 44 VFs
[19:59:01] [PASSED] 45 VFs
[19:59:01] [PASSED] 46 VFs
[19:59:01] [PASSED] 47 VFs
[19:59:01] [PASSED] 48 VFs
[19:59:01] [PASSED] 49 VFs
[19:59:01] [PASSED] 50 VFs
[19:59:01] [PASSED] 51 VFs
[19:59:01] [PASSED] 52 VFs
[19:59:01] [PASSED] 53 VFs
[19:59:01] [PASSED] 54 VFs
[19:59:01] [PASSED] 55 VFs
[19:59:01] [PASSED] 56 VFs
[19:59:01] [PASSED] 57 VFs
[19:59:01] [PASSED] 58 VFs
[19:59:01] [PASSED] 59 VFs
[19:59:01] [PASSED] 60 VFs
[19:59:01] [PASSED] 61 VFs
[19:59:01] [PASSED] 62 VFs
[19:59:01] [PASSED] 63 VFs
[19:59:01] ================= [PASSED] fair_doorbells ==================
[19:59:01] ======================== fair_ggtt ========================
[19:59:01] [PASSED] 1 VF
[19:59:01] [PASSED] 2 VFs
[19:59:01] [PASSED] 3 VFs
[19:59:01] [PASSED] 4 VFs
[19:59:01] [PASSED] 5 VFs
[19:59:01] [PASSED] 6 VFs
[19:59:01] [PASSED] 7 VFs
[19:59:01] [PASSED] 8 VFs
[19:59:01] [PASSED] 9 VFs
[19:59:01] [PASSED] 10 VFs
[19:59:01] [PASSED] 11 VFs
[19:59:01] [PASSED] 12 VFs
[19:59:01] [PASSED] 13 VFs
[19:59:01] [PASSED] 14 VFs
[19:59:01] [PASSED] 15 VFs
[19:59:01] [PASSED] 16 VFs
[19:59:01] [PASSED] 17 VFs
[19:59:01] [PASSED] 18 VFs
[19:59:01] [PASSED] 19 VFs
[19:59:01] [PASSED] 20 VFs
[19:59:01] [PASSED] 21 VFs
[19:59:01] [PASSED] 22 VFs
[19:59:01] [PASSED] 23 VFs
[19:59:01] [PASSED] 24 VFs
[19:59:01] [PASSED] 25 VFs
[19:59:01] [PASSED] 26 VFs
[19:59:01] [PASSED] 27 VFs
[19:59:01] [PASSED] 28 VFs
[19:59:01] [PASSED] 29 VFs
[19:59:01] [PASSED] 30 VFs
[19:59:01] [PASSED] 31 VFs
[19:59:01] [PASSED] 32 VFs
[19:59:01] [PASSED] 33 VFs
[19:59:01] [PASSED] 34 VFs
[19:59:01] [PASSED] 35 VFs
[19:59:01] [PASSED] 36 VFs
[19:59:01] [PASSED] 37 VFs
[19:59:01] [PASSED] 38 VFs
[19:59:01] [PASSED] 39 VFs
[19:59:01] [PASSED] 40 VFs
[19:59:01] [PASSED] 41 VFs
[19:59:01] [PASSED] 42 VFs
[19:59:01] [PASSED] 43 VFs
[19:59:01] [PASSED] 44 VFs
[19:59:01] [PASSED] 45 VFs
[19:59:01] [PASSED] 46 VFs
[19:59:01] [PASSED] 47 VFs
[19:59:01] [PASSED] 48 VFs
[19:59:01] [PASSED] 49 VFs
[19:59:01] [PASSED] 50 VFs
[19:59:01] [PASSED] 51 VFs
[19:59:01] [PASSED] 52 VFs
[19:59:01] [PASSED] 53 VFs
[19:59:01] [PASSED] 54 VFs
[19:59:01] [PASSED] 55 VFs
[19:59:01] [PASSED] 56 VFs
[19:59:01] [PASSED] 57 VFs
[19:59:01] [PASSED] 58 VFs
[19:59:01] [PASSED] 59 VFs
[19:59:01] [PASSED] 60 VFs
[19:59:01] [PASSED] 61 VFs
[19:59:01] [PASSED] 62 VFs
[19:59:01] [PASSED] 63 VFs
[19:59:01] ==================== [PASSED] fair_ggtt ====================
[19:59:01] ======================== fair_vram ========================
[19:59:01] [PASSED] 1 VF
[19:59:01] [PASSED] 2 VFs
[19:59:01] [PASSED] 3 VFs
[19:59:01] [PASSED] 4 VFs
[19:59:01] [PASSED] 5 VFs
[19:59:01] [PASSED] 6 VFs
[19:59:01] [PASSED] 7 VFs
[19:59:01] [PASSED] 8 VFs
[19:59:01] [PASSED] 9 VFs
[19:59:01] [PASSED] 10 VFs
[19:59:01] [PASSED] 11 VFs
[19:59:01] [PASSED] 12 VFs
[19:59:01] [PASSED] 13 VFs
[19:59:01] [PASSED] 14 VFs
[19:59:01] [PASSED] 15 VFs
[19:59:01] [PASSED] 16 VFs
[19:59:01] [PASSED] 17 VFs
[19:59:01] [PASSED] 18 VFs
[19:59:01] [PASSED] 19 VFs
[19:59:01] [PASSED] 20 VFs
[19:59:01] [PASSED] 21 VFs
[19:59:01] [PASSED] 22 VFs
[19:59:01] [PASSED] 23 VFs
[19:59:01] [PASSED] 24 VFs
[19:59:01] [PASSED] 25 VFs
[19:59:01] [PASSED] 26 VFs
[19:59:01] [PASSED] 27 VFs
[19:59:01] [PASSED] 28 VFs
[19:59:01] [PASSED] 29 VFs
[19:59:01] [PASSED] 30 VFs
[19:59:01] [PASSED] 31 VFs
[19:59:01] [PASSED] 32 VFs
[19:59:01] [PASSED] 33 VFs
[19:59:01] [PASSED] 34 VFs
[19:59:01] [PASSED] 35 VFs
[19:59:01] [PASSED] 36 VFs
[19:59:01] [PASSED] 37 VFs
[19:59:01] [PASSED] 38 VFs
[19:59:01] [PASSED] 39 VFs
[19:59:01] [PASSED] 40 VFs
[19:59:01] [PASSED] 41 VFs
[19:59:01] [PASSED] 42 VFs
[19:59:01] [PASSED] 43 VFs
[19:59:01] [PASSED] 44 VFs
[19:59:01] [PASSED] 45 VFs
[19:59:01] [PASSED] 46 VFs
[19:59:01] [PASSED] 47 VFs
[19:59:01] [PASSED] 48 VFs
[19:59:01] [PASSED] 49 VFs
[19:59:01] [PASSED] 50 VFs
[19:59:01] [PASSED] 51 VFs
[19:59:01] [PASSED] 52 VFs
[19:59:01] [PASSED] 53 VFs
[19:59:01] [PASSED] 54 VFs
[19:59:01] [PASSED] 55 VFs
[19:59:01] [PASSED] 56 VFs
[19:59:01] [PASSED] 57 VFs
[19:59:01] [PASSED] 58 VFs
[19:59:01] [PASSED] 59 VFs
[19:59:01] [PASSED] 60 VFs
[19:59:01] [PASSED] 61 VFs
[19:59:01] [PASSED] 62 VFs
[19:59:01] [PASSED] 63 VFs
[19:59:01] ==================== [PASSED] fair_vram ====================
[19:59:01] ================== [PASSED] pf_gt_config ===================
[19:59:01] ===================== lmtt (1 subtest) =====================
[19:59:01] ======================== test_ops =========================
[19:59:01] [PASSED] 2-level
[19:59:01] [PASSED] multi-level
[19:59:01] ==================== [PASSED] test_ops =====================
[19:59:01] ====================== [PASSED] lmtt =======================
[19:59:01] ================= pf_service (11 subtests) =================
[19:59:01] [PASSED] pf_negotiate_any
[19:59:01] [PASSED] pf_negotiate_base_match
[19:59:01] [PASSED] pf_negotiate_base_newer
[19:59:01] [PASSED] pf_negotiate_base_next
[19:59:01] [SKIPPED] pf_negotiate_base_older
[19:59:01] [PASSED] pf_negotiate_base_prev
[19:59:01] [PASSED] pf_negotiate_latest_match
[19:59:01] [PASSED] pf_negotiate_latest_newer
[19:59:01] [PASSED] pf_negotiate_latest_next
[19:59:01] [SKIPPED] pf_negotiate_latest_older
[19:59:01] [SKIPPED] pf_negotiate_latest_prev
[19:59:01] =================== [PASSED] pf_service ====================
[19:59:01] ================= xe_guc_g2g (2 subtests) ==================
[19:59:01] ============== xe_live_guc_g2g_kunit_default ==============
[19:59:01] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[19:59:01] ============== xe_live_guc_g2g_kunit_allmem ===============
[19:59:01] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[19:59:01] =================== [SKIPPED] xe_guc_g2g ===================
[19:59:01] =================== xe_mocs (2 subtests) ===================
[19:59:01] ================ xe_live_mocs_kernel_kunit ================
[19:59:01] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[19:59:01] ================ xe_live_mocs_reset_kunit =================
[19:59:01] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[19:59:01] ==================== [SKIPPED] xe_mocs =====================
[19:59:01] ================= xe_migrate (2 subtests) ==================
[19:59:01] ================= xe_migrate_sanity_kunit =================
[19:59:01] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[19:59:01] ================== xe_validate_ccs_kunit ==================
[19:59:01] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[19:59:01] =================== [SKIPPED] xe_migrate ===================
[19:59:01] ================== xe_dma_buf (1 subtest) ==================
[19:59:01] ==================== xe_dma_buf_kunit =====================
[19:59:01] ================ [SKIPPED] xe_dma_buf_kunit ================
[19:59:01] =================== [SKIPPED] xe_dma_buf ===================
[19:59:01] ================= xe_bo_shrink (1 subtest) =================
[19:59:01] =================== xe_bo_shrink_kunit ====================
[19:59:01] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[19:59:01] ================== [SKIPPED] xe_bo_shrink ==================
[19:59:01] ==================== xe_bo (2 subtests) ====================
[19:59:01] ================== xe_ccs_migrate_kunit ===================
[19:59:01] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[19:59:01] ==================== xe_bo_evict_kunit ====================
[19:59:01] =============== [SKIPPED] xe_bo_evict_kunit ================
[19:59:01] ===================== [SKIPPED] xe_bo ======================
[19:59:01] ==================== args (13 subtests) ====================
[19:59:01] [PASSED] count_args_test
[19:59:01] [PASSED] call_args_example
[19:59:01] [PASSED] call_args_test
[19:59:01] [PASSED] drop_first_arg_example
[19:59:01] [PASSED] drop_first_arg_test
[19:59:01] [PASSED] first_arg_example
[19:59:01] [PASSED] first_arg_test
[19:59:01] [PASSED] last_arg_example
[19:59:01] [PASSED] last_arg_test
[19:59:01] [PASSED] pick_arg_example
[19:59:01] [PASSED] if_args_example
[19:59:01] [PASSED] if_args_test
[19:59:01] [PASSED] sep_comma_example
[19:59:01] ====================== [PASSED] args =======================
[19:59:01] =================== xe_pci (3 subtests) ====================
[19:59:01] ==================== check_graphics_ip ====================
[19:59:01] [PASSED] 12.00 Xe_LP
[19:59:01] [PASSED] 12.10 Xe_LP+
[19:59:01] [PASSED] 12.55 Xe_HPG
[19:59:01] [PASSED] 12.60 Xe_HPC
[19:59:01] [PASSED] 12.70 Xe_LPG
[19:59:01] [PASSED] 12.71 Xe_LPG
[19:59:01] [PASSED] 12.74 Xe_LPG+
[19:59:01] [PASSED] 20.01 Xe2_HPG
[19:59:01] [PASSED] 20.02 Xe2_HPG
[19:59:01] [PASSED] 20.04 Xe2_LPG
[19:59:01] [PASSED] 30.00 Xe3_LPG
[19:59:01] [PASSED] 30.01 Xe3_LPG
[19:59:01] [PASSED] 30.03 Xe3_LPG
[19:59:01] [PASSED] 30.04 Xe3_LPG
[19:59:01] [PASSED] 30.05 Xe3_LPG
[19:59:01] [PASSED] 35.10 Xe3p_LPG
[19:59:01] [PASSED] 35.11 Xe3p_XPC
[19:59:01] ================ [PASSED] check_graphics_ip ================
[19:59:01] ===================== check_media_ip ======================
[19:59:01] [PASSED] 12.00 Xe_M
[19:59:01] [PASSED] 12.55 Xe_HPM
[19:59:01] [PASSED] 13.00 Xe_LPM+
[19:59:01] [PASSED] 13.01 Xe2_HPM
[19:59:01] [PASSED] 20.00 Xe2_LPM
[19:59:01] [PASSED] 30.00 Xe3_LPM
[19:59:01] [PASSED] 30.02 Xe3_LPM
[19:59:01] [PASSED] 35.00 Xe3p_LPM
[19:59:01] [PASSED] 35.03 Xe3p_HPM
[19:59:01] ================= [PASSED] check_media_ip ==================
[19:59:01] =================== check_platform_desc ===================
[19:59:01] [PASSED] 0x9A60 (TIGERLAKE)
[19:59:01] [PASSED] 0x9A68 (TIGERLAKE)
[19:59:01] [PASSED] 0x9A70 (TIGERLAKE)
[19:59:01] [PASSED] 0x9A40 (TIGERLAKE)
[19:59:01] [PASSED] 0x9A49 (TIGERLAKE)
[19:59:01] [PASSED] 0x9A59 (TIGERLAKE)
[19:59:01] [PASSED] 0x9A78 (TIGERLAKE)
[19:59:01] [PASSED] 0x9AC0 (TIGERLAKE)
[19:59:01] [PASSED] 0x9AC9 (TIGERLAKE)
[19:59:01] [PASSED] 0x9AD9 (TIGERLAKE)
[19:59:01] [PASSED] 0x9AF8 (TIGERLAKE)
[19:59:01] [PASSED] 0x4C80 (ROCKETLAKE)
[19:59:01] [PASSED] 0x4C8A (ROCKETLAKE)
[19:59:01] [PASSED] 0x4C8B (ROCKETLAKE)
[19:59:01] [PASSED] 0x4C8C (ROCKETLAKE)
[19:59:01] [PASSED] 0x4C90 (ROCKETLAKE)
[19:59:01] [PASSED] 0x4C9A (ROCKETLAKE)
[19:59:01] [PASSED] 0x4680 (ALDERLAKE_S)
[19:59:01] [PASSED] 0x4682 (ALDERLAKE_S)
[19:59:01] [PASSED] 0x4688 (ALDERLAKE_S)
[19:59:01] [PASSED] 0x468A (ALDERLAKE_S)
[19:59:01] [PASSED] 0x468B (ALDERLAKE_S)
[19:59:01] [PASSED] 0x4690 (ALDERLAKE_S)
[19:59:01] [PASSED] 0x4692 (ALDERLAKE_S)
[19:59:01] [PASSED] 0x4693 (ALDERLAKE_S)
[19:59:01] [PASSED] 0x46A0 (ALDERLAKE_P)
[19:59:01] [PASSED] 0x46A1 (ALDERLAKE_P)
[19:59:01] [PASSED] 0x46A2 (ALDERLAKE_P)
[19:59:01] [PASSED] 0x46A3 (ALDERLAKE_P)
[19:59:01] [PASSED] 0x46A6 (ALDERLAKE_P)
[19:59:01] [PASSED] 0x46A8 (ALDERLAKE_P)
[19:59:01] [PASSED] 0x46AA (ALDERLAKE_P)
[19:59:01] [PASSED] 0x462A (ALDERLAKE_P)
[19:59:01] [PASSED] 0x4626 (ALDERLAKE_P)
[19:59:01] [PASSED] 0x4628 (ALDERLAKE_P)
[19:59:01] [PASSED] 0x46B0 (ALDERLAKE_P)
[19:59:01] [PASSED] 0x46B1 (ALDERLAKE_P)
[19:59:01] [PASSED] 0x46B2 (ALDERLAKE_P)
[19:59:01] [PASSED] 0x46B3 (ALDERLAKE_P)
[19:59:01] [PASSED] 0x46C0 (ALDERLAKE_P)
[19:59:01] [PASSED] 0x46C1 (ALDERLAKE_P)
[19:59:01] [PASSED] 0x46C2 (ALDERLAKE_P)
[19:59:01] [PASSED] 0x46C3 (ALDERLAKE_P)
[19:59:01] [PASSED] 0x46D0 (ALDERLAKE_N)
[19:59:01] [PASSED] 0x46D1 (ALDERLAKE_N)
[19:59:01] [PASSED] 0x46D2 (ALDERLAKE_N)
[19:59:01] [PASSED] 0x46D3 (ALDERLAKE_N)
[19:59:01] [PASSED] 0x46D4 (ALDERLAKE_N)
[19:59:01] [PASSED] 0xA721 (ALDERLAKE_P)
[19:59:01] [PASSED] 0xA7A1 (ALDERLAKE_P)
[19:59:01] [PASSED] 0xA7A9 (ALDERLAKE_P)
[19:59:01] [PASSED] 0xA7AC (ALDERLAKE_P)
[19:59:01] [PASSED] 0xA7AD (ALDERLAKE_P)
[19:59:01] [PASSED] 0xA720 (ALDERLAKE_P)
[19:59:01] [PASSED] 0xA7A0 (ALDERLAKE_P)
[19:59:01] [PASSED] 0xA7A8 (ALDERLAKE_P)
[19:59:01] [PASSED] 0xA7AA (ALDERLAKE_P)
[19:59:01] [PASSED] 0xA7AB (ALDERLAKE_P)
[19:59:01] [PASSED] 0xA780 (ALDERLAKE_S)
[19:59:01] [PASSED] 0xA781 (ALDERLAKE_S)
[19:59:01] [PASSED] 0xA782 (ALDERLAKE_S)
[19:59:01] [PASSED] 0xA783 (ALDERLAKE_S)
[19:59:01] [PASSED] 0xA788 (ALDERLAKE_S)
[19:59:01] [PASSED] 0xA789 (ALDERLAKE_S)
[19:59:01] [PASSED] 0xA78A (ALDERLAKE_S)
[19:59:01] [PASSED] 0xA78B (ALDERLAKE_S)
[19:59:01] [PASSED] 0x4905 (DG1)
[19:59:01] [PASSED] 0x4906 (DG1)
[19:59:01] [PASSED] 0x4907 (DG1)
[19:59:01] [PASSED] 0x4908 (DG1)
[19:59:01] [PASSED] 0x4909 (DG1)
[19:59:01] [PASSED] 0x56C0 (DG2)
[19:59:01] [PASSED] 0x56C2 (DG2)
[19:59:01] [PASSED] 0x56C1 (DG2)
[19:59:01] [PASSED] 0x7D51 (METEORLAKE)
[19:59:01] [PASSED] 0x7DD1 (METEORLAKE)
[19:59:01] [PASSED] 0x7D41 (METEORLAKE)
[19:59:01] [PASSED] 0x7D67 (METEORLAKE)
[19:59:01] [PASSED] 0xB640 (METEORLAKE)
[19:59:01] [PASSED] 0x56A0 (DG2)
[19:59:01] [PASSED] 0x56A1 (DG2)
[19:59:01] [PASSED] 0x56A2 (DG2)
[19:59:01] [PASSED] 0x56BE (DG2)
[19:59:01] [PASSED] 0x56BF (DG2)
[19:59:01] [PASSED] 0x5690 (DG2)
[19:59:01] [PASSED] 0x5691 (DG2)
[19:59:01] [PASSED] 0x5692 (DG2)
[19:59:01] [PASSED] 0x56A5 (DG2)
[19:59:01] [PASSED] 0x56A6 (DG2)
[19:59:01] [PASSED] 0x56B0 (DG2)
[19:59:01] [PASSED] 0x56B1 (DG2)
[19:59:01] [PASSED] 0x56BA (DG2)
[19:59:01] [PASSED] 0x56BB (DG2)
[19:59:01] [PASSED] 0x56BC (DG2)
[19:59:01] [PASSED] 0x56BD (DG2)
[19:59:01] [PASSED] 0x5693 (DG2)
[19:59:01] [PASSED] 0x5694 (DG2)
[19:59:01] [PASSED] 0x5695 (DG2)
[19:59:01] [PASSED] 0x56A3 (DG2)
[19:59:01] [PASSED] 0x56A4 (DG2)
[19:59:01] [PASSED] 0x56B2 (DG2)
[19:59:01] [PASSED] 0x56B3 (DG2)
[19:59:01] [PASSED] 0x5696 (DG2)
[19:59:01] [PASSED] 0x5697 (DG2)
[19:59:01] [PASSED] 0xB69 (PVC)
[19:59:01] [PASSED] 0xB6E (PVC)
[19:59:01] [PASSED] 0xBD4 (PVC)
[19:59:01] [PASSED] 0xBD5 (PVC)
[19:59:01] [PASSED] 0xBD6 (PVC)
[19:59:01] [PASSED] 0xBD7 (PVC)
[19:59:01] [PASSED] 0xBD8 (PVC)
[19:59:01] [PASSED] 0xBD9 (PVC)
[19:59:01] [PASSED] 0xBDA (PVC)
[19:59:01] [PASSED] 0xBDB (PVC)
[19:59:01] [PASSED] 0xBE0 (PVC)
[19:59:01] [PASSED] 0xBE1 (PVC)
[19:59:01] [PASSED] 0xBE5 (PVC)
[19:59:01] [PASSED] 0x7D40 (METEORLAKE)
[19:59:01] [PASSED] 0x7D45 (METEORLAKE)
[19:59:01] [PASSED] 0x7D55 (METEORLAKE)
[19:59:01] [PASSED] 0x7D60 (METEORLAKE)
[19:59:01] [PASSED] 0x7DD5 (METEORLAKE)
[19:59:01] [PASSED] 0x6420 (LUNARLAKE)
[19:59:01] [PASSED] 0x64A0 (LUNARLAKE)
[19:59:01] [PASSED] 0x64B0 (LUNARLAKE)
[19:59:01] [PASSED] 0xE202 (BATTLEMAGE)
[19:59:01] [PASSED] 0xE209 (BATTLEMAGE)
[19:59:01] [PASSED] 0xE20B (BATTLEMAGE)
[19:59:01] [PASSED] 0xE20C (BATTLEMAGE)
[19:59:01] [PASSED] 0xE20D (BATTLEMAGE)
[19:59:01] [PASSED] 0xE210 (BATTLEMAGE)
[19:59:01] [PASSED] 0xE211 (BATTLEMAGE)
[19:59:01] [PASSED] 0xE212 (BATTLEMAGE)
[19:59:01] [PASSED] 0xE216 (BATTLEMAGE)
[19:59:01] [PASSED] 0xE220 (BATTLEMAGE)
[19:59:01] [PASSED] 0xE221 (BATTLEMAGE)
[19:59:01] [PASSED] 0xE222 (BATTLEMAGE)
[19:59:01] [PASSED] 0xE223 (BATTLEMAGE)
[19:59:01] [PASSED] 0xB080 (PANTHERLAKE)
[19:59:01] [PASSED] 0xB081 (PANTHERLAKE)
[19:59:01] [PASSED] 0xB082 (PANTHERLAKE)
[19:59:01] [PASSED] 0xB083 (PANTHERLAKE)
[19:59:01] [PASSED] 0xB084 (PANTHERLAKE)
[19:59:01] [PASSED] 0xB085 (PANTHERLAKE)
[19:59:01] [PASSED] 0xB086 (PANTHERLAKE)
[19:59:01] [PASSED] 0xB087 (PANTHERLAKE)
[19:59:01] [PASSED] 0xB08F (PANTHERLAKE)
[19:59:01] [PASSED] 0xB090 (PANTHERLAKE)
[19:59:01] [PASSED] 0xB0A0 (PANTHERLAKE)
[19:59:01] [PASSED] 0xB0B0 (PANTHERLAKE)
[19:59:01] [PASSED] 0xFD80 (PANTHERLAKE)
[19:59:01] [PASSED] 0xFD81 (PANTHERLAKE)
[19:59:01] [PASSED] 0xD740 (NOVALAKE_S)
[19:59:01] [PASSED] 0xD741 (NOVALAKE_S)
[19:59:01] [PASSED] 0xD742 (NOVALAKE_S)
[19:59:01] [PASSED] 0xD743 (NOVALAKE_S)
[19:59:01] [PASSED] 0xD745 (NOVALAKE_S)
[19:59:01] [PASSED] 0xD74A (NOVALAKE_S)
[19:59:01] [PASSED] 0xD74B (NOVALAKE_S)
[19:59:01] [PASSED] 0x674C (CRESCENTISLAND)
[19:59:01] [PASSED] 0x674D (CRESCENTISLAND)
[19:59:01] [PASSED] 0x674E (CRESCENTISLAND)
[19:59:01] [PASSED] 0x674F (CRESCENTISLAND)
[19:59:01] [PASSED] 0x6750 (CRESCENTISLAND)
[19:59:01] [PASSED] 0xD750 (NOVALAKE_P)
[19:59:01] [PASSED] 0xD751 (NOVALAKE_P)
[19:59:01] [PASSED] 0xD752 (NOVALAKE_P)
[19:59:01] [PASSED] 0xD753 (NOVALAKE_P)
[19:59:01] [PASSED] 0xD754 (NOVALAKE_P)
[19:59:01] [PASSED] 0xD755 (NOVALAKE_P)
[19:59:01] [PASSED] 0xD756 (NOVALAKE_P)
[19:59:01] [PASSED] 0xD757 (NOVALAKE_P)
[19:59:01] [PASSED] 0xD75F (NOVALAKE_P)
[19:59:01] =============== [PASSED] check_platform_desc ===============
[19:59:01] ===================== [PASSED] xe_pci ======================
[19:59:01] ============= xe_rtp_tables_test (4 subtests) ==============
[19:59:01] ================== xe_rtp_table_gt_test ===================
[19:59:01] [PASSED] gt_was/14011060649
[19:59:01] [PASSED] gt_was/14011059788
[19:59:01] [PASSED] gt_was/14015795083
[19:59:01] [PASSED] gt_was/16021867713
[19:59:01] [PASSED] gt_was/14019449301
[19:59:01] [PASSED] gt_was/16028005424
[19:59:01] [PASSED] gt_was/14026578760
[19:59:01] [PASSED] gt_was/1409420604
[19:59:01] [PASSED] gt_was/1408615072
[19:59:01] [PASSED] gt_was/22010523718
[19:59:01] [PASSED] gt_was/14011006942
[19:59:01] [PASSED] gt_was/14014830051
[19:59:01] [PASSED] gt_was/18018781329
[19:59:01] [PASSED] gt_was/1509235366
[19:59:01] [PASSED] gt_was/18018781329
[19:59:01] [PASSED] gt_was/16016694945
[19:59:01] [PASSED] gt_was/14018575942
[19:59:01] [PASSED] gt_was/22016670082
[19:59:01] [PASSED] gt_was/22016670082
[19:59:01] [PASSED] gt_was/14017421178
[19:59:01] [PASSED] gt_was/16025250150
[19:59:01] [PASSED] gt_was/14021871409
[19:59:01] [PASSED] gt_was/16021865536
[19:59:01] [PASSED] gt_was/14021486841
[19:59:01] [PASSED] gt_was/14025160223
[19:59:01] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[19:59:01] [PASSED] gt_was/14025635424
[19:59:01] [PASSED] gt_was/16028005424
[19:59:01] ============== [PASSED] xe_rtp_table_gt_test ===============
[19:59:01] ================== xe_rtp_table_gt_test ===================
[19:59:01] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[19:59:01] [PASSED] gt_tunings/Tuning: 32B Access Enable
[19:59:01] [PASSED] gt_tunings/Tuning: L3 cache
[19:59:01] [PASSED] gt_tunings/Tuning: L3 cache - media
[19:59:01] [PASSED] gt_tunings/Tuning: Compression Overfetch
[19:59:01] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[19:59:01] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[19:59:01] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[19:59:01] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[19:59:01] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[19:59:01] [PASSED] gt_tunings/Tuning: Stateless compression control
[19:59:01] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[19:59:01] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[19:59:01] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[19:59:01] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[19:59:01] ============== [PASSED] xe_rtp_table_gt_test ===============
[19:59:01] ================== xe_rtp_table_oob_test ==================
[19:59:01] [PASSED] oob_was/1607983814
[19:59:01] [PASSED] oob_was/16010904313
[19:59:01] [PASSED] oob_was/18022495364
[19:59:01] [PASSED] oob_was/22012773006
[19:59:01] [PASSED] oob_was/14014475959
[19:59:01] [PASSED] oob_was/22011391025
[19:59:01] [PASSED] oob_was/22012727170
[19:59:01] [PASSED] oob_was/22012727685
[19:59:01] [PASSED] oob_was/22016596838
[19:59:01] [PASSED] oob_was/18020744125
[19:59:01] [PASSED] oob_was/1409600907
[19:59:01] [PASSED] oob_was/22014953428
[19:59:01] [PASSED] oob_was/16017236439
[19:59:01] [PASSED] oob_was/14019821291
[19:59:01] [PASSED] oob_was/14015076503
[19:59:01] [PASSED] oob_was/14018913170
[19:59:01] [PASSED] oob_was/14018094691
[19:59:01] [PASSED] oob_was/18024947630
[19:59:01] [PASSED] oob_was/16022287689
[19:59:01] [PASSED] oob_was/13011645652
[19:59:01] [PASSED] oob_was/14022293748
[19:59:01] [PASSED] oob_was/22019794406
[19:59:01] [PASSED] oob_was/22019338487
[19:59:01] [PASSED] oob_was/16023588340
[19:59:01] [PASSED] oob_was/14019789679
[19:59:01] [PASSED] oob_was/14022866841
[19:59:01] [PASSED] oob_was/16021333562
[19:59:01] [PASSED] oob_was/14016712196
[19:59:01] [PASSED] oob_was/14015568240
[19:59:01] [PASSED] oob_was/18013179988
[19:59:01] [PASSED] oob_was/1508761755
[19:59:01] [PASSED] oob_was/16023105232
[19:59:01] [PASSED] oob_was/16026508708
[19:59:01] [PASSED] oob_was/14020001231
[19:59:01] [PASSED] oob_was/16023683509
[19:59:01] [PASSED] oob_was/14025515070
[19:59:01] [PASSED] oob_was/15015404425_disable
[19:59:01] [PASSED] oob_was/16026007364
[19:59:01] [PASSED] oob_was/14020316580
[19:59:01] [PASSED] oob_was/14025883347
[19:59:01] [PASSED] oob_was/16029380221
[19:59:01] ============== [PASSED] xe_rtp_table_oob_test ==============
[19:59:01] ================ xe_rtp_table_dev_oob_test ================
[19:59:01] [PASSED] device_oob_was/22010954014
[19:59:01] [PASSED] device_oob_was/15015404425
[19:59:01] [PASSED] device_oob_was/22019338487_display
[19:59:01] [PASSED] device_oob_was/14022085890
[19:59:01] [PASSED] device_oob_was/14026539277
[19:59:01] [PASSED] device_oob_was/14026633728
[19:59:01] [PASSED] device_oob_was/14026746987
[19:59:01] [PASSED] device_oob_was/14026779378
[19:59:01] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[19:59:01] =============== [PASSED] xe_rtp_tables_test ================
[19:59:01] =================== xe_rtp (3 subtests) ====================
[19:59:01] =================== xe_rtp_rules_tests ====================
[19:59:01] [PASSED] no
[19:59:01] [PASSED] yes
[19:59:01] [PASSED] no-and-no
[19:59:01] [PASSED] no-and-yes
[19:59:01] [PASSED] yes-and-no
[19:59:01] [PASSED] yes-and-yes
[19:59:01] [PASSED] no-or-no
[19:59:01] [PASSED] no-or-yes
[19:59:01] [PASSED] yes-or-no
[19:59:01] [PASSED] yes-or-yes
[19:59:01] [PASSED] no-yes-or-yes-no
[19:59:01] [PASSED] no-yes-or-yes-yes
[19:59:01] [PASSED] yes-yes-or-no-yes
[19:59:01] [PASSED] yes-yes-or-yes-yes
[19:59:01] [PASSED] no-no-or-yes-or-no
[19:59:01] [PASSED] or
[19:59:01] [PASSED] or-yes
[19:59:01] [PASSED] or-no
[19:59:01] [PASSED] yes-or
[19:59:01] [PASSED] no-or
[19:59:01] [PASSED] no-or-or-yes
[19:59:01] [PASSED] yes-or-or-no
[19:59:01] [PASSED] no-or-or-no
[19:59:01] [PASSED] missing-context-engine-class
[19:59:01] [PASSED] missing-context-engine-class-or-yes
[19:59:01] [PASSED] missing-context-engine-class-or-or-yes
[19:59:01] =============== [PASSED] xe_rtp_rules_tests ================
[19:59:01] =============== xe_rtp_process_to_sr_tests ================
[19:59:01] [PASSED] coalesce-same-reg
[19:59:01] [PASSED] coalesce-same-reg-literal-and-func
[19:59:01] [PASSED] no-match-no-add
[19:59:01] [PASSED] two-regs-two-entries
[19:59:01] [PASSED] clr-one-set-other
[19:59:01] [PASSED] set-field
[19:59:01] [PASSED] conflict-duplicate
[19:59:01] [PASSED] conflict-not-disjoint
[19:59:01] [PASSED] conflict-not-disjoint-literal-and-func
[19:59:01] [PASSED] conflict-reg-type
[19:59:01] [PASSED] bad-mcr-reg-forced-to-regular
[19:59:01] [PASSED] bad-regular-reg-forced-to-mcr
[19:59:01] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[19:59:01] ================== xe_rtp_process_tests ===================
[19:59:01] [PASSED] active1
[19:59:01] [PASSED] active2
[19:59:01] [PASSED] active-inactive
[19:59:01] [PASSED] inactive-active
[19:59:01] [PASSED] inactive-active-inactive
[19:59:01] [PASSED] inactive-inactive-inactive
[19:59:01] ============== [PASSED] xe_rtp_process_tests ===============
[19:59:01] ===================== [PASSED] xe_rtp ======================
[19:59:01] ==================== xe_wa (1 subtest) =====================
[19:59:01] ======================== xe_wa_gt =========================
[19:59:01] [PASSED] TIGERLAKE B0
[19:59:01] [PASSED] DG1 A0
[19:59:01] [PASSED] DG1 B0
[19:59:01] [PASSED] ALDERLAKE_S A0
[19:59:01] [PASSED] ALDERLAKE_S B0
[19:59:01] [PASSED] ALDERLAKE_S C0
[19:59:01] [PASSED] ALDERLAKE_S D0
[19:59:01] [PASSED] ALDERLAKE_P A0
[19:59:01] [PASSED] ALDERLAKE_P B0
[19:59:01] [PASSED] ALDERLAKE_P C0
[19:59:01] [PASSED] ALDERLAKE_S RPLS D0
[19:59:01] [PASSED] ALDERLAKE_P RPLU E0
[19:59:01] [PASSED] DG2 G10 C0
[19:59:01] [PASSED] DG2 G11 B1
[19:59:01] [PASSED] DG2 G12 A1
[19:59:01] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[19:59:01] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[19:59:01] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[19:59:01] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[19:59:01] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[19:59:01] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[19:59:01] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[19:59:01] ==================== [PASSED] xe_wa_gt =====================
[19:59:01] ====================== [PASSED] xe_wa ======================
[19:59:01] ============================================================
[19:59:01] Testing complete. Ran 719 tests: passed: 701, skipped: 18
[19:59:01] Elapsed time: 36.330s total, 4.316s configuring, 31.347s building, 0.647s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[19:59:01] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:59:03] 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
[19:59:27] Starting KUnit Kernel (1/1)...
[19:59:27] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:59:27] ============ drm_test_pick_cmdline (2 subtests) ============
[19:59:27] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[19:59:27] =============== drm_test_pick_cmdline_named ===============
[19:59:27] [PASSED] NTSC
[19:59:27] [PASSED] NTSC-J
[19:59:27] [PASSED] PAL
[19:59:27] [PASSED] PAL-M
[19:59:27] =========== [PASSED] drm_test_pick_cmdline_named ===========
[19:59:27] ============== [PASSED] drm_test_pick_cmdline ==============
[19:59:27] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[19:59:27] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[19:59:27] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[19:59:27] =========== drm_validate_clone_mode (2 subtests) ===========
[19:59:27] ============== drm_test_check_in_clone_mode ===============
[19:59:27] [PASSED] in_clone_mode
[19:59:27] [PASSED] not_in_clone_mode
[19:59:27] ========== [PASSED] drm_test_check_in_clone_mode ===========
[19:59:27] =============== drm_test_check_valid_clones ===============
[19:59:27] [PASSED] not_in_clone_mode
[19:59:27] [PASSED] valid_clone
[19:59:27] [PASSED] invalid_clone
[19:59:27] =========== [PASSED] drm_test_check_valid_clones ===========
[19:59:27] ============= [PASSED] drm_validate_clone_mode =============
[19:59:27] ============= drm_validate_modeset (1 subtest) =============
[19:59:27] [PASSED] drm_test_check_connector_changed_modeset
[19:59:27] ============== [PASSED] drm_validate_modeset ===============
[19:59:27] ====== drm_test_bridge_get_current_state (2 subtests) ======
[19:59:27] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[19:59:27] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[19:59:27] ======== [PASSED] drm_test_bridge_get_current_state ========
[19:59:27] ====== drm_test_bridge_helper_reset_crtc (4 subtests) ======
[19:59:27] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[19:59:27] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[19:59:27] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[19:59:27] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[19:59:27] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[19:59:27] ============== drm_bridge_alloc (2 subtests) ===============
[19:59:27] [PASSED] drm_test_drm_bridge_alloc_basic
[19:59:27] [PASSED] drm_test_drm_bridge_alloc_get_put
[19:59:27] ================ [PASSED] drm_bridge_alloc =================
[19:59:27] ============= drm_bridge_bus_fmt (5 subtests) ==============
[19:59:27] [PASSED] drm_test_bridge_rgb_yuv_rgb
[19:59:27] [PASSED] drm_test_bridge_must_convert_to_yuv444
[19:59:27] [PASSED] drm_test_bridge_hdmi_auto_rgb
[19:59:27] [PASSED] drm_test_bridge_auto_first
[19:59:27] [PASSED] drm_test_bridge_rgb_yuv_no_path
[19:59:27] =============== [PASSED] drm_bridge_bus_fmt ================
[19:59:27] ============= drm_cmdline_parser (40 subtests) =============
[19:59:27] [PASSED] drm_test_cmdline_force_d_only
[19:59:27] [PASSED] drm_test_cmdline_force_D_only_dvi
[19:59:27] [PASSED] drm_test_cmdline_force_D_only_hdmi
[19:59:27] [PASSED] drm_test_cmdline_force_D_only_not_digital
[19:59:27] [PASSED] drm_test_cmdline_force_e_only
[19:59:27] [PASSED] drm_test_cmdline_res
[19:59:27] [PASSED] drm_test_cmdline_res_vesa
[19:59:27] [PASSED] drm_test_cmdline_res_vesa_rblank
[19:59:27] [PASSED] drm_test_cmdline_res_rblank
[19:59:27] [PASSED] drm_test_cmdline_res_bpp
[19:59:27] [PASSED] drm_test_cmdline_res_refresh
[19:59:27] [PASSED] drm_test_cmdline_res_bpp_refresh
[19:59:27] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[19:59:27] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[19:59:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[19:59:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[19:59:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[19:59:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[19:59:27] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[19:59:27] [PASSED] drm_test_cmdline_res_margins_force_on
[19:59:27] [PASSED] drm_test_cmdline_res_vesa_margins
[19:59:27] [PASSED] drm_test_cmdline_name
[19:59:27] [PASSED] drm_test_cmdline_name_bpp
[19:59:27] [PASSED] drm_test_cmdline_name_option
[19:59:27] [PASSED] drm_test_cmdline_name_bpp_option
[19:59:27] [PASSED] drm_test_cmdline_rotate_0
[19:59:27] [PASSED] drm_test_cmdline_rotate_90
[19:59:27] [PASSED] drm_test_cmdline_rotate_180
[19:59:27] [PASSED] drm_test_cmdline_rotate_270
[19:59:27] [PASSED] drm_test_cmdline_hmirror
[19:59:27] [PASSED] drm_test_cmdline_vmirror
[19:59:27] [PASSED] drm_test_cmdline_margin_options
[19:59:27] [PASSED] drm_test_cmdline_multiple_options
[19:59:27] [PASSED] drm_test_cmdline_bpp_extra_and_option
[19:59:27] [PASSED] drm_test_cmdline_extra_and_option
[19:59:27] [PASSED] drm_test_cmdline_freestanding_options
[19:59:27] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[19:59:27] [PASSED] drm_test_cmdline_panel_orientation
[19:59:27] ================ drm_test_cmdline_invalid =================
[19:59:27] [PASSED] margin_only
[19:59:27] [PASSED] interlace_only
[19:59:27] [PASSED] res_missing_x
[19:59:27] [PASSED] res_missing_y
[19:59:27] [PASSED] res_bad_y
[19:59:27] [PASSED] res_missing_y_bpp
[19:59:27] [PASSED] res_bad_bpp
[19:59:27] [PASSED] res_bad_refresh
[19:59:27] [PASSED] res_bpp_refresh_force_on_off
[19:59:27] [PASSED] res_invalid_mode
[19:59:27] [PASSED] res_bpp_wrong_place_mode
[19:59:27] [PASSED] name_bpp_refresh
[19:59:27] [PASSED] name_refresh
[19:59:27] [PASSED] name_refresh_wrong_mode
[19:59:27] [PASSED] name_refresh_invalid_mode
[19:59:27] [PASSED] rotate_multiple
[19:59:27] [PASSED] rotate_invalid_val
[19:59:27] [PASSED] rotate_truncated
[19:59:27] [PASSED] invalid_option
[19:59:27] [PASSED] invalid_tv_option
[19:59:27] [PASSED] truncated_tv_option
[19:59:27] ============ [PASSED] drm_test_cmdline_invalid =============
[19:59:27] =============== drm_test_cmdline_tv_options ===============
[19:59:27] [PASSED] NTSC
[19:59:27] [PASSED] NTSC_443
[19:59:27] [PASSED] NTSC_J
[19:59:27] [PASSED] PAL
[19:59:27] [PASSED] PAL_M
[19:59:27] [PASSED] PAL_N
[19:59:27] [PASSED] SECAM
[19:59:27] [PASSED] MONO_525
[19:59:27] [PASSED] MONO_625
[19:59:27] =========== [PASSED] drm_test_cmdline_tv_options ===========
[19:59:27] =============== [PASSED] drm_cmdline_parser ================
[19:59:27] ========== drmm_connector_hdmi_init (20 subtests) ==========
[19:59:27] [PASSED] drm_test_connector_hdmi_init_valid
[19:59:27] [PASSED] drm_test_connector_hdmi_init_bpc_8
[19:59:27] [PASSED] drm_test_connector_hdmi_init_bpc_10
[19:59:27] [PASSED] drm_test_connector_hdmi_init_bpc_12
[19:59:27] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[19:59:27] [PASSED] drm_test_connector_hdmi_init_bpc_null
[19:59:27] [PASSED] drm_test_connector_hdmi_init_formats_empty
[19:59:27] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[19:59:27] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[19:59:27] [PASSED] supported_formats=0x9 yuv420_allowed=1
[19:59:27] [PASSED] supported_formats=0x9 yuv420_allowed=0
[19:59:27] [PASSED] supported_formats=0x5 yuv420_allowed=1
[19:59:27] [PASSED] supported_formats=0x5 yuv420_allowed=0
[19:59:27] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[19:59:27] [PASSED] drm_test_connector_hdmi_init_null_ddc
[19:59:27] [PASSED] drm_test_connector_hdmi_init_null_product
[19:59:27] [PASSED] drm_test_connector_hdmi_init_null_vendor
[19:59:27] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[19:59:27] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[19:59:27] [PASSED] drm_test_connector_hdmi_init_product_valid
[19:59:27] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[19:59:27] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[19:59:27] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[19:59:27] ========= drm_test_connector_hdmi_init_type_valid =========
[19:59:27] [PASSED] HDMI-A
[19:59:27] [PASSED] HDMI-B
[19:59:27] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[19:59:27] ======== drm_test_connector_hdmi_init_type_invalid ========
[19:59:27] [PASSED] Unknown
[19:59:27] [PASSED] VGA
[19:59:27] [PASSED] DVI-I
[19:59:27] [PASSED] DVI-D
[19:59:27] [PASSED] DVI-A
[19:59:27] [PASSED] Composite
[19:59:27] [PASSED] SVIDEO
[19:59:27] [PASSED] LVDS
[19:59:27] [PASSED] Component
[19:59:27] [PASSED] DIN
[19:59:27] [PASSED] DP
[19:59:27] [PASSED] TV
[19:59:27] [PASSED] eDP
[19:59:27] [PASSED] Virtual
[19:59:27] [PASSED] DSI
[19:59:27] [PASSED] DPI
[19:59:27] [PASSED] Writeback
[19:59:27] [PASSED] SPI
[19:59:27] [PASSED] USB
[19:59:27] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[19:59:27] ============ [PASSED] drmm_connector_hdmi_init =============
[19:59:27] ============= drmm_connector_init (3 subtests) =============
[19:59:27] [PASSED] drm_test_drmm_connector_init
[19:59:27] [PASSED] drm_test_drmm_connector_init_null_ddc
[19:59:27] ========= drm_test_drmm_connector_init_type_valid =========
[19:59:27] [PASSED] Unknown
[19:59:27] [PASSED] VGA
[19:59:27] [PASSED] DVI-I
[19:59:27] [PASSED] DVI-D
[19:59:27] [PASSED] DVI-A
[19:59:27] [PASSED] Composite
[19:59:27] [PASSED] SVIDEO
[19:59:27] [PASSED] LVDS
[19:59:27] [PASSED] Component
[19:59:27] [PASSED] DIN
[19:59:27] [PASSED] DP
[19:59:27] [PASSED] HDMI-A
[19:59:27] [PASSED] HDMI-B
[19:59:27] [PASSED] TV
[19:59:27] [PASSED] eDP
[19:59:27] [PASSED] Virtual
[19:59:27] [PASSED] DSI
[19:59:27] [PASSED] DPI
[19:59:27] [PASSED] Writeback
[19:59:27] [PASSED] SPI
[19:59:27] [PASSED] USB
[19:59:27] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[19:59:27] =============== [PASSED] drmm_connector_init ===============
[19:59:27] ========= drm_connector_dynamic_init (6 subtests) ==========
[19:59:27] [PASSED] drm_test_drm_connector_dynamic_init
[19:59:27] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[19:59:27] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[19:59:27] [PASSED] drm_test_drm_connector_dynamic_init_properties
[19:59:27] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[19:59:27] [PASSED] Unknown
[19:59:27] [PASSED] VGA
[19:59:27] [PASSED] DVI-I
[19:59:27] [PASSED] DVI-D
[19:59:27] [PASSED] DVI-A
[19:59:27] [PASSED] Composite
[19:59:27] [PASSED] SVIDEO
[19:59:27] [PASSED] LVDS
[19:59:27] [PASSED] Component
[19:59:27] [PASSED] DIN
[19:59:27] [PASSED] DP
[19:59:27] [PASSED] HDMI-A
[19:59:27] [PASSED] HDMI-B
[19:59:27] [PASSED] TV
[19:59:27] [PASSED] eDP
[19:59:27] [PASSED] Virtual
[19:59:27] [PASSED] DSI
[19:59:27] [PASSED] DPI
[19:59:27] [PASSED] Writeback
[19:59:27] [PASSED] SPI
[19:59:27] [PASSED] USB
[19:59:27] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[19:59:27] ======== drm_test_drm_connector_dynamic_init_name =========
[19:59:27] [PASSED] Unknown
[19:59:27] [PASSED] VGA
[19:59:27] [PASSED] DVI-I
[19:59:27] [PASSED] DVI-D
[19:59:27] [PASSED] DVI-A
[19:59:27] [PASSED] Composite
[19:59:27] [PASSED] SVIDEO
[19:59:27] [PASSED] LVDS
[19:59:27] [PASSED] Component
[19:59:27] [PASSED] DIN
[19:59:27] [PASSED] DP
[19:59:27] [PASSED] HDMI-A
[19:59:27] [PASSED] HDMI-B
[19:59:27] [PASSED] TV
[19:59:27] [PASSED] eDP
[19:59:27] [PASSED] Virtual
[19:59:27] [PASSED] DSI
[19:59:27] [PASSED] DPI
[19:59:27] [PASSED] Writeback
[19:59:27] [PASSED] SPI
[19:59:27] [PASSED] USB
[19:59:27] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[19:59:27] =========== [PASSED] drm_connector_dynamic_init ============
[19:59:27] ==== drm_connector_dynamic_register_early (4 subtests) =====
[19:59:27] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[19:59:27] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[19:59:27] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[19:59:27] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[19:59:27] ====== [PASSED] drm_connector_dynamic_register_early =======
[19:59:27] ======= drm_connector_dynamic_register (7 subtests) ========
[19:59:27] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[19:59:27] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[19:59:27] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[19:59:27] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[19:59:27] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[19:59:27] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[19:59:27] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[19:59:27] ========= [PASSED] drm_connector_dynamic_register ==========
[19:59:27] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[19:59:27] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[19:59:27] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[19:59:27] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[19:59:27] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[19:59:27] ========== drm_test_get_tv_mode_from_name_valid ===========
[19:59:27] [PASSED] NTSC
[19:59:27] [PASSED] NTSC-443
[19:59:27] [PASSED] NTSC-J
[19:59:27] [PASSED] PAL
[19:59:27] [PASSED] PAL-M
[19:59:27] [PASSED] PAL-N
[19:59:27] [PASSED] SECAM
[19:59:27] [PASSED] Mono
[19:59:27] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[19:59:27] [PASSED] drm_test_get_tv_mode_from_name_truncated
[19:59:27] ============ [PASSED] drm_get_tv_mode_from_name ============
[19:59:27] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[19:59:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[19:59:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[19:59:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[19:59:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[19:59:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[19:59:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[19:59:27] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[19:59:27] [PASSED] VIC 96
[19:59:27] [PASSED] VIC 97
[19:59:27] [PASSED] VIC 101
[19:59:27] [PASSED] VIC 102
[19:59:27] [PASSED] VIC 106
[19:59:27] [PASSED] VIC 107
[19:59:27] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[19:59:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[19:59:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[19:59:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[19:59:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[19:59:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[19:59:27] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[19:59:27] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[19:59:27] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[19:59:27] [PASSED] Automatic
[19:59:27] [PASSED] Full
[19:59:27] [PASSED] Limited 16:235
[19:59:27] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[19:59:27] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[19:59:27] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[19:59:27] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[19:59:27] === drm_test_drm_hdmi_connector_get_output_format_name ====
[19:59:27] [PASSED] RGB
[19:59:27] [PASSED] YUV 4:2:0
[19:59:27] [PASSED] YUV 4:2:2
[19:59:27] [PASSED] YUV 4:4:4
[19:59:27] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[19:59:27] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[19:59:27] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[19:59:27] ============= drm_damage_helper (21 subtests) ==============
[19:59:27] [PASSED] drm_test_damage_iter_no_damage
[19:59:27] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[19:59:27] [PASSED] drm_test_damage_iter_no_damage_src_moved
[19:59:27] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[19:59:27] [PASSED] drm_test_damage_iter_no_damage_not_visible
[19:59:27] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[19:59:27] [PASSED] drm_test_damage_iter_no_damage_no_fb
[19:59:27] [PASSED] drm_test_damage_iter_simple_damage
[19:59:27] [PASSED] drm_test_damage_iter_single_damage
[19:59:27] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[19:59:27] [PASSED] drm_test_damage_iter_single_damage_outside_src
[19:59:27] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[19:59:27] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[19:59:27] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[19:59:27] [PASSED] drm_test_damage_iter_single_damage_src_moved
[19:59:27] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[19:59:27] [PASSED] drm_test_damage_iter_damage
[19:59:27] [PASSED] drm_test_damage_iter_damage_one_intersect
[19:59:27] [PASSED] drm_test_damage_iter_damage_one_outside
[19:59:27] [PASSED] drm_test_damage_iter_damage_src_moved
[19:59:27] [PASSED] drm_test_damage_iter_damage_not_visible
[19:59:27] ================ [PASSED] drm_damage_helper ================
[19:59:27] ============== drm_dp_mst_helper (3 subtests) ==============
[19:59:27] ============== drm_test_dp_mst_calc_pbn_mode ==============
[19:59:27] [PASSED] Clock 154000 BPP 30 DSC disabled
[19:59:27] [PASSED] Clock 234000 BPP 30 DSC disabled
[19:59:27] [PASSED] Clock 297000 BPP 24 DSC disabled
[19:59:27] [PASSED] Clock 332880 BPP 24 DSC enabled
[19:59:27] [PASSED] Clock 324540 BPP 24 DSC enabled
[19:59:27] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[19:59:27] ============== drm_test_dp_mst_calc_pbn_div ===============
[19:59:27] [PASSED] Link rate 2000000 lane count 4
[19:59:27] [PASSED] Link rate 2000000 lane count 2
[19:59:27] [PASSED] Link rate 2000000 lane count 1
[19:59:27] [PASSED] Link rate 1350000 lane count 4
[19:59:27] [PASSED] Link rate 1350000 lane count 2
[19:59:27] [PASSED] Link rate 1350000 lane count 1
[19:59:27] [PASSED] Link rate 1000000 lane count 4
[19:59:27] [PASSED] Link rate 1000000 lane count 2
[19:59:27] [PASSED] Link rate 1000000 lane count 1
[19:59:27] [PASSED] Link rate 810000 lane count 4
[19:59:27] [PASSED] Link rate 810000 lane count 2
[19:59:27] [PASSED] Link rate 810000 lane count 1
[19:59:27] [PASSED] Link rate 540000 lane count 4
[19:59:27] [PASSED] Link rate 540000 lane count 2
[19:59:27] [PASSED] Link rate 540000 lane count 1
[19:59:27] [PASSED] Link rate 270000 lane count 4
[19:59:27] [PASSED] Link rate 270000 lane count 2
[19:59:27] [PASSED] Link rate 270000 lane count 1
[19:59:27] [PASSED] Link rate 162000 lane count 4
[19:59:27] [PASSED] Link rate 162000 lane count 2
[19:59:27] [PASSED] Link rate 162000 lane count 1
[19:59:27] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[19:59:27] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[19:59:27] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[19:59:27] [PASSED] DP_POWER_UP_PHY with port number
[19:59:27] [PASSED] DP_POWER_DOWN_PHY with port number
[19:59:27] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[19:59:27] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[19:59:27] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[19:59:27] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[19:59:27] [PASSED] DP_QUERY_PAYLOAD with port number
[19:59:27] [PASSED] DP_QUERY_PAYLOAD with VCPI
[19:59:27] [PASSED] DP_REMOTE_DPCD_READ with port number
[19:59:27] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[19:59:27] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[19:59:27] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[19:59:27] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[19:59:27] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[19:59:27] [PASSED] DP_REMOTE_I2C_READ with port number
[19:59:27] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[19:59:27] [PASSED] DP_REMOTE_I2C_READ with transactions array
[19:59:27] [PASSED] DP_REMOTE_I2C_WRITE with port number
[19:59:27] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[19:59:27] [PASSED] DP_REMOTE_I2C_WRITE with data array
[19:59:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[19:59:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[19:59:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[19:59:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[19:59:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[19:59:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[19:59:27] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[19:59:27] ================ [PASSED] drm_dp_mst_helper ================
[19:59:27] ================== drm_exec (7 subtests) ===================
[19:59:27] [PASSED] sanitycheck
[19:59:27] [PASSED] test_lock
[19:59:27] [PASSED] test_lock_unlock
[19:59:27] [PASSED] test_duplicates
[19:59:27] [PASSED] test_prepare
[19:59:27] [PASSED] test_prepare_array
[19:59:27] [PASSED] test_multiple_loops
[19:59:27] ==================== [PASSED] drm_exec =====================
[19:59:27] =========== drm_format_helper_test (17 subtests) ===========
[19:59:27] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[19:59:27] [PASSED] single_pixel_source_buffer
[19:59:27] [PASSED] single_pixel_clip_rectangle
[19:59:27] [PASSED] well_known_colors
[19:59:27] [PASSED] destination_pitch
[19:59:27] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[19:59:27] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[19:59:27] [PASSED] single_pixel_source_buffer
[19:59:27] [PASSED] single_pixel_clip_rectangle
[19:59:27] [PASSED] well_known_colors
[19:59:27] [PASSED] destination_pitch
[19:59:27] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[19:59:27] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[19:59:27] [PASSED] single_pixel_source_buffer
[19:59:27] [PASSED] single_pixel_clip_rectangle
[19:59:27] [PASSED] well_known_colors
[19:59:27] [PASSED] destination_pitch
[19:59:27] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[19:59:27] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[19:59:27] [PASSED] single_pixel_source_buffer
[19:59:27] [PASSED] single_pixel_clip_rectangle
[19:59:27] [PASSED] well_known_colors
[19:59:27] [PASSED] destination_pitch
[19:59:27] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[19:59:27] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[19:59:27] [PASSED] single_pixel_source_buffer
[19:59:27] [PASSED] single_pixel_clip_rectangle
[19:59:27] [PASSED] well_known_colors
[19:59:27] [PASSED] destination_pitch
[19:59:27] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[19:59:27] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[19:59:27] [PASSED] single_pixel_source_buffer
[19:59:27] [PASSED] single_pixel_clip_rectangle
[19:59:27] [PASSED] well_known_colors
[19:59:27] [PASSED] destination_pitch
[19:59:27] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[19:59:27] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[19:59:27] [PASSED] single_pixel_source_buffer
[19:59:27] [PASSED] single_pixel_clip_rectangle
[19:59:27] [PASSED] well_known_colors
[19:59:27] [PASSED] destination_pitch
[19:59:27] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[19:59:27] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[19:59:27] [PASSED] single_pixel_source_buffer
[19:59:27] [PASSED] single_pixel_clip_rectangle
[19:59:27] [PASSED] well_known_colors
[19:59:27] [PASSED] destination_pitch
[19:59:27] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[19:59:27] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[19:59:27] [PASSED] single_pixel_source_buffer
[19:59:27] [PASSED] single_pixel_clip_rectangle
[19:59:27] [PASSED] well_known_colors
[19:59:27] [PASSED] destination_pitch
[19:59:27] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[19:59:27] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[19:59:27] [PASSED] single_pixel_source_buffer
[19:59:27] [PASSED] single_pixel_clip_rectangle
[19:59:27] [PASSED] well_known_colors
[19:59:27] [PASSED] destination_pitch
[19:59:27] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[19:59:27] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[19:59:27] [PASSED] single_pixel_source_buffer
[19:59:27] [PASSED] single_pixel_clip_rectangle
[19:59:27] [PASSED] well_known_colors
[19:59:27] [PASSED] destination_pitch
[19:59:27] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[19:59:27] ============== drm_test_fb_xrgb8888_to_mono ===============
[19:59:27] [PASSED] single_pixel_source_buffer
[19:59:27] [PASSED] single_pixel_clip_rectangle
[19:59:27] [PASSED] well_known_colors
[19:59:27] [PASSED] destination_pitch
[19:59:27] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[19:59:27] ==================== drm_test_fb_swab =====================
[19:59:27] [PASSED] single_pixel_source_buffer
[19:59:27] [PASSED] single_pixel_clip_rectangle
[19:59:27] [PASSED] well_known_colors
[19:59:27] [PASSED] destination_pitch
[19:59:27] ================ [PASSED] drm_test_fb_swab =================
[19:59:27] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[19:59:27] [PASSED] single_pixel_source_buffer
[19:59:27] [PASSED] single_pixel_clip_rectangle
[19:59:27] [PASSED] well_known_colors
[19:59:27] [PASSED] destination_pitch
[19:59:27] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[19:59:27] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[19:59:27] [PASSED] single_pixel_source_buffer
[19:59:27] [PASSED] single_pixel_clip_rectangle
[19:59:27] [PASSED] well_known_colors
[19:59:27] [PASSED] destination_pitch
[19:59:27] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[19:59:27] ================= drm_test_fb_clip_offset =================
[19:59:27] [PASSED] pass through
[19:59:27] [PASSED] horizontal offset
[19:59:27] [PASSED] vertical offset
[19:59:27] [PASSED] horizontal and vertical offset
[19:59:27] [PASSED] horizontal offset (custom pitch)
[19:59:27] [PASSED] vertical offset (custom pitch)
[19:59:27] [PASSED] horizontal and vertical offset (custom pitch)
[19:59:27] ============= [PASSED] drm_test_fb_clip_offset =============
[19:59:27] =================== drm_test_fb_memcpy ====================
[19:59:27] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[19:59:27] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[19:59:27] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[19:59:27] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[19:59:27] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[19:59:27] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[19:59:27] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[19:59:27] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[19:59:27] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[19:59:27] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[19:59:27] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[19:59:27] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[19:59:27] =============== [PASSED] drm_test_fb_memcpy ================
[19:59:27] ============= [PASSED] drm_format_helper_test ==============
[19:59:27] ================= drm_format (18 subtests) =================
[19:59:27] [PASSED] drm_test_format_block_width_invalid
[19:59:27] [PASSED] drm_test_format_block_width_one_plane
[19:59:27] [PASSED] drm_test_format_block_width_two_plane
[19:59:27] [PASSED] drm_test_format_block_width_three_plane
[19:59:27] [PASSED] drm_test_format_block_width_tiled
[19:59:27] [PASSED] drm_test_format_block_height_invalid
[19:59:27] [PASSED] drm_test_format_block_height_one_plane
[19:59:27] [PASSED] drm_test_format_block_height_two_plane
[19:59:27] [PASSED] drm_test_format_block_height_three_plane
[19:59:27] [PASSED] drm_test_format_block_height_tiled
[19:59:27] [PASSED] drm_test_format_min_pitch_invalid
[19:59:27] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[19:59:27] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[19:59:27] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[19:59:27] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[19:59:27] [PASSED] drm_test_format_min_pitch_two_plane
[19:59:27] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[19:59:27] [PASSED] drm_test_format_min_pitch_tiled
[19:59:27] =================== [PASSED] drm_format ====================
[19:59:27] ============== drm_framebuffer (10 subtests) ===============
[19:59:27] ========== drm_test_framebuffer_check_src_coords ==========
[19:59:27] [PASSED] Success: source fits into fb
[19:59:27] [PASSED] Fail: overflowing fb with x-axis coordinate
[19:59:27] [PASSED] Fail: overflowing fb with y-axis coordinate
[19:59:27] [PASSED] Fail: overflowing fb with source width
[19:59:27] [PASSED] Fail: overflowing fb with source height
[19:59:27] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[19:59:27] [PASSED] drm_test_framebuffer_cleanup
[19:59:27] =============== drm_test_framebuffer_create ===============
[19:59:27] [PASSED] ABGR8888 normal sizes
[19:59:27] [PASSED] ABGR8888 max sizes
[19:59:27] [PASSED] ABGR8888 pitch greater than min required
[19:59:27] [PASSED] ABGR8888 pitch less than min required
[19:59:27] [PASSED] ABGR8888 Invalid width
[19:59:27] [PASSED] ABGR8888 Invalid buffer handle
[19:59:27] [PASSED] No pixel format
[19:59:27] [PASSED] ABGR8888 Width 0
[19:59:27] [PASSED] ABGR8888 Height 0
[19:59:27] [PASSED] ABGR8888 Out of bound height * pitch combination
[19:59:27] [PASSED] ABGR8888 Large buffer offset
[19:59:27] [PASSED] ABGR8888 Buffer offset for inexistent plane
[19:59:27] [PASSED] ABGR8888 Invalid flag
[19:59:27] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[19:59:27] [PASSED] ABGR8888 Valid buffer modifier
[19:59:27] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[19:59:27] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[19:59:27] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[19:59:27] [PASSED] NV12 Normal sizes
[19:59:27] [PASSED] NV12 Max sizes
[19:59:27] [PASSED] NV12 Invalid pitch
[19:59:27] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[19:59:27] [PASSED] NV12 different modifier per-plane
[19:59:27] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[19:59:27] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[19:59:27] [PASSED] NV12 Modifier for inexistent plane
[19:59:27] [PASSED] NV12 Handle for inexistent plane
[19:59:27] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[19:59:27] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[19:59:27] [PASSED] YVU420 Normal sizes
[19:59:27] [PASSED] YVU420 Max sizes
[19:59:27] [PASSED] YVU420 Invalid pitch
[19:59:27] [PASSED] YVU420 Different pitches
[19:59:27] [PASSED] YVU420 Different buffer offsets/pitches
[19:59:27] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[19:59:27] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[19:59:27] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[19:59:27] [PASSED] YVU420 Valid modifier
[19:59:27] [PASSED] YVU420 Different modifiers per plane
[19:59:27] [PASSED] YVU420 Modifier for inexistent plane
[19:59:27] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[19:59:27] [PASSED] X0L2 Normal sizes
[19:59:27] [PASSED] X0L2 Max sizes
[19:59:27] [PASSED] X0L2 Invalid pitch
[19:59:27] [PASSED] X0L2 Pitch greater than minimum required
[19:59:27] [PASSED] X0L2 Handle for inexistent plane
[19:59:27] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[19:59:27] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[19:59:27] [PASSED] X0L2 Valid modifier
[19:59:27] [PASSED] X0L2 Modifier for inexistent plane
[19:59:27] =========== [PASSED] drm_test_framebuffer_create ===========
[19:59:27] [PASSED] drm_test_framebuffer_free
[19:59:27] [PASSED] drm_test_framebuffer_init
[19:59:27] [PASSED] drm_test_framebuffer_init_bad_format
[19:59:27] [PASSED] drm_test_framebuffer_init_dev_mismatch
[19:59:27] [PASSED] drm_test_framebuffer_lookup
[19:59:27] [PASSED] drm_test_framebuffer_lookup_inexistent
[19:59:27] [PASSED] drm_test_framebuffer_modifiers_not_supported
[19:59:27] ================= [PASSED] drm_framebuffer =================
[19:59:27] ================ drm_gem_shmem (8 subtests) ================
[19:59:27] [PASSED] drm_gem_shmem_test_obj_create
[19:59:27] [PASSED] drm_gem_shmem_test_obj_create_private
[19:59:27] [PASSED] drm_gem_shmem_test_pin_pages
[19:59:27] [PASSED] drm_gem_shmem_test_vmap
[19:59:27] [PASSED] drm_gem_shmem_test_get_sg_table
[19:59:27] [PASSED] drm_gem_shmem_test_get_pages_sgt
[19:59:27] [PASSED] drm_gem_shmem_test_madvise
[19:59:27] [PASSED] drm_gem_shmem_test_purge
[19:59:27] ================== [PASSED] drm_gem_shmem ==================
[19:59:27] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[19:59:27] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[19:59:27] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[19:59:27] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[19:59:27] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[19:59:27] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[19:59:27] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[19:59:27] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[19:59:27] [PASSED] Automatic
[19:59:27] [PASSED] Full
[19:59:27] [PASSED] Limited 16:235
[19:59:27] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[19:59:27] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[19:59:27] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[19:59:27] [PASSED] drm_test_check_disable_connector
[19:59:27] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[19:59:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[19:59:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[19:59:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[19:59:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[19:59:27] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[19:59:27] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[19:59:27] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[19:59:27] [PASSED] drm_test_check_output_bpc_dvi
[19:59:27] [PASSED] drm_test_check_output_bpc_format_vic_1
[19:59:27] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[19:59:27] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[19:59:27] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[19:59:27] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[19:59:27] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[19:59:27] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[19:59:27] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[19:59:27] ============ drm_test_check_hdmi_color_format =============
[19:59:27] [PASSED] AUTO -> RGB
[19:59:27] [PASSED] YCBCR422 -> YUV422
[19:59:27] [PASSED] YCBCR420 -> YUV420
[19:59:27] [PASSED] YCBCR444 -> YUV444
[19:59:27] [PASSED] RGB -> RGB
[19:59:27] ======== [PASSED] drm_test_check_hdmi_color_format =========
[19:59:27] ======== drm_test_check_hdmi_color_format_420_only ========
[19:59:27] [PASSED] RGB should fail
[19:59:27] [PASSED] YUV444 should fail
[19:59:27] [PASSED] YUV422 should fail
[19:59:27] [PASSED] YUV420 should work
[19:59:27] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[19:59:27] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[19:59:27] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[19:59:27] [PASSED] drm_test_check_broadcast_rgb_value
[19:59:27] [PASSED] drm_test_check_bpc_8_value
[19:59:27] [PASSED] drm_test_check_bpc_10_value
[19:59:27] [PASSED] drm_test_check_bpc_12_value
[19:59:27] [PASSED] drm_test_check_format_value
[19:59:27] [PASSED] drm_test_check_tmds_char_value
[19:59:27] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[19:59:27] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[19:59:27] [PASSED] drm_test_check_mode_valid
[19:59:27] [PASSED] drm_test_check_mode_valid_reject
[19:59:27] [PASSED] drm_test_check_mode_valid_reject_rate
[19:59:27] [PASSED] drm_test_check_mode_valid_reject_max_clock
[19:59:27] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[19:59:27] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[19:59:27] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[19:59:27] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[19:59:27] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[19:59:27] [PASSED] drm_test_check_infoframes
[19:59:27] [PASSED] drm_test_check_reject_avi_infoframe
[19:59:27] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[19:59:27] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[19:59:27] [PASSED] drm_test_check_reject_audio_infoframe
[19:59:27] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[19:59:27] ================= drm_managed (2 subtests) =================
[19:59:27] [PASSED] drm_test_managed_release_action
[19:59:27] [PASSED] drm_test_managed_run_action
[19:59:27] =================== [PASSED] drm_managed ===================
[19:59:27] =================== drm_mm (6 subtests) ====================
[19:59:27] [PASSED] drm_test_mm_init
[19:59:27] [PASSED] drm_test_mm_debug
[19:59:27] [PASSED] drm_test_mm_align32
[19:59:27] [PASSED] drm_test_mm_align64
[19:59:27] [PASSED] drm_test_mm_lowest
[19:59:27] [PASSED] drm_test_mm_highest
[19:59:27] ===================== [PASSED] drm_mm ======================
[19:59:27] ============= drm_modes_analog_tv (5 subtests) =============
[19:59:27] [PASSED] drm_test_modes_analog_tv_mono_576i
[19:59:27] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[19:59:27] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[19:59:27] [PASSED] drm_test_modes_analog_tv_pal_576i
[19:59:27] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[19:59:27] =============== [PASSED] drm_modes_analog_tv ===============
[19:59:27] ============== drm_plane_helper (2 subtests) ===============
[19:59:27] =============== drm_test_check_plane_state ================
[19:59:27] [PASSED] clipping_simple
[19:59:27] [PASSED] clipping_rotate_reflect
[19:59:27] [PASSED] positioning_simple
[19:59:27] [PASSED] upscaling
[19:59:27] [PASSED] downscaling
[19:59:27] [PASSED] rounding1
[19:59:27] [PASSED] rounding2
[19:59:27] [PASSED] rounding3
[19:59:27] [PASSED] rounding4
[19:59:27] =========== [PASSED] drm_test_check_plane_state ============
[19:59:27] =========== drm_test_check_invalid_plane_state ============
[19:59:27] [PASSED] positioning_invalid
[19:59:27] [PASSED] upscaling_invalid
[19:59:27] [PASSED] downscaling_invalid
[19:59:27] ======= [PASSED] drm_test_check_invalid_plane_state ========
[19:59:27] ================ [PASSED] drm_plane_helper =================
[19:59:27] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[19:59:27] ====== drm_test_connector_helper_tv_get_modes_check =======
[19:59:27] [PASSED] None
[19:59:27] [PASSED] PAL
[19:59:27] [PASSED] NTSC
[19:59:27] [PASSED] Both, NTSC Default
[19:59:27] [PASSED] Both, PAL Default
[19:59:27] [PASSED] Both, NTSC Default, with PAL on command-line
[19:59:27] [PASSED] Both, PAL Default, with NTSC on command-line
[19:59:27] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[19:59:27] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[19:59:27] ================== drm_rect (9 subtests) ===================
[19:59:27] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[19:59:27] [PASSED] drm_test_rect_clip_scaled_not_clipped
[19:59:27] [PASSED] drm_test_rect_clip_scaled_clipped
[19:59:27] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[19:59:27] ================= drm_test_rect_intersect =================
[19:59:27] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[19:59:27] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[19:59:27] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[19:59:27] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[19:59:27] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[19:59:27] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[19:59:27] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[19:59:27] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[19:59:27] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[19:59:27] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[19:59:27] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[19:59:27] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[19:59:27] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[19:59:27] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[19:59:27] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[19:59:27] ============= [PASSED] drm_test_rect_intersect =============
[19:59:27] ================ drm_test_rect_calc_hscale ================
[19:59:27] [PASSED] normal use
[19:59:27] [PASSED] out of max range
[19:59:27] [PASSED] out of min range
[19:59:27] [PASSED] zero dst
[19:59:27] [PASSED] negative src
[19:59:27] [PASSED] negative dst
[19:59:27] ============ [PASSED] drm_test_rect_calc_hscale ============
[19:59:27] ================ drm_test_rect_calc_vscale ================
[19:59:27] [PASSED] normal use
[19:59:27] [PASSED] out of max range
[19:59:27] [PASSED] out of min range
[19:59:27] [PASSED] zero dst
[19:59:27] [PASSED] negative src
[19:59:27] [PASSED] negative dst
[19:59:27] ============ [PASSED] drm_test_rect_calc_vscale ============
[19:59:27] ================== drm_test_rect_rotate ===================
[19:59:27] [PASSED] reflect-x
[19:59:27] [PASSED] reflect-y
[19:59:27] [PASSED] rotate-0
[19:59:27] [PASSED] rotate-90
[19:59:27] [PASSED] rotate-180
[19:59:27] [PASSED] rotate-270
[19:59:27] ============== [PASSED] drm_test_rect_rotate ===============
[19:59:27] ================ drm_test_rect_rotate_inv =================
[19:59:27] [PASSED] reflect-x
[19:59:27] [PASSED] reflect-y
[19:59:27] [PASSED] rotate-0
[19:59:27] [PASSED] rotate-90
[19:59:27] [PASSED] rotate-180
[19:59:27] [PASSED] rotate-270
[19:59:27] ============ [PASSED] drm_test_rect_rotate_inv =============
[19:59:27] ==================== [PASSED] drm_rect =====================
[19:59:27] ============ drm_sysfb_modeset_test (1 subtest) ============
[19:59:27] ============ drm_test_sysfb_build_fourcc_list =============
[19:59:27] [PASSED] no native formats
[19:59:27] [PASSED] XRGB8888 as native format
[19:59:27] [PASSED] remove duplicates
[19:59:27] [PASSED] convert alpha formats
[19:59:27] [PASSED] random formats
[19:59:27] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[19:59:27] ============= [PASSED] drm_sysfb_modeset_test ==============
[19:59:27] ================== drm_fixp (2 subtests) ===================
[19:59:27] [PASSED] drm_test_int2fixp
[19:59:27] [PASSED] drm_test_sm2fixp
[19:59:27] ==================== [PASSED] drm_fixp =====================
[19:59:27] ============================================================
[19:59:27] Testing complete. Ran 639 tests: passed: 639
[19:59:27] Elapsed time: 26.207s total, 1.797s configuring, 24.194s building, 0.181s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[19:59:27] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:59:29] 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
[19:59:39] Starting KUnit Kernel (1/1)...
[19:59:39] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:59:39] ================= ttm_device (5 subtests) ==================
[19:59:39] [PASSED] ttm_device_init_basic
[19:59:39] [PASSED] ttm_device_init_multiple
[19:59:39] [PASSED] ttm_device_fini_basic
[19:59:39] [PASSED] ttm_device_init_no_vma_man
[19:59:39] ================== ttm_device_init_pools ==================
[19:59:39] [PASSED] No DMA allocations, no DMA32 required
[19:59:39] [PASSED] DMA allocations, DMA32 required
[19:59:39] [PASSED] No DMA allocations, DMA32 required
[19:59:39] [PASSED] DMA allocations, no DMA32 required
[19:59:39] ============== [PASSED] ttm_device_init_pools ==============
[19:59:39] =================== [PASSED] ttm_device ====================
[19:59:39] ================== ttm_pool (8 subtests) ===================
[19:59:39] ================== ttm_pool_alloc_basic ===================
[19:59:39] [PASSED] One page
[19:59:39] [PASSED] More than one page
[19:59:39] [PASSED] Above the allocation limit
[19:59:39] [PASSED] One page, with coherent DMA mappings enabled
[19:59:39] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[19:59:39] ============== [PASSED] ttm_pool_alloc_basic ===============
[19:59:39] ============== ttm_pool_alloc_basic_dma_addr ==============
[19:59:39] [PASSED] One page
[19:59:39] [PASSED] More than one page
[19:59:39] [PASSED] Above the allocation limit
[19:59:39] [PASSED] One page, with coherent DMA mappings enabled
[19:59:39] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[19:59:39] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[19:59:39] [PASSED] ttm_pool_alloc_order_caching_match
[19:59:39] [PASSED] ttm_pool_alloc_caching_mismatch
[19:59:39] [PASSED] ttm_pool_alloc_order_mismatch
[19:59:39] [PASSED] ttm_pool_free_dma_alloc
[19:59:39] [PASSED] ttm_pool_free_no_dma_alloc
[19:59:39] [PASSED] ttm_pool_fini_basic
[19:59:39] ==================== [PASSED] ttm_pool =====================
[19:59:39] ================ ttm_resource (8 subtests) =================
[19:59:39] ================= ttm_resource_init_basic =================
[19:59:39] [PASSED] Init resource in TTM_PL_SYSTEM
[19:59:39] [PASSED] Init resource in TTM_PL_VRAM
[19:59:39] [PASSED] Init resource in a private placement
[19:59:39] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[19:59:39] ============= [PASSED] ttm_resource_init_basic =============
[19:59:39] [PASSED] ttm_resource_init_pinned
[19:59:39] [PASSED] ttm_resource_fini_basic
[19:59:39] [PASSED] ttm_resource_manager_init_basic
[19:59:39] [PASSED] ttm_resource_manager_usage_basic
[19:59:39] [PASSED] ttm_resource_manager_set_used_basic
[19:59:39] [PASSED] ttm_sys_man_alloc_basic
[19:59:39] [PASSED] ttm_sys_man_free_basic
[19:59:39] ================== [PASSED] ttm_resource ===================
[19:59:39] =================== ttm_tt (15 subtests) ===================
[19:59:39] ==================== ttm_tt_init_basic ====================
[19:59:39] [PASSED] Page-aligned size
[19:59:39] [PASSED] Extra pages requested
[19:59:39] ================ [PASSED] ttm_tt_init_basic ================
[19:59:39] [PASSED] ttm_tt_init_misaligned
[19:59:39] [PASSED] ttm_tt_fini_basic
[19:59:39] [PASSED] ttm_tt_fini_sg
[19:59:39] [PASSED] ttm_tt_fini_shmem
[19:59:39] [PASSED] ttm_tt_create_basic
[19:59:39] [PASSED] ttm_tt_create_invalid_bo_type
[19:59:39] [PASSED] ttm_tt_create_ttm_exists
[19:59:39] [PASSED] ttm_tt_create_failed
[19:59:39] [PASSED] ttm_tt_destroy_basic
[19:59:39] [PASSED] ttm_tt_populate_null_ttm
[19:59:39] [PASSED] ttm_tt_populate_populated_ttm
[19:59:39] [PASSED] ttm_tt_unpopulate_basic
[19:59:39] [PASSED] ttm_tt_unpopulate_empty_ttm
[19:59:39] [PASSED] ttm_tt_swapin_basic
[19:59:39] ===================== [PASSED] ttm_tt ======================
[19:59:39] =================== ttm_bo (14 subtests) ===================
[19:59:39] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[19:59:39] [PASSED] Cannot be interrupted and sleeps
[19:59:39] [PASSED] Cannot be interrupted, locks straight away
[19:59:39] [PASSED] Can be interrupted, sleeps
[19:59:39] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[19:59:39] [PASSED] ttm_bo_reserve_locked_no_sleep
[19:59:39] [PASSED] ttm_bo_reserve_no_wait_ticket
[19:59:39] [PASSED] ttm_bo_reserve_double_resv
[19:59:39] [PASSED] ttm_bo_reserve_interrupted
[19:59:39] [PASSED] ttm_bo_reserve_deadlock
[19:59:39] [PASSED] ttm_bo_unreserve_basic
[19:59:39] [PASSED] ttm_bo_unreserve_pinned
[19:59:39] [PASSED] ttm_bo_unreserve_bulk
[19:59:39] [PASSED] ttm_bo_fini_basic
[19:59:39] [PASSED] ttm_bo_fini_shared_resv
[19:59:39] [PASSED] ttm_bo_pin_basic
[19:59:39] [PASSED] ttm_bo_pin_unpin_resource
[19:59:39] [PASSED] ttm_bo_multiple_pin_one_unpin
[19:59:39] ===================== [PASSED] ttm_bo ======================
[19:59:39] ============== ttm_bo_validate (22 subtests) ===============
[19:59:39] ============== ttm_bo_init_reserved_sys_man ===============
[19:59:39] [PASSED] Buffer object for userspace
[19:59:39] [PASSED] Kernel buffer object
[19:59:39] [PASSED] Shared buffer object
[19:59:39] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[19:59:39] ============== ttm_bo_init_reserved_mock_man ==============
[19:59:39] [PASSED] Buffer object for userspace
[19:59:39] [PASSED] Kernel buffer object
[19:59:39] [PASSED] Shared buffer object
[19:59:39] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[19:59:39] [PASSED] ttm_bo_init_reserved_resv
[19:59:39] ================== ttm_bo_validate_basic ==================
[19:59:39] [PASSED] Buffer object for userspace
[19:59:39] [PASSED] Kernel buffer object
[19:59:39] [PASSED] Shared buffer object
[19:59:39] ============== [PASSED] ttm_bo_validate_basic ==============
[19:59:39] [PASSED] ttm_bo_validate_invalid_placement
[19:59:39] ============= ttm_bo_validate_same_placement ==============
[19:59:39] [PASSED] System manager
[19:59:39] [PASSED] VRAM manager
[19:59:39] ========= [PASSED] ttm_bo_validate_same_placement ==========
[19:59:39] [PASSED] ttm_bo_validate_failed_alloc
[19:59:39] [PASSED] ttm_bo_validate_pinned
[19:59:39] [PASSED] ttm_bo_validate_busy_placement
[19:59:39] ================ ttm_bo_validate_multihop =================
[19:59:39] [PASSED] Buffer object for userspace
[19:59:39] [PASSED] Kernel buffer object
[19:59:39] [PASSED] Shared buffer object
[19:59:39] ============ [PASSED] ttm_bo_validate_multihop =============
[19:59:39] ========== ttm_bo_validate_no_placement_signaled ==========
[19:59:39] [PASSED] Buffer object in system domain, no page vector
[19:59:39] [PASSED] Buffer object in system domain with an existing page vector
[19:59:39] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[19:59:39] ======== ttm_bo_validate_no_placement_not_signaled ========
[19:59:39] [PASSED] Buffer object for userspace
[19:59:39] [PASSED] Kernel buffer object
[19:59:39] [PASSED] Shared buffer object
[19:59:39] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[19:59:39] [PASSED] ttm_bo_validate_move_fence_signaled
[19:59:39] ========= ttm_bo_validate_move_fence_not_signaled =========
[19:59:39] [PASSED] Waits for GPU
[19:59:39] [PASSED] Tries to lock straight away
[19:59:39] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[19:59:39] [PASSED] ttm_bo_validate_swapout
[19:59:39] [PASSED] ttm_bo_validate_happy_evict
[19:59:39] [PASSED] ttm_bo_validate_all_pinned_evict
[19:59:39] [PASSED] ttm_bo_validate_allowed_only_evict
[19:59:39] [PASSED] ttm_bo_validate_deleted_evict
[19:59:39] [PASSED] ttm_bo_validate_busy_domain_evict
[19:59:39] [PASSED] ttm_bo_validate_evict_gutting
[19:59:39] [PASSED] ttm_bo_validate_recrusive_evict
[19:59:39] ================= [PASSED] ttm_bo_validate =================
[19:59:39] ============================================================
[19:59:39] Testing complete. Ran 102 tests: passed: 102
[19:59:39] Elapsed time: 11.659s total, 1.791s configuring, 9.603s building, 0.236s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 10+ messages in thread* ✗ Xe.CI.BAT: failure for drm/xe/guc: distinguish wedged from recoverable cancellation (rev2)
2026-06-24 19:46 [PATCH v2 0/2] drm/xe/guc: distinguish wedged from recoverable cancellation Sk Anirban
` (2 preceding siblings ...)
2026-06-24 19:59 ` ✓ CI.KUnit: success for drm/xe/guc: distinguish wedged from recoverable cancellation (rev2) Patchwork
@ 2026-06-25 0:10 ` Patchwork
2026-06-25 0:30 ` ✗ Xe.CI.FULL: " Patchwork
` (3 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-06-25 0:10 UTC (permalink / raw)
To: Sk Anirban; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 4507 bytes --]
== Series Details ==
Series: drm/xe/guc: distinguish wedged from recoverable cancellation (rev2)
URL : https://patchwork.freedesktop.org/series/168780/
State : failure
== Summary ==
CI Bug Log - changes from xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7_BAT -> xe-pw-168780v2_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-168780v2_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-168780v2_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-168780v2_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- bat-bmg-3: NOTRUN -> [INCOMPLETE][1] +4 other tests incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- bat-bmg-3: [PASS][2] -> [INCOMPLETE][3] +2 other tests incomplete
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
- bat-bmg-3: [PASS][4] -> [CRASH][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- bat-bmg-3: NOTRUN -> [CRASH][6] +1 other test crash
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/bat-bmg-3/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
Known issues
------------
Here are the changes found in xe-pw-168780v2_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- bat-bmg-3: NOTRUN -> [SKIP][7] ([Intel XE#6566]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
#### Possible fixes ####
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind:
- bat-bmg-3: [INCOMPLETE][8] -> [PASS][9] +1 other test pass
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
- bat-bmg-3: [CRASH][10] -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
[Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
Build changes
-------------
* Linux: xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7 -> xe-pw-168780v2
IGT_8985: d5fe8732b8547454c38fdd220b55f6f0cc841a3b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7: c04e038b8787434bf489ea6de4ab2e2d936083c7
xe-pw-168780v2: 168780v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/index.html
[-- Attachment #2: Type: text/html, Size: 5281 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread* ✗ Xe.CI.FULL: failure for drm/xe/guc: distinguish wedged from recoverable cancellation (rev2)
2026-06-24 19:46 [PATCH v2 0/2] drm/xe/guc: distinguish wedged from recoverable cancellation Sk Anirban
` (3 preceding siblings ...)
2026-06-25 0:10 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-06-25 0:30 ` Patchwork
2026-07-01 9:19 ` ✓ CI.KUnit: success for drm/xe/guc: distinguish wedged from recoverable cancellation (rev3) Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-06-25 0:30 UTC (permalink / raw)
To: Sk Anirban; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 94022 bytes --]
== Series Details ==
Series: drm/xe/guc: distinguish wedged from recoverable cancellation (rev2)
URL : https://patchwork.freedesktop.org/series/168780/
State : failure
== Summary ==
CI Bug Log - changes from xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7_FULL -> xe-pw-168780v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-168780v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-168780v2_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 (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-168780v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_bw@connected-linear-tiling-2-displays-target-3840x2160p:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2] +9 other tests incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-target-3840x2160p.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-target-3840x2160p.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling@pipe-a-default-mode:
- shard-lnl: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling@pipe-a-default-mode.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling@pipe-a-default-mode.html
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-0:
- shard-bmg: NOTRUN -> [TIMEOUT][5] +1 other test timeout
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-10/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-0.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format:
- shard-bmg: [PASS][6] -> [CRASH][7] +1 other test crash
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
* igt@xe_drm_fdinfo@utilization-single-full-load-while-active:
- shard-bmg: NOTRUN -> [CRASH][8]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@xe_drm_fdinfo@utilization-single-full-load-while-active.html
* igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [INCOMPLETE][9] +4 other tests incomplete
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-9/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_system_allocator@many-large-execqueues-free:
- shard-bmg: NOTRUN -> [SKIP][10] +22 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@xe_exec_system_allocator@many-large-execqueues-free.html
* igt@xe_exec_system_allocator@process-many-execqueues-mmap-remap-ro-dontunmap-eocheck:
- shard-bmg: NOTRUN -> [FAIL][11] +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@xe_exec_system_allocator@process-many-execqueues-mmap-remap-ro-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-race-nomemset:
- shard-lnl: NOTRUN -> [INCOMPLETE][12] +7 other tests incomplete
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-race-nomemset.html
* igt@xe_exec_system_allocator@process-many-large-mmap-new-race-nomemset:
- shard-bmg: [PASS][13] -> [FAIL][14] +6 other tests fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-4/igt@xe_exec_system_allocator@process-many-large-mmap-new-race-nomemset.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@xe_exec_system_allocator@process-many-large-mmap-new-race-nomemset.html
* igt@xe_exec_system_allocator@threads-many-execqueues-mmap-new-madvise:
- shard-lnl: [PASS][15] -> [TIMEOUT][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-lnl-2/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-new-madvise.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-5/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-new-madvise.html
* igt@xe_exec_system_allocator@threads-many-stride-free-nomemset:
- shard-bmg: [PASS][17] -> [SKIP][18] +124 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@xe_exec_system_allocator@threads-many-stride-free-nomemset.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-stride-free-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-prefetch-madvise:
- shard-bmg: [PASS][19] -> [TIMEOUT][20] +12 other tests timeout
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-prefetch-madvise.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-prefetch-madvise.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-madvise:
- shard-lnl: NOTRUN -> [TIMEOUT][21]
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-madvise.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0:
- shard-bmg: [PASS][22] -> [ABORT][23]
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-3/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-7/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-bmg: [SKIP][24] -> [TIMEOUT][25] +2 other tests timeout
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: [INCOMPLETE][26] ([Intel XE#5643]) -> [TIMEOUT][27]
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-bmg: [SKIP][28] ([Intel XE#2327]) -> [SKIP][29]
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-7/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-bmg: [TIMEOUT][30] -> [SKIP][31] +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-bmg: [SKIP][32] ([Intel XE#1124]) -> [SKIP][33] +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-1-displays-target-2560x1440p:
- shard-bmg: [TIMEOUT][34] -> [INCOMPLETE][35]
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-4/igt@kms_bw@connected-linear-tiling-1-displays-target-2560x1440p.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@kms_bw@connected-linear-tiling-1-displays-target-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p:
- shard-bmg: [SKIP][36] -> [INCOMPLETE][37] +2 other tests incomplete
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-target-3840x2160p:
- shard-bmg: [SKIP][38] ([Intel XE#367]) -> [INCOMPLETE][39] +3 other tests incomplete
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-target-2160x1440p:
- shard-bmg: [SKIP][40] ([Intel XE#367]) -> [SKIP][41] +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-7/igt@kms_bw@linear-tiling-3-displays-target-2160x1440p.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@kms_bw@linear-tiling-3-displays-target-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: [SKIP][42] ([Intel XE#2887]) -> [SKIP][43] +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4:
- shard-bmg: [SKIP][44] ([Intel XE#7358]) -> [SKIP][45]
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-bmg: [SKIP][46] ([Intel XE#2252]) -> [SKIP][47]
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][48] ([Intel XE#6707] / [Intel XE#7439]) -> [SKIP][49]
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@kms_content_protection@uevent.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: [SKIP][50] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][51]
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x170.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: [INCOMPLETE][52] ([Intel XE#8151]) -> [TIMEOUT][53]
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-6/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-7/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: [SKIP][54] ([Intel XE#4422] / [Intel XE#7442]) -> [SKIP][55]
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-bmg: [SKIP][56] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][57]
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-blt:
- shard-bmg: [SKIP][58] ([Intel XE#7061]) -> [SKIP][59]
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-7/igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-blt.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@drrshdr-modesetfrombusy:
- shard-bmg: [SKIP][60] ([Intel XE#2311]) -> [SKIP][61] +11 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@kms_frontbuffer_tracking@drrshdr-modesetfrombusy.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_frontbuffer_tracking@drrshdr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][62] ([Intel XE#4141]) -> [SKIP][63] +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][64] ([Intel XE#2313]) -> [SKIP][65] +11 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render:
- shard-bmg: [SKIP][66] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][67]
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render.html
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping:
- shard-bmg: [CRASH][68] -> [TIMEOUT][69]
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-8/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-10/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-bmg: [SKIP][70] ([Intel XE#7283]) -> [SKIP][71] +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: [SKIP][72] ([Intel XE#2763] / [Intel XE#6886]) -> [CRASH][73] +1 other test crash
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c:
- shard-bmg: [SKIP][74] ([Intel XE#2763] / [Intel XE#6886]) -> [INCOMPLETE][75] +1 other test incomplete
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-bmg: [INCOMPLETE][76] -> [TIMEOUT][77] +1 other test timeout
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-lnl: [TIMEOUT][78] -> [INCOMPLETE][79] +1 other test incomplete
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-bmg: [SKIP][80] ([Intel XE#1489]) -> [SKIP][81] +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-bmg: [SKIP][82] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@kms_psr@fbc-psr2-primary-render.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_sharpness_filter@invalid-filter-with-plane:
- shard-bmg: [SKIP][84] ([Intel XE#6503]) -> [SKIP][85]
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@kms_sharpness_filter@invalid-filter-with-plane.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_sharpness_filter@invalid-filter-with-plane.html
* igt@xe_eudebug_online@breakpoint-many-sessions-single-tile:
- shard-bmg: [SKIP][86] ([Intel XE#7636]) -> [SKIP][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html
* igt@xe_evict@evict-small-external-multi-queue-cm:
- shard-bmg: [SKIP][88] ([Intel XE#8370]) -> [SKIP][89] +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-7/igt@xe_evict@evict-small-external-multi-queue-cm.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@xe_evict@evict-small-external-multi-queue-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind:
- shard-bmg: [SKIP][90] ([Intel XE#2322] / [Intel XE#7372]) -> [INCOMPLETE][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-bmg: [SKIP][92] ([Intel XE#2322] / [Intel XE#7372]) -> [TIMEOUT][93]
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
- shard-bmg: [SKIP][94] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][95] +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-prefetch:
- shard-bmg: [SKIP][96] ([Intel XE#8374]) -> [INCOMPLETE][97]
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-prefetch.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-9/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-prefetch.html
* igt@xe_exec_fault_mode@many-multi-queue-prefetch:
- shard-bmg: [SKIP][98] ([Intel XE#8374]) -> [SKIP][99]
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@xe_exec_fault_mode@many-multi-queue-prefetch.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-prefetch.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-basic:
- shard-bmg: [SKIP][100] ([Intel XE#8364]) -> [SKIP][101] +4 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-basic.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-basic.html
* igt@xe_exec_reset@multi-queue-close-execqueues:
- shard-bmg: [SKIP][102] ([Intel XE#8369]) -> [SKIP][103]
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@xe_exec_reset@multi-queue-close-execqueues.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@xe_exec_reset@multi-queue-close-execqueues.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-prefetch:
- shard-bmg: [FAIL][104] -> [SKIP][105]
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-7/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-prefetch.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-prefetch.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-invalidate-race:
- shard-bmg: [INCOMPLETE][106] ([Intel XE#8366]) -> [CRASH][107]
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-invalidate-race.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-multi-queue-rebind:
- shard-bmg: [SKIP][108] ([Intel XE#8378]) -> [SKIP][109]
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-rebind.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-rebind.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_add_hw_engine_class_defaults:
- shard-bmg: [CRASH][110] -> [INCOMPLETE][111]
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_add_hw_engine_class_defaults.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_add_hw_engine_class_defaults.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority:
- shard-bmg: [TIMEOUT][112] -> [ABORT][113]
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-3/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-7/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority.html
* igt@xe_vm@mmap-style-bind-either-side-partial-split-page-hammer:
- shard-lnl: [INCOMPLETE][114] -> [TIMEOUT][115]
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-lnl-6/igt@xe_vm@mmap-style-bind-either-side-partial-split-page-hammer.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-5/igt@xe_vm@mmap-style-bind-either-side-partial-split-page-hammer.html
Known issues
------------
Here are the changes found in xe-pw-168780v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1407]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-bmg: [PASS][117] -> [INCOMPLETE][118] ([Intel XE#5643])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-lnl: NOTRUN -> [INCOMPLETE][119] ([Intel XE#5643])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2327])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#1124]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1124]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [ABORT][123] ([Intel XE#8007])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2887]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [INCOMPLETE][125] ([Intel XE#8150])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_chamelium_audio@dp-audio:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2252])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#7358])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#7642])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][129] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#7642])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1424])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-bmg: [PASS][132] -> [INCOMPLETE][133] ([Intel XE#8151])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-5/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#4354] / [Intel XE#7386])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#4354] / [Intel XE#5870])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#8265])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1421])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset@ab-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [INCOMPLETE][138] ([Intel XE#8155]) +1 other test incomplete
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset@ab-dp2-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#7179])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#7178] / [Intel XE#7351])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#6312])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#7061] / [Intel XE#7356])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2311]) +17 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#4141]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#656] / [Intel XE#7905]) +5 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#7061]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#7399])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#7061] / [Intel XE#7356])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte:
- shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#7865]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-cur-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#7905]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2313]) +14 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][152] -> [SKIP][153] ([Intel XE#1503])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-10/igt@kms_hdr@invalid-hdr.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping:
- shard-bmg: NOTRUN -> [INCOMPLETE][155] ([Intel XE#1035])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#7283])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#8303]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2393])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2763] / [Intel XE#6886]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#1489]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2387] / [Intel XE#7429])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@pr-sprite-render:
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#8361])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#1127] / [Intel XE#5813])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#7636]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_exec_balancer@many-virtual-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#7482]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@xe_exec_balancer@many-virtual-userptr-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr:
- shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#1392])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2322] / [Intel XE#7372])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#8374]) +4 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#8374])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate.html
* igt@xe_exec_multi_queue@many-queues-preempt-mode-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#8364]) +9 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@xe_exec_multi_queue@many-queues-preempt-mode-priority-smem.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem:
- shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#8364]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem.html
* igt@xe_exec_reset@cm-multi-queue-close-fd:
- shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#8369])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@xe_exec_reset@cm-multi-queue-close-fd.html
* igt@xe_exec_reset@cm-multi-queue-gt-reset:
- shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#8369])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@xe_exec_reset@cm-multi-queue-gt-reset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-busy-nomemset:
- shard-bmg: [PASS][175] -> [INCOMPLETE][176] ([Intel XE#7928] / [Intel XE#8159])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-busy-nomemset.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-busy-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-remap-ro:
- shard-bmg: [PASS][177] -> [INCOMPLETE][178] ([Intel XE#8159]) +28 other tests incomplete
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-remap-ro.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-remap-ro.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#8378]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#584] / [Intel XE#7369]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
- shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#4733] / [Intel XE#7417])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#944])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-7/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: NOTRUN -> [SKIP][183] ([Intel XE#944])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_survivability@runtime-survivability:
- shard-bmg: [PASS][184] -> [DMESG-WARN][185] ([Intel XE#6627] / [Intel XE#7419])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-8/igt@xe_survivability@runtime-survivability.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-10/igt@xe_survivability@runtime-survivability.html
#### Possible fixes ####
* igt@fbdev@write:
- shard-bmg: [SKIP][186] ([Intel XE#2134]) -> [PASS][187]
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@fbdev@write.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@fbdev@write.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [INCOMPLETE][188] ([Intel XE#5643]) -> [PASS][189] +1 other test pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [CRASH][190] -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-5/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [TIMEOUT][192] -> [PASS][193] +9 other tests pass
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-10/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-mmap-wc.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [INCOMPLETE][194] ([Intel XE#8368]) -> [PASS][195]
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-5/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-render.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
- shard-bmg: [INCOMPLETE][196] -> [PASS][197] +12 other tests pass
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
* igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind:
- shard-bmg: [SKIP][198] -> [PASS][199] +170 other tests pass
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-race:
- shard-bmg: [FAIL][200] -> [PASS][201] +5 other tests pass
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-4/igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-race.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-race.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-free-race-nomemset:
- shard-bmg: [INCOMPLETE][202] ([Intel XE#7928] / [Intel XE#8159]) -> [PASS][203]
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-free-race-nomemset.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-free-race-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-prefetch:
- shard-bmg: [INCOMPLETE][204] ([Intel XE#8159]) -> [PASS][205] +31 other tests pass
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-prefetch.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-prefetch.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-free-madvise:
- shard-lnl: [TIMEOUT][206] -> [PASS][207] +1 other test pass
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-free-madvise.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-free-madvise.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [SKIP][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-7/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-5/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-10/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-10/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-5/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-8/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-8/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-5/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-3/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-7/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-8/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-10/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-3/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-6/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-6/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-4/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-4/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-5/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-5/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-8/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-5/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-7/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-7/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-9/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-9/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-7/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-10/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-10/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-8/igt@xe_module_load@load.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-lnl: [ABORT][259] ([Intel XE#8007]) -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-lnl-7/igt@xe_wedged@wedged-mode-toggle.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-4/igt@xe_wedged@wedged-mode-toggle.html
#### Warnings ####
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: [INCOMPLETE][261] ([Intel XE#8174]) -> [SKIP][262] ([Intel XE#2370])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: [SKIP][263] -> [INCOMPLETE][264] ([Intel XE#5643])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-bmg: [SKIP][265] -> [SKIP][266] ([Intel XE#1124]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-lnl: [SKIP][267] ([Intel XE#1124]) -> [INCOMPLETE][268] ([Intel XE#5643])
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-lnl-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: [INCOMPLETE][269] ([Intel XE#5643]) -> [SKIP][270] ([Intel XE#1124])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-lnl: [TIMEOUT][271] -> [INCOMPLETE][272] ([Intel XE#5643])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-bmg: [INCOMPLETE][273] ([Intel XE#5643]) -> [SKIP][274] ([Intel XE#1124]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-10/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p:
- shard-bmg: [CRASH][275] -> [SKIP][276] ([Intel XE#7679])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-target-2560x1440p:
- shard-bmg: [INCOMPLETE][277] -> [SKIP][278] ([Intel XE#367])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: [SKIP][279] -> [SKIP][280] ([Intel XE#2887]) +5 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: [SKIP][281] -> [SKIP][282] ([Intel XE#3432])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-bmg: [SKIP][283] -> [SKIP][284] ([Intel XE#2252]) +2 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-bmg: [SKIP][285] -> [SKIP][286] ([Intel XE#6974])
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-bmg: [SKIP][287] -> [FAIL][288] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@kms_content_protection@legacy-hdcp14.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@type1:
- shard-bmg: [SKIP][289] -> [SKIP][290] ([Intel XE#7642])
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@kms_content_protection@type1.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-bmg: [SKIP][291] -> [SKIP][292] ([Intel XE#2320])
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@kms_cursor_crc@cursor-random-256x85.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-bmg: [SKIP][293] -> [SKIP][294] ([Intel XE#2321] / [Intel XE#7355])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x512.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: [SKIP][295] -> [SKIP][296] ([Intel XE#8265])
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: [SKIP][297] -> [SKIP][298] ([Intel XE#7178] / [Intel XE#7349])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: [SKIP][299] -> [SKIP][300] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][301] -> [SKIP][302] ([Intel XE#2311]) +15 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-spr-indfb-draw-blt.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][303] -> [SKIP][304] ([Intel XE#4141]) +1 other test skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render:
- shard-bmg: [SKIP][305] -> [SKIP][306] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: [SKIP][307] -> [SKIP][308] ([Intel XE#2352] / [Intel XE#7399])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-render:
- shard-bmg: [INCOMPLETE][309] ([Intel XE#8368]) -> [SKIP][310] ([Intel XE#2311])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-render.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][311] ([Intel XE#2311]) -> [INCOMPLETE][312] ([Intel XE#8368]) +1 other test incomplete
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-render.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt:
- shard-bmg: [SKIP][313] -> [SKIP][314] ([Intel XE#7061]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [TIMEOUT][315] -> [INCOMPLETE][316] ([Intel XE#8368])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-render.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [INCOMPLETE][317] ([Intel XE#8368]) -> [SKIP][318] ([Intel XE#2313]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-blt.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][319] -> [SKIP][320] ([Intel XE#2313]) +21 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
- shard-bmg: [SKIP][321] ([Intel XE#7283]) -> [INCOMPLETE][322] ([Intel XE#1035]) +1 other test incomplete
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-10/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-bmg: [INCOMPLETE][323] ([Intel XE#1035]) -> [SKIP][324] ([Intel XE#7283]) +1 other test skip
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-5/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-8/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: [SKIP][325] -> [SKIP][326] ([Intel XE#5020] / [Intel XE#7348])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@kms_plane_multiple@tiling-yf.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: [CRASH][327] -> [SKIP][328] ([Intel XE#2763] / [Intel XE#6886])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- shard-bmg: [INCOMPLETE][329] -> [SKIP][330] ([Intel XE#2763] / [Intel XE#6886])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
* igt@kms_pm_dc@dc5-pageflip-negative:
- shard-bmg: [SKIP][331] -> [SKIP][332] ([Intel XE#6927])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@kms_pm_dc@dc5-pageflip-negative.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@kms_pm_dc@dc5-pageflip-negative.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-bmg: [SKIP][333] -> [SKIP][334] ([Intel XE#1489]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: [SKIP][335] -> [SKIP][336] ([Intel XE#2387] / [Intel XE#7429])
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@kms_psr2_su@page_flip-nv12.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@psr-basic:
- shard-bmg: [SKIP][337] -> [SKIP][338] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@kms_psr@psr-basic.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_psr@psr-basic.html
* igt@kms_sharpness_filter@filter-tap:
- shard-bmg: [SKIP][339] -> [SKIP][340] ([Intel XE#6503])
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@kms_sharpness_filter@filter-tap.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@kms_sharpness_filter@filter-tap.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][341] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][342] ([Intel XE#2426] / [Intel XE#5848])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_eudebug_online@stopped-thread:
- shard-bmg: [SKIP][343] -> [SKIP][344] ([Intel XE#7636]) +4 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@xe_eudebug_online@stopped-thread.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@xe_eudebug_online@stopped-thread.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
- shard-bmg: [INCOMPLETE][345] -> [SKIP][346] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind:
- shard-bmg: [SKIP][347] -> [SKIP][348] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-rebind-prefetch:
- shard-bmg: [INCOMPLETE][349] -> [SKIP][350] ([Intel XE#8374])
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-rebind-prefetch.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-rebind-prefetch.html
* igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
- shard-bmg: [SKIP][351] -> [SKIP][352] ([Intel XE#8374])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html
* igt@xe_exec_multi_queue@one-queue-priority-smem:
- shard-bmg: [SKIP][353] -> [SKIP][354] ([Intel XE#8364]) +6 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@xe_exec_multi_queue@one-queue-priority-smem.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@xe_exec_multi_queue@one-queue-priority-smem.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-shared-remap-dontunmap-eocheck:
- shard-bmg: [FAIL][355] -> [INCOMPLETE][356] ([Intel XE#8159])
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-6/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-shared-remap-dontunmap-eocheck.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-10/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-shared-remap-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-new-huge-nomemset:
- shard-bmg: [SKIP][357] -> [INCOMPLETE][358] ([Intel XE#8159])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-new-huge-nomemset.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-new-huge-nomemset.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr:
- shard-bmg: [SKIP][359] -> [SKIP][360] ([Intel XE#8378]) +2 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html
* igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate:
- shard-bmg: [SKIP][361] ([Intel XE#8378]) -> [INCOMPLETE][362] ([Intel XE#8366])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-6/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate.html
* igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate-race:
- shard-bmg: [INCOMPLETE][363] ([Intel XE#8366]) -> [SKIP][364] ([Intel XE#8378])
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate-race.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate-race.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: [SKIP][365] -> [SKIP][366] ([Intel XE#2284] / [Intel XE#7370])
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@xe_pm@d3cold-multiple-execs.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pxp@display-black-pxp-fb:
- shard-bmg: [SKIP][367] -> [SKIP][368] ([Intel XE#4733] / [Intel XE#7417])
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7/shard-bmg-2/igt@xe_pxp@display-black-pxp-fb.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/shard-bmg-3/igt@xe_pxp@display-black-pxp-fb.html
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5643]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5643
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7928]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7928
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8151
[Intel XE#8155]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8155
[Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159
[Intel XE#8174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8174
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303
[Intel XE#8361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8361
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8366
[Intel XE#8368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8368
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7 -> xe-pw-168780v2
IGT_8985: d5fe8732b8547454c38fdd220b55f6f0cc841a3b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5298-c04e038b8787434bf489ea6de4ab2e2d936083c7: c04e038b8787434bf489ea6de4ab2e2d936083c7
xe-pw-168780v2: 168780v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v2/index.html
[-- Attachment #2: Type: text/html, Size: 108339 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread* ✓ CI.KUnit: success for drm/xe/guc: distinguish wedged from recoverable cancellation (rev3)
2026-06-24 19:46 [PATCH v2 0/2] drm/xe/guc: distinguish wedged from recoverable cancellation Sk Anirban
` (4 preceding siblings ...)
2026-06-25 0:30 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-07-01 9:19 ` Patchwork
2026-07-01 10:08 ` ✓ Xe.CI.BAT: " Patchwork
2026-07-02 0:34 ` ✓ Xe.CI.FULL: " Patchwork
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-07-01 9:19 UTC (permalink / raw)
To: Sk Anirban; +Cc: intel-xe
== Series Details ==
Series: drm/xe/guc: distinguish wedged from recoverable cancellation (rev3)
URL : https://patchwork.freedesktop.org/series/168780/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[09:18:22] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:18:27] 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
../drivers/gpu/drm/xe/xe_pt.c:1420:13: warning: ‘xe_pt_svm_userptr_notifier_lock’ defined but not used [-Wunused-function]
1420 | static void xe_pt_svm_userptr_notifier_lock(struct xe_vm *vm)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[09:19:02] Starting KUnit Kernel (1/1)...
[09:19:02] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:19:02] ================== guc_buf (11 subtests) ===================
[09:19:02] [PASSED] test_smallest
[09:19:02] [PASSED] test_largest
[09:19:02] [PASSED] test_granular
[09:19:02] [PASSED] test_unique
[09:19:02] [PASSED] test_overlap
[09:19:02] [PASSED] test_reusable
[09:19:02] [PASSED] test_too_big
[09:19:02] [PASSED] test_flush
[09:19:02] [PASSED] test_lookup
[09:19:02] [PASSED] test_data
[09:19:02] [PASSED] test_class
[09:19:02] ===================== [PASSED] guc_buf =====================
[09:19:02] =================== guc_dbm (7 subtests) ===================
[09:19:02] [PASSED] test_empty
[09:19:02] [PASSED] test_default
[09:19:02] ======================== test_size ========================
[09:19:02] [PASSED] 4
[09:19:02] [PASSED] 8
[09:19:02] [PASSED] 32
[09:19:02] [PASSED] 256
[09:19:02] ==================== [PASSED] test_size ====================
[09:19:02] ======================= test_reuse ========================
[09:19:02] [PASSED] 4
[09:19:02] [PASSED] 8
[09:19:02] [PASSED] 32
[09:19:02] [PASSED] 256
[09:19:02] =================== [PASSED] test_reuse ====================
[09:19:02] =================== test_range_overlap ====================
[09:19:02] [PASSED] 4
[09:19:02] [PASSED] 8
[09:19:02] [PASSED] 32
[09:19:02] [PASSED] 256
[09:19:02] =============== [PASSED] test_range_overlap ================
[09:19:02] =================== test_range_compact ====================
[09:19:02] [PASSED] 4
[09:19:02] [PASSED] 8
[09:19:02] [PASSED] 32
[09:19:02] [PASSED] 256
[09:19:02] =============== [PASSED] test_range_compact ================
[09:19:02] ==================== test_range_spare =====================
[09:19:02] [PASSED] 4
[09:19:02] [PASSED] 8
[09:19:02] [PASSED] 32
[09:19:02] [PASSED] 256
[09:19:02] ================ [PASSED] test_range_spare =================
[09:19:02] ===================== [PASSED] guc_dbm =====================
[09:19:02] =================== guc_idm (6 subtests) ===================
[09:19:02] [PASSED] bad_init
[09:19:02] [PASSED] no_init
[09:19:02] [PASSED] init_fini
[09:19:02] [PASSED] check_used
[09:19:02] [PASSED] check_quota
[09:19:02] [PASSED] check_all
[09:19:02] ===================== [PASSED] guc_idm =====================
[09:19:02] ================== no_relay (3 subtests) ===================
[09:19:02] [PASSED] xe_drops_guc2pf_if_not_ready
[09:19:02] [PASSED] xe_drops_guc2vf_if_not_ready
[09:19:02] [PASSED] xe_rejects_send_if_not_ready
[09:19:02] ==================== [PASSED] no_relay =====================
[09:19:02] ================== pf_relay (14 subtests) ==================
[09:19:02] [PASSED] pf_rejects_guc2pf_too_short
[09:19:02] [PASSED] pf_rejects_guc2pf_too_long
[09:19:02] [PASSED] pf_rejects_guc2pf_no_payload
[09:19:02] [PASSED] pf_fails_no_payload
[09:19:02] [PASSED] pf_fails_bad_origin
[09:19:02] [PASSED] pf_fails_bad_type
[09:19:02] [PASSED] pf_txn_reports_error
[09:19:02] [PASSED] pf_txn_sends_pf2guc
[09:19:02] [PASSED] pf_sends_pf2guc
[09:19:02] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[09:19:02] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[09:19:02] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[09:19:02] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[09:19:02] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[09:19:02] ==================== [PASSED] pf_relay =====================
[09:19:02] ================== vf_relay (3 subtests) ===================
[09:19:02] [PASSED] vf_rejects_guc2vf_too_short
[09:19:02] [PASSED] vf_rejects_guc2vf_too_long
[09:19:02] [PASSED] vf_rejects_guc2vf_no_payload
[09:19:02] ==================== [PASSED] vf_relay =====================
[09:19:02] ================ pf_gt_config (9 subtests) =================
[09:19:02] [PASSED] fair_contexts_1vf
[09:19:02] [PASSED] fair_doorbells_1vf
[09:19:02] [PASSED] fair_ggtt_1vf
[09:19:02] ====================== fair_vram_1vf ======================
[09:19:02] [PASSED] 3.50 GiB
[09:19:02] [PASSED] 11.5 GiB
[09:19:02] [PASSED] 15.5 GiB
[09:19:02] [PASSED] 31.5 GiB
[09:19:02] [PASSED] 63.5 GiB
[09:19:02] [PASSED] 1.91 GiB
[09:19:02] ================== [PASSED] fair_vram_1vf ==================
[09:19:02] ================ fair_vram_1vf_admin_only =================
[09:19:02] [PASSED] 3.50 GiB
[09:19:02] [PASSED] 11.5 GiB
[09:19:02] [PASSED] 15.5 GiB
[09:19:02] [PASSED] 31.5 GiB
[09:19:02] [PASSED] 63.5 GiB
[09:19:02] [PASSED] 1.91 GiB
[09:19:02] ============ [PASSED] fair_vram_1vf_admin_only =============
[09:19:02] ====================== fair_contexts ======================
[09:19:02] [PASSED] 1 VF
[09:19:02] [PASSED] 2 VFs
[09:19:02] [PASSED] 3 VFs
[09:19:02] [PASSED] 4 VFs
[09:19:02] [PASSED] 5 VFs
[09:19:03] [PASSED] 6 VFs
[09:19:03] [PASSED] 7 VFs
[09:19:03] [PASSED] 8 VFs
[09:19:03] [PASSED] 9 VFs
[09:19:03] [PASSED] 10 VFs
[09:19:03] [PASSED] 11 VFs
[09:19:03] [PASSED] 12 VFs
[09:19:03] [PASSED] 13 VFs
[09:19:03] [PASSED] 14 VFs
[09:19:03] [PASSED] 15 VFs
[09:19:03] [PASSED] 16 VFs
[09:19:03] [PASSED] 17 VFs
[09:19:03] [PASSED] 18 VFs
[09:19:03] [PASSED] 19 VFs
[09:19:03] [PASSED] 20 VFs
[09:19:03] [PASSED] 21 VFs
[09:19:03] [PASSED] 22 VFs
[09:19:03] [PASSED] 23 VFs
[09:19:03] [PASSED] 24 VFs
[09:19:03] [PASSED] 25 VFs
[09:19:03] [PASSED] 26 VFs
[09:19:03] [PASSED] 27 VFs
[09:19:03] [PASSED] 28 VFs
[09:19:03] [PASSED] 29 VFs
[09:19:03] [PASSED] 30 VFs
[09:19:03] [PASSED] 31 VFs
[09:19:03] [PASSED] 32 VFs
[09:19:03] [PASSED] 33 VFs
[09:19:03] [PASSED] 34 VFs
[09:19:03] [PASSED] 35 VFs
[09:19:03] [PASSED] 36 VFs
[09:19:03] [PASSED] 37 VFs
[09:19:03] [PASSED] 38 VFs
[09:19:03] [PASSED] 39 VFs
[09:19:03] [PASSED] 40 VFs
[09:19:03] [PASSED] 41 VFs
[09:19:03] [PASSED] 42 VFs
[09:19:03] [PASSED] 43 VFs
[09:19:03] [PASSED] 44 VFs
[09:19:03] [PASSED] 45 VFs
[09:19:03] [PASSED] 46 VFs
[09:19:03] [PASSED] 47 VFs
[09:19:03] [PASSED] 48 VFs
[09:19:03] [PASSED] 49 VFs
[09:19:03] [PASSED] 50 VFs
[09:19:03] [PASSED] 51 VFs
[09:19:03] [PASSED] 52 VFs
[09:19:03] [PASSED] 53 VFs
[09:19:03] [PASSED] 54 VFs
[09:19:03] [PASSED] 55 VFs
[09:19:03] [PASSED] 56 VFs
[09:19:03] [PASSED] 57 VFs
[09:19:03] [PASSED] 58 VFs
[09:19:03] [PASSED] 59 VFs
[09:19:03] [PASSED] 60 VFs
[09:19:03] [PASSED] 61 VFs
[09:19:03] [PASSED] 62 VFs
[09:19:03] [PASSED] 63 VFs
[09:19:03] ================== [PASSED] fair_contexts ==================
[09:19:03] ===================== fair_doorbells ======================
[09:19:03] [PASSED] 1 VF
[09:19:03] [PASSED] 2 VFs
[09:19:03] [PASSED] 3 VFs
[09:19:03] [PASSED] 4 VFs
[09:19:03] [PASSED] 5 VFs
[09:19:03] [PASSED] 6 VFs
[09:19:03] [PASSED] 7 VFs
[09:19:03] [PASSED] 8 VFs
[09:19:03] [PASSED] 9 VFs
[09:19:03] [PASSED] 10 VFs
[09:19:03] [PASSED] 11 VFs
[09:19:03] [PASSED] 12 VFs
[09:19:03] [PASSED] 13 VFs
[09:19:03] [PASSED] 14 VFs
[09:19:03] [PASSED] 15 VFs
[09:19:03] [PASSED] 16 VFs
[09:19:03] [PASSED] 17 VFs
[09:19:03] [PASSED] 18 VFs
[09:19:03] [PASSED] 19 VFs
[09:19:03] [PASSED] 20 VFs
[09:19:03] [PASSED] 21 VFs
[09:19:03] [PASSED] 22 VFs
[09:19:03] [PASSED] 23 VFs
[09:19:03] [PASSED] 24 VFs
[09:19:03] [PASSED] 25 VFs
[09:19:03] [PASSED] 26 VFs
[09:19:03] [PASSED] 27 VFs
[09:19:03] [PASSED] 28 VFs
[09:19:03] [PASSED] 29 VFs
[09:19:03] [PASSED] 30 VFs
[09:19:03] [PASSED] 31 VFs
[09:19:03] [PASSED] 32 VFs
[09:19:03] [PASSED] 33 VFs
[09:19:03] [PASSED] 34 VFs
[09:19:03] [PASSED] 35 VFs
[09:19:03] [PASSED] 36 VFs
[09:19:03] [PASSED] 37 VFs
[09:19:03] [PASSED] 38 VFs
[09:19:03] [PASSED] 39 VFs
[09:19:03] [PASSED] 40 VFs
[09:19:03] [PASSED] 41 VFs
[09:19:03] [PASSED] 42 VFs
[09:19:03] [PASSED] 43 VFs
[09:19:03] [PASSED] 44 VFs
[09:19:03] [PASSED] 45 VFs
[09:19:03] [PASSED] 46 VFs
[09:19:03] [PASSED] 47 VFs
[09:19:03] [PASSED] 48 VFs
[09:19:03] [PASSED] 49 VFs
[09:19:03] [PASSED] 50 VFs
[09:19:03] [PASSED] 51 VFs
[09:19:03] [PASSED] 52 VFs
[09:19:03] [PASSED] 53 VFs
[09:19:03] [PASSED] 54 VFs
[09:19:03] [PASSED] 55 VFs
[09:19:03] [PASSED] 56 VFs
[09:19:03] [PASSED] 57 VFs
[09:19:03] [PASSED] 58 VFs
[09:19:03] [PASSED] 59 VFs
[09:19:03] [PASSED] 60 VFs
[09:19:03] [PASSED] 61 VFs
[09:19:03] [PASSED] 62 VFs
[09:19:03] [PASSED] 63 VFs
[09:19:03] ================= [PASSED] fair_doorbells ==================
[09:19:03] ======================== fair_ggtt ========================
[09:19:03] [PASSED] 1 VF
[09:19:03] [PASSED] 2 VFs
[09:19:03] [PASSED] 3 VFs
[09:19:03] [PASSED] 4 VFs
[09:19:03] [PASSED] 5 VFs
[09:19:03] [PASSED] 6 VFs
[09:19:03] [PASSED] 7 VFs
[09:19:03] [PASSED] 8 VFs
[09:19:03] [PASSED] 9 VFs
[09:19:03] [PASSED] 10 VFs
[09:19:03] [PASSED] 11 VFs
[09:19:03] [PASSED] 12 VFs
[09:19:03] [PASSED] 13 VFs
[09:19:03] [PASSED] 14 VFs
[09:19:03] [PASSED] 15 VFs
[09:19:03] [PASSED] 16 VFs
[09:19:03] [PASSED] 17 VFs
[09:19:03] [PASSED] 18 VFs
[09:19:03] [PASSED] 19 VFs
[09:19:03] [PASSED] 20 VFs
[09:19:03] [PASSED] 21 VFs
[09:19:03] [PASSED] 22 VFs
[09:19:03] [PASSED] 23 VFs
[09:19:03] [PASSED] 24 VFs
[09:19:03] [PASSED] 25 VFs
[09:19:03] [PASSED] 26 VFs
[09:19:03] [PASSED] 27 VFs
[09:19:03] [PASSED] 28 VFs
[09:19:03] [PASSED] 29 VFs
[09:19:03] [PASSED] 30 VFs
[09:19:03] [PASSED] 31 VFs
[09:19:03] [PASSED] 32 VFs
[09:19:03] [PASSED] 33 VFs
[09:19:03] [PASSED] 34 VFs
[09:19:03] [PASSED] 35 VFs
[09:19:03] [PASSED] 36 VFs
[09:19:03] [PASSED] 37 VFs
[09:19:03] [PASSED] 38 VFs
[09:19:03] [PASSED] 39 VFs
[09:19:03] [PASSED] 40 VFs
[09:19:03] [PASSED] 41 VFs
[09:19:03] [PASSED] 42 VFs
[09:19:03] [PASSED] 43 VFs
[09:19:03] [PASSED] 44 VFs
[09:19:03] [PASSED] 45 VFs
[09:19:03] [PASSED] 46 VFs
[09:19:03] [PASSED] 47 VFs
[09:19:03] [PASSED] 48 VFs
[09:19:03] [PASSED] 49 VFs
[09:19:03] [PASSED] 50 VFs
[09:19:03] [PASSED] 51 VFs
[09:19:03] [PASSED] 52 VFs
[09:19:03] [PASSED] 53 VFs
[09:19:03] [PASSED] 54 VFs
[09:19:03] [PASSED] 55 VFs
[09:19:03] [PASSED] 56 VFs
[09:19:03] [PASSED] 57 VFs
[09:19:03] [PASSED] 58 VFs
[09:19:03] [PASSED] 59 VFs
[09:19:03] [PASSED] 60 VFs
[09:19:03] [PASSED] 61 VFs
[09:19:03] [PASSED] 62 VFs
[09:19:03] [PASSED] 63 VFs
[09:19:03] ==================== [PASSED] fair_ggtt ====================
[09:19:03] ======================== fair_vram ========================
[09:19:03] [PASSED] 1 VF
[09:19:03] [PASSED] 2 VFs
[09:19:03] [PASSED] 3 VFs
[09:19:03] [PASSED] 4 VFs
[09:19:03] [PASSED] 5 VFs
[09:19:03] [PASSED] 6 VFs
[09:19:03] [PASSED] 7 VFs
[09:19:03] [PASSED] 8 VFs
[09:19:03] [PASSED] 9 VFs
[09:19:03] [PASSED] 10 VFs
[09:19:03] [PASSED] 11 VFs
[09:19:03] [PASSED] 12 VFs
[09:19:03] [PASSED] 13 VFs
[09:19:03] [PASSED] 14 VFs
[09:19:03] [PASSED] 15 VFs
[09:19:03] [PASSED] 16 VFs
[09:19:03] [PASSED] 17 VFs
[09:19:03] [PASSED] 18 VFs
[09:19:03] [PASSED] 19 VFs
[09:19:03] [PASSED] 20 VFs
[09:19:03] [PASSED] 21 VFs
[09:19:03] [PASSED] 22 VFs
[09:19:03] [PASSED] 23 VFs
[09:19:03] [PASSED] 24 VFs
[09:19:03] [PASSED] 25 VFs
[09:19:03] [PASSED] 26 VFs
[09:19:03] [PASSED] 27 VFs
[09:19:03] [PASSED] 28 VFs
[09:19:03] [PASSED] 29 VFs
[09:19:03] [PASSED] 30 VFs
[09:19:03] [PASSED] 31 VFs
[09:19:03] [PASSED] 32 VFs
[09:19:03] [PASSED] 33 VFs
[09:19:03] [PASSED] 34 VFs
[09:19:03] [PASSED] 35 VFs
[09:19:03] [PASSED] 36 VFs
[09:19:03] [PASSED] 37 VFs
[09:19:03] [PASSED] 38 VFs
[09:19:03] [PASSED] 39 VFs
[09:19:03] [PASSED] 40 VFs
[09:19:03] [PASSED] 41 VFs
[09:19:03] [PASSED] 42 VFs
[09:19:03] [PASSED] 43 VFs
[09:19:03] [PASSED] 44 VFs
[09:19:03] [PASSED] 45 VFs
[09:19:03] [PASSED] 46 VFs
[09:19:03] [PASSED] 47 VFs
[09:19:03] [PASSED] 48 VFs
[09:19:03] [PASSED] 49 VFs
[09:19:03] [PASSED] 50 VFs
[09:19:03] [PASSED] 51 VFs
[09:19:03] [PASSED] 52 VFs
[09:19:03] [PASSED] 53 VFs
[09:19:03] [PASSED] 54 VFs
[09:19:03] [PASSED] 55 VFs
[09:19:03] [PASSED] 56 VFs
[09:19:03] [PASSED] 57 VFs
[09:19:03] [PASSED] 58 VFs
[09:19:03] [PASSED] 59 VFs
[09:19:03] [PASSED] 60 VFs
[09:19:03] [PASSED] 61 VFs
[09:19:03] [PASSED] 62 VFs
[09:19:03] [PASSED] 63 VFs
[09:19:03] ==================== [PASSED] fair_vram ====================
[09:19:03] ================== [PASSED] pf_gt_config ===================
[09:19:03] ===================== lmtt (1 subtest) =====================
[09:19:03] ======================== test_ops =========================
[09:19:03] [PASSED] 2-level
[09:19:03] [PASSED] multi-level
[09:19:03] ==================== [PASSED] test_ops =====================
[09:19:03] ====================== [PASSED] lmtt =======================
[09:19:03] ================= pf_service (11 subtests) =================
[09:19:03] [PASSED] pf_negotiate_any
[09:19:03] [PASSED] pf_negotiate_base_match
[09:19:03] [PASSED] pf_negotiate_base_newer
[09:19:03] [PASSED] pf_negotiate_base_next
[09:19:03] [SKIPPED] pf_negotiate_base_older (no older minor)
[09:19:03] [PASSED] pf_negotiate_base_prev
[09:19:03] [PASSED] pf_negotiate_latest_match
[09:19:03] [PASSED] pf_negotiate_latest_newer
[09:19:03] [PASSED] pf_negotiate_latest_next
[09:19:03] [SKIPPED] pf_negotiate_latest_older (no older minor)
[09:19:03] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[09:19:03] =================== [PASSED] pf_service ====================
[09:19:03] ================= xe_guc_g2g (2 subtests) ==================
[09:19:03] ============== xe_live_guc_g2g_kunit_default ==============
[09:19:03] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[09:19:03] ============== xe_live_guc_g2g_kunit_allmem ===============
[09:19:03] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[09:19:03] =================== [SKIPPED] xe_guc_g2g ===================
[09:19:03] =================== xe_mocs (2 subtests) ===================
[09:19:03] ================ xe_live_mocs_kernel_kunit ================
[09:19:03] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[09:19:03] ================ xe_live_mocs_reset_kunit =================
[09:19:03] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[09:19:03] ==================== [SKIPPED] xe_mocs =====================
[09:19:03] ================= xe_migrate (2 subtests) ==================
[09:19:03] ================= xe_migrate_sanity_kunit =================
[09:19:03] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[09:19:03] ================== xe_validate_ccs_kunit ==================
[09:19:03] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[09:19:03] =================== [SKIPPED] xe_migrate ===================
[09:19:03] ================== xe_dma_buf (1 subtest) ==================
[09:19:03] ==================== xe_dma_buf_kunit =====================
[09:19:03] ================ [SKIPPED] xe_dma_buf_kunit ================
[09:19:03] =================== [SKIPPED] xe_dma_buf ===================
[09:19:03] ================= xe_bo_shrink (1 subtest) =================
[09:19:03] =================== xe_bo_shrink_kunit ====================
[09:19:03] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[09:19:03] ================== [SKIPPED] xe_bo_shrink ==================
[09:19:03] ==================== xe_bo (2 subtests) ====================
[09:19:03] ================== xe_ccs_migrate_kunit ===================
[09:19:03] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[09:19:03] ==================== xe_bo_evict_kunit ====================
[09:19:03] =============== [SKIPPED] xe_bo_evict_kunit ================
[09:19:03] ===================== [SKIPPED] xe_bo ======================
[09:19:03] ==================== args (13 subtests) ====================
[09:19:03] [PASSED] count_args_test
[09:19:03] [PASSED] call_args_example
[09:19:03] [PASSED] call_args_test
[09:19:03] [PASSED] drop_first_arg_example
[09:19:03] [PASSED] drop_first_arg_test
[09:19:03] [PASSED] first_arg_example
[09:19:03] [PASSED] first_arg_test
[09:19:03] [PASSED] last_arg_example
[09:19:03] [PASSED] last_arg_test
[09:19:03] [PASSED] pick_arg_example
[09:19:03] [PASSED] if_args_example
[09:19:03] [PASSED] if_args_test
[09:19:03] [PASSED] sep_comma_example
[09:19:03] ====================== [PASSED] args =======================
[09:19:03] =================== xe_pci (3 subtests) ====================
[09:19:03] ==================== check_graphics_ip ====================
[09:19:03] [PASSED] 12.00 Xe_LP
[09:19:03] [PASSED] 12.10 Xe_LP+
[09:19:03] [PASSED] 12.55 Xe_HPG
[09:19:03] [PASSED] 12.60 Xe_HPC
[09:19:03] [PASSED] 12.70 Xe_LPG
[09:19:03] [PASSED] 12.71 Xe_LPG
[09:19:03] [PASSED] 12.74 Xe_LPG+
[09:19:03] [PASSED] 20.01 Xe2_HPG
[09:19:03] [PASSED] 20.02 Xe2_HPG
[09:19:03] [PASSED] 20.04 Xe2_LPG
[09:19:03] [PASSED] 30.00 Xe3_LPG
[09:19:03] [PASSED] 30.01 Xe3_LPG
[09:19:03] [PASSED] 30.03 Xe3_LPG
[09:19:03] [PASSED] 30.04 Xe3_LPG
[09:19:03] [PASSED] 30.05 Xe3_LPG
[09:19:03] [PASSED] 35.10 Xe3p_LPG
[09:19:03] [PASSED] 35.11 Xe3p_XPC
[09:19:03] ================ [PASSED] check_graphics_ip ================
[09:19:03] ===================== check_media_ip ======================
[09:19:03] [PASSED] 12.00 Xe_M
[09:19:03] [PASSED] 12.55 Xe_HPM
[09:19:03] [PASSED] 13.00 Xe_LPM+
[09:19:03] [PASSED] 13.01 Xe2_HPM
[09:19:03] [PASSED] 20.00 Xe2_LPM
[09:19:03] [PASSED] 30.00 Xe3_LPM
[09:19:03] [PASSED] 30.02 Xe3_LPM
[09:19:03] [PASSED] 35.00 Xe3p_LPM
[09:19:03] [PASSED] 35.03 Xe3p_HPM
[09:19:03] ================= [PASSED] check_media_ip ==================
[09:19:03] =================== check_platform_desc ===================
[09:19:03] [PASSED] 0x9A60 (TIGERLAKE)
[09:19:03] [PASSED] 0x9A68 (TIGERLAKE)
[09:19:03] [PASSED] 0x9A70 (TIGERLAKE)
[09:19:03] [PASSED] 0x9A40 (TIGERLAKE)
[09:19:03] [PASSED] 0x9A49 (TIGERLAKE)
[09:19:03] [PASSED] 0x9A59 (TIGERLAKE)
[09:19:03] [PASSED] 0x9A78 (TIGERLAKE)
[09:19:03] [PASSED] 0x9AC0 (TIGERLAKE)
[09:19:03] [PASSED] 0x9AC9 (TIGERLAKE)
[09:19:03] [PASSED] 0x9AD9 (TIGERLAKE)
[09:19:03] [PASSED] 0x9AF8 (TIGERLAKE)
[09:19:03] [PASSED] 0x4C80 (ROCKETLAKE)
[09:19:03] [PASSED] 0x4C8A (ROCKETLAKE)
[09:19:03] [PASSED] 0x4C8B (ROCKETLAKE)
[09:19:03] [PASSED] 0x4C8C (ROCKETLAKE)
[09:19:03] [PASSED] 0x4C90 (ROCKETLAKE)
[09:19:03] [PASSED] 0x4C9A (ROCKETLAKE)
[09:19:03] [PASSED] 0x4680 (ALDERLAKE_S)
[09:19:03] [PASSED] 0x4682 (ALDERLAKE_S)
[09:19:03] [PASSED] 0x4688 (ALDERLAKE_S)
[09:19:03] [PASSED] 0x468A (ALDERLAKE_S)
[09:19:03] [PASSED] 0x468B (ALDERLAKE_S)
[09:19:03] [PASSED] 0x4690 (ALDERLAKE_S)
[09:19:03] [PASSED] 0x4692 (ALDERLAKE_S)
[09:19:03] [PASSED] 0x4693 (ALDERLAKE_S)
[09:19:03] [PASSED] 0x46A0 (ALDERLAKE_P)
[09:19:03] [PASSED] 0x46A1 (ALDERLAKE_P)
[09:19:03] [PASSED] 0x46A2 (ALDERLAKE_P)
[09:19:03] [PASSED] 0x46A3 (ALDERLAKE_P)
[09:19:03] [PASSED] 0x46A6 (ALDERLAKE_P)
[09:19:03] [PASSED] 0x46A8 (ALDERLAKE_P)
[09:19:03] [PASSED] 0x46AA (ALDERLAKE_P)
[09:19:03] [PASSED] 0x462A (ALDERLAKE_P)
[09:19:03] [PASSED] 0x4626 (ALDERLAKE_P)
[09:19:03] [PASSED] 0x4628 (ALDERLAKE_P)
[09:19:03] [PASSED] 0x46B0 (ALDERLAKE_P)
[09:19:03] [PASSED] 0x46B1 (ALDERLAKE_P)
[09:19:03] [PASSED] 0x46B2 (ALDERLAKE_P)
[09:19:03] [PASSED] 0x46B3 (ALDERLAKE_P)
[09:19:03] [PASSED] 0x46C0 (ALDERLAKE_P)
[09:19:03] [PASSED] 0x46C1 (ALDERLAKE_P)
[09:19:03] [PASSED] 0x46C2 (ALDERLAKE_P)
[09:19:03] [PASSED] 0x46C3 (ALDERLAKE_P)
[09:19:03] [PASSED] 0x46D0 (ALDERLAKE_N)
[09:19:03] [PASSED] 0x46D1 (ALDERLAKE_N)
[09:19:03] [PASSED] 0x46D2 (ALDERLAKE_N)
[09:19:03] [PASSED] 0x46D3 (ALDERLAKE_N)
[09:19:03] [PASSED] 0x46D4 (ALDERLAKE_N)
[09:19:03] [PASSED] 0xA721 (ALDERLAKE_P)
[09:19:03] [PASSED] 0xA7A1 (ALDERLAKE_P)
[09:19:03] [PASSED] 0xA7A9 (ALDERLAKE_P)
[09:19:03] [PASSED] 0xA7AC (ALDERLAKE_P)
[09:19:03] [PASSED] 0xA7AD (ALDERLAKE_P)
[09:19:03] [PASSED] 0xA720 (ALDERLAKE_P)
[09:19:03] [PASSED] 0xA7A0 (ALDERLAKE_P)
[09:19:03] [PASSED] 0xA7A8 (ALDERLAKE_P)
[09:19:03] [PASSED] 0xA7AA (ALDERLAKE_P)
[09:19:03] [PASSED] 0xA7AB (ALDERLAKE_P)
[09:19:03] [PASSED] 0xA780 (ALDERLAKE_S)
[09:19:03] [PASSED] 0xA781 (ALDERLAKE_S)
[09:19:03] [PASSED] 0xA782 (ALDERLAKE_S)
[09:19:03] [PASSED] 0xA783 (ALDERLAKE_S)
[09:19:03] [PASSED] 0xA788 (ALDERLAKE_S)
[09:19:03] [PASSED] 0xA789 (ALDERLAKE_S)
[09:19:03] [PASSED] 0xA78A (ALDERLAKE_S)
[09:19:03] [PASSED] 0xA78B (ALDERLAKE_S)
[09:19:03] [PASSED] 0x4905 (DG1)
[09:19:03] [PASSED] 0x4906 (DG1)
[09:19:03] [PASSED] 0x4907 (DG1)
[09:19:03] [PASSED] 0x4908 (DG1)
[09:19:03] [PASSED] 0x4909 (DG1)
[09:19:03] [PASSED] 0x56C0 (DG2)
[09:19:03] [PASSED] 0x56C2 (DG2)
[09:19:03] [PASSED] 0x56C1 (DG2)
[09:19:03] [PASSED] 0x7D51 (METEORLAKE)
[09:19:03] [PASSED] 0x7DD1 (METEORLAKE)
[09:19:03] [PASSED] 0x7D41 (METEORLAKE)
[09:19:03] [PASSED] 0x7D67 (METEORLAKE)
[09:19:03] [PASSED] 0xB640 (METEORLAKE)
[09:19:03] [PASSED] 0x56A0 (DG2)
[09:19:03] [PASSED] 0x56A1 (DG2)
[09:19:03] [PASSED] 0x56A2 (DG2)
[09:19:03] [PASSED] 0x56BE (DG2)
[09:19:03] [PASSED] 0x56BF (DG2)
[09:19:03] [PASSED] 0x5690 (DG2)
[09:19:03] [PASSED] 0x5691 (DG2)
[09:19:03] [PASSED] 0x5692 (DG2)
[09:19:03] [PASSED] 0x56A5 (DG2)
[09:19:03] [PASSED] 0x56A6 (DG2)
[09:19:03] [PASSED] 0x56B0 (DG2)
[09:19:03] [PASSED] 0x56B1 (DG2)
[09:19:03] [PASSED] 0x56BA (DG2)
[09:19:03] [PASSED] 0x56BB (DG2)
[09:19:03] [PASSED] 0x56BC (DG2)
[09:19:03] [PASSED] 0x56BD (DG2)
[09:19:03] [PASSED] 0x5693 (DG2)
[09:19:03] [PASSED] 0x5694 (DG2)
[09:19:03] [PASSED] 0x5695 (DG2)
[09:19:03] [PASSED] 0x56A3 (DG2)
[09:19:03] [PASSED] 0x56A4 (DG2)
[09:19:03] [PASSED] 0x56B2 (DG2)
[09:19:03] [PASSED] 0x56B3 (DG2)
[09:19:03] [PASSED] 0x5696 (DG2)
[09:19:03] [PASSED] 0x5697 (DG2)
[09:19:03] [PASSED] 0xB69 (PVC)
[09:19:03] [PASSED] 0xB6E (PVC)
[09:19:03] [PASSED] 0xBD4 (PVC)
[09:19:03] [PASSED] 0xBD5 (PVC)
[09:19:03] [PASSED] 0xBD6 (PVC)
[09:19:03] [PASSED] 0xBD7 (PVC)
[09:19:03] [PASSED] 0xBD8 (PVC)
[09:19:03] [PASSED] 0xBD9 (PVC)
[09:19:03] [PASSED] 0xBDA (PVC)
[09:19:03] [PASSED] 0xBDB (PVC)
[09:19:03] [PASSED] 0xBE0 (PVC)
[09:19:03] [PASSED] 0xBE1 (PVC)
[09:19:03] [PASSED] 0xBE5 (PVC)
[09:19:03] [PASSED] 0x7D40 (METEORLAKE)
[09:19:03] [PASSED] 0x7D45 (METEORLAKE)
[09:19:03] [PASSED] 0x7D55 (METEORLAKE)
[09:19:03] [PASSED] 0x7D60 (METEORLAKE)
[09:19:03] [PASSED] 0x7DD5 (METEORLAKE)
[09:19:03] [PASSED] 0x6420 (LUNARLAKE)
[09:19:03] [PASSED] 0x64A0 (LUNARLAKE)
[09:19:03] [PASSED] 0x64B0 (LUNARLAKE)
[09:19:03] [PASSED] 0xE202 (BATTLEMAGE)
[09:19:03] [PASSED] 0xE209 (BATTLEMAGE)
[09:19:03] [PASSED] 0xE20B (BATTLEMAGE)
[09:19:03] [PASSED] 0xE20C (BATTLEMAGE)
[09:19:03] [PASSED] 0xE20D (BATTLEMAGE)
[09:19:03] [PASSED] 0xE210 (BATTLEMAGE)
[09:19:03] [PASSED] 0xE211 (BATTLEMAGE)
[09:19:03] [PASSED] 0xE212 (BATTLEMAGE)
[09:19:03] [PASSED] 0xE216 (BATTLEMAGE)
[09:19:03] [PASSED] 0xE220 (BATTLEMAGE)
[09:19:03] [PASSED] 0xE221 (BATTLEMAGE)
[09:19:03] [PASSED] 0xE222 (BATTLEMAGE)
[09:19:03] [PASSED] 0xE223 (BATTLEMAGE)
[09:19:03] [PASSED] 0xB080 (PANTHERLAKE)
[09:19:03] [PASSED] 0xB081 (PANTHERLAKE)
[09:19:03] [PASSED] 0xB082 (PANTHERLAKE)
[09:19:03] [PASSED] 0xB083 (PANTHERLAKE)
[09:19:03] [PASSED] 0xB084 (PANTHERLAKE)
[09:19:03] [PASSED] 0xB085 (PANTHERLAKE)
[09:19:03] [PASSED] 0xB086 (PANTHERLAKE)
[09:19:03] [PASSED] 0xB087 (PANTHERLAKE)
[09:19:03] [PASSED] 0xB08F (PANTHERLAKE)
[09:19:03] [PASSED] 0xB090 (PANTHERLAKE)
[09:19:03] [PASSED] 0xB0A0 (PANTHERLAKE)
[09:19:03] [PASSED] 0xB0B0 (PANTHERLAKE)
[09:19:03] [PASSED] 0xFD80 (PANTHERLAKE)
[09:19:03] [PASSED] 0xFD81 (PANTHERLAKE)
[09:19:03] [PASSED] 0xD740 (NOVALAKE_S)
[09:19:03] [PASSED] 0xD741 (NOVALAKE_S)
[09:19:03] [PASSED] 0xD742 (NOVALAKE_S)
[09:19:03] [PASSED] 0xD743 (NOVALAKE_S)
[09:19:03] [PASSED] 0xD745 (NOVALAKE_S)
[09:19:03] [PASSED] 0xD74A (NOVALAKE_S)
[09:19:03] [PASSED] 0xD74B (NOVALAKE_S)
[09:19:03] [PASSED] 0x674C (CRESCENTISLAND)
[09:19:03] [PASSED] 0x674D (CRESCENTISLAND)
[09:19:03] [PASSED] 0x674E (CRESCENTISLAND)
[09:19:03] [PASSED] 0x674F (CRESCENTISLAND)
[09:19:03] [PASSED] 0x6750 (CRESCENTISLAND)
[09:19:03] [PASSED] 0xD750 (NOVALAKE_P)
[09:19:03] [PASSED] 0xD751 (NOVALAKE_P)
[09:19:03] [PASSED] 0xD752 (NOVALAKE_P)
[09:19:03] [PASSED] 0xD753 (NOVALAKE_P)
[09:19:03] [PASSED] 0xD754 (NOVALAKE_P)
[09:19:03] [PASSED] 0xD755 (NOVALAKE_P)
[09:19:03] [PASSED] 0xD756 (NOVALAKE_P)
[09:19:03] [PASSED] 0xD757 (NOVALAKE_P)
[09:19:03] [PASSED] 0xD75F (NOVALAKE_P)
[09:19:03] =============== [PASSED] check_platform_desc ===============
[09:19:03] ===================== [PASSED] xe_pci ======================
[09:19:03] ============= xe_rtp_tables_test (5 subtests) ==============
[09:19:03] ================== xe_rtp_table_gt_test ===================
[09:19:03] [PASSED] gt_was/14011060649
[09:19:03] [PASSED] gt_was/14011059788
[09:19:03] [PASSED] gt_was/14015795083
[09:19:03] [PASSED] gt_was/16021867713
[09:19:03] [PASSED] gt_was/14019449301
[09:19:03] [PASSED] gt_was/16028005424
[09:19:03] [PASSED] gt_was/14026578760
[09:19:03] [PASSED] gt_was/1409420604
[09:19:03] [PASSED] gt_was/1408615072
[09:19:03] [PASSED] gt_was/22010523718
[09:19:03] [PASSED] gt_was/14011006942
[09:19:03] [PASSED] gt_was/14014830051
[09:19:03] [PASSED] gt_was/18018781329
[09:19:03] [PASSED] gt_was/1509235366
[09:19:03] [PASSED] gt_was/18018781329
[09:19:03] [PASSED] gt_was/16016694945
[09:19:03] [PASSED] gt_was/14018575942
[09:19:03] [PASSED] gt_was/22016670082
[09:19:03] [PASSED] gt_was/22016670082
[09:19:03] [PASSED] gt_was/14017421178
[09:19:03] [PASSED] gt_was/16025250150
[09:19:03] [PASSED] gt_was/14021871409
[09:19:03] [PASSED] gt_was/16021865536
[09:19:03] [PASSED] gt_was/14021486841
[09:19:03] [PASSED] gt_was/14025160223
[09:19:03] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[09:19:03] [PASSED] gt_was/14025635424
[09:19:03] [PASSED] gt_was/16028005424
[09:19:03] ============== [PASSED] xe_rtp_table_gt_test ===============
[09:19:03] ================== xe_rtp_table_gt_test ===================
[09:19:03] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[09:19:03] [PASSED] gt_tunings/Tuning: 32B Access Enable
[09:19:03] [PASSED] gt_tunings/Tuning: L3 cache
[09:19:03] [PASSED] gt_tunings/Tuning: L3 cache - media
[09:19:03] [PASSED] gt_tunings/Tuning: Compression Overfetch
[09:19:03] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[09:19:03] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[09:19:03] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[09:19:03] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[09:19:03] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[09:19:03] [PASSED] gt_tunings/Tuning: Stateless compression control
[09:19:03] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[09:19:03] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[09:19:03] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[09:19:03] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[09:19:03] ============== [PASSED] xe_rtp_table_gt_test ===============
[09:19:03] ================== xe_rtp_table_oob_test ==================
[09:19:03] [PASSED] oob_was/1607983814
[09:19:03] [PASSED] oob_was/16010904313
[09:19:03] [PASSED] oob_was/18022495364
[09:19:03] [PASSED] oob_was/22012773006
[09:19:03] [PASSED] oob_was/14014475959
[09:19:03] [PASSED] oob_was/22011391025
[09:19:03] [PASSED] oob_was/22012727170
[09:19:03] [PASSED] oob_was/22012727685
[09:19:03] [PASSED] oob_was/22016596838
[09:19:03] [PASSED] oob_was/18020744125
[09:19:03] [PASSED] oob_was/1409600907
[09:19:03] [PASSED] oob_was/22014953428
[09:19:03] [PASSED] oob_was/16017236439
[09:19:03] [PASSED] oob_was/14019821291
[09:19:03] [PASSED] oob_was/14015076503
[09:19:03] [PASSED] oob_was/14018913170
[09:19:03] [PASSED] oob_was/14018094691
[09:19:03] [PASSED] oob_was/18024947630
[09:19:03] [PASSED] oob_was/16022287689
[09:19:03] [PASSED] oob_was/13011645652
[09:19:03] [PASSED] oob_was/14022293748
[09:19:03] [PASSED] oob_was/22019794406
[09:19:03] [PASSED] oob_was/22019338487
[09:19:03] [PASSED] oob_was/16023588340
[09:19:03] [PASSED] oob_was/14019789679
[09:19:03] [PASSED] oob_was/14022866841
[09:19:03] [PASSED] oob_was/16021333562
[09:19:03] [PASSED] oob_was/14016712196
[09:19:03] [PASSED] oob_was/14015568240
[09:19:03] [PASSED] oob_was/18013179988
[09:19:03] [PASSED] oob_was/1508761755
[09:19:03] [PASSED] oob_was/16023105232
[09:19:03] [PASSED] oob_was/16026508708
[09:19:03] [PASSED] oob_was/14020001231
[09:19:03] [PASSED] oob_was/16023683509
[09:19:03] [PASSED] oob_was/14025515070
[09:19:03] [PASSED] oob_was/15015404425_disable
[09:19:03] [PASSED] oob_was/16026007364
[09:19:03] [PASSED] oob_was/14020316580
[09:19:03] [PASSED] oob_was/14025883347
[09:19:03] [PASSED] oob_was/16029380221
[09:19:03] ============== [PASSED] xe_rtp_table_oob_test ==============
[09:19:03] ================ xe_rtp_table_dev_oob_test ================
[09:19:03] [PASSED] device_oob_was/22010954014
[09:19:03] [PASSED] device_oob_was/15015404425
[09:19:03] [PASSED] device_oob_was/22019338487_display
[09:19:03] [PASSED] device_oob_was/14022085890
[09:19:03] [PASSED] device_oob_was/14026539277
[09:19:03] [PASSED] device_oob_was/14026633728
[09:19:03] [PASSED] device_oob_was/14026746987
[09:19:03] [PASSED] device_oob_was/14026779378
[09:19:03] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[09:19:03] ========== xe_rtp_table_missing_upper_bound_test ==========
[09:19:03] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[09:19:03] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[09:19:03] [PASSED] register_whitelist/1806527549
[09:19:03] [PASSED] register_whitelist/allow_read_ctx_timestamp
[09:19:03] [PASSED] register_whitelist/allow_read_queue_timestamp
[09:19:03] [PASSED] register_whitelist/16014440446
[09:19:03] [PASSED] register_whitelist/16017236439
[09:19:03] [PASSED] register_whitelist/16020183090
[09:19:03] [PASSED] register_whitelist/14024997852
[09:19:03] [PASSED] register_whitelist/14024997852
[09:19:03] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[09:19:03] =============== [PASSED] xe_rtp_tables_test ================
[09:19:03] =================== xe_rtp (3 subtests) ====================
[09:19:03] =================== xe_rtp_rules_tests ====================
[09:19:03] [PASSED] no
[09:19:03] [PASSED] yes
[09:19:03] [PASSED] no-and-no
[09:19:03] [PASSED] no-and-yes
[09:19:03] [PASSED] yes-and-no
[09:19:03] [PASSED] yes-and-yes
[09:19:03] [PASSED] no-or-no
[09:19:03] [PASSED] no-or-yes
[09:19:03] [PASSED] yes-or-no
[09:19:03] [PASSED] yes-or-yes
[09:19:03] [PASSED] no-yes-or-yes-no
[09:19:03] [PASSED] no-yes-or-yes-yes
[09:19:03] [PASSED] yes-yes-or-no-yes
[09:19:03] [PASSED] yes-yes-or-yes-yes
[09:19:03] [PASSED] no-no-or-yes-or-no
[09:19:03] [PASSED] or
[09:19:03] [PASSED] or-yes
[09:19:03] [PASSED] or-no
[09:19:03] [PASSED] yes-or
[09:19:03] [PASSED] no-or
[09:19:03] [PASSED] no-or-or-yes
[09:19:03] [PASSED] yes-or-or-no
[09:19:03] [PASSED] no-or-or-no
[09:19:03] [PASSED] missing-context-engine-class
[09:19:03] [PASSED] missing-context-engine-class-or-yes
[09:19:03] [PASSED] missing-context-engine-class-or-or-yes
[09:19:03] =============== [PASSED] xe_rtp_rules_tests ================
[09:19:03] =============== xe_rtp_process_to_sr_tests ================
[09:19:03] [PASSED] coalesce-same-reg
[09:19:03] [PASSED] coalesce-same-reg-literal-and-func
[09:19:03] [PASSED] no-match-no-add
[09:19:03] [PASSED] two-regs-two-entries
[09:19:03] [PASSED] clr-one-set-other
[09:19:03] [PASSED] set-field
[09:19:03] [PASSED] conflict-duplicate
[09:19:03] [PASSED] conflict-not-disjoint
[09:19:03] [PASSED] conflict-not-disjoint-literal-and-func
[09:19:03] [PASSED] conflict-reg-type
[09:19:03] [PASSED] bad-mcr-reg-forced-to-regular
[09:19:03] [PASSED] bad-regular-reg-forced-to-mcr
[09:19:03] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[09:19:03] ================== xe_rtp_process_tests ===================
[09:19:03] [PASSED] active1
[09:19:03] [PASSED] active2
[09:19:03] [PASSED] active-inactive
[09:19:03] [PASSED] inactive-active
[09:19:03] [PASSED] inactive-active-inactive
[09:19:03] [PASSED] inactive-inactive-inactive
[09:19:03] ============== [PASSED] xe_rtp_process_tests ===============
[09:19:03] ===================== [PASSED] xe_rtp ======================
[09:19:03] ==================== xe_wa (1 subtest) =====================
[09:19:03] ======================== xe_wa_gt =========================
[09:19:03] [PASSED] TIGERLAKE B0
[09:19:03] [PASSED] DG1 A0
[09:19:03] [PASSED] DG1 B0
[09:19:03] [PASSED] ALDERLAKE_S A0
[09:19:03] [PASSED] ALDERLAKE_S B0
[09:19:03] [PASSED] ALDERLAKE_S C0
[09:19:03] [PASSED] ALDERLAKE_S D0
[09:19:03] [PASSED] ALDERLAKE_P A0
[09:19:03] [PASSED] ALDERLAKE_P B0
[09:19:03] [PASSED] ALDERLAKE_P C0
[09:19:03] [PASSED] ALDERLAKE_S RPLS D0
[09:19:03] [PASSED] ALDERLAKE_P RPLU E0
[09:19:03] [PASSED] DG2 G10 C0
[09:19:03] [PASSED] DG2 G11 B1
[09:19:03] [PASSED] DG2 G12 A1
[09:19:03] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[09:19:03] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[09:19:03] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[09:19:03] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[09:19:03] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[09:19:03] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[09:19:03] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[09:19:03] ==================== [PASSED] xe_wa_gt =====================
[09:19:03] ====================== [PASSED] xe_wa ======================
[09:19:03] ============================================================
[09:19:03] Testing complete. Ran 729 tests: passed: 711, skipped: 18
[09:19:03] Elapsed time: 40.688s total, 4.401s configuring, 35.572s building, 0.676s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[09:19:03] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:19:05] 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
[09:19:30] Starting KUnit Kernel (1/1)...
[09:19:30] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:19:30] ============ drm_test_pick_cmdline (2 subtests) ============
[09:19:30] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[09:19:30] =============== drm_test_pick_cmdline_named ===============
[09:19:30] [PASSED] NTSC
[09:19:30] [PASSED] NTSC-J
[09:19:30] [PASSED] PAL
[09:19:30] [PASSED] PAL-M
[09:19:30] =========== [PASSED] drm_test_pick_cmdline_named ===========
[09:19:30] ============== [PASSED] drm_test_pick_cmdline ==============
[09:19:30] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[09:19:30] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[09:19:30] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[09:19:30] =========== drm_validate_clone_mode (2 subtests) ===========
[09:19:30] ============== drm_test_check_in_clone_mode ===============
[09:19:30] [PASSED] in_clone_mode
[09:19:30] [PASSED] not_in_clone_mode
[09:19:30] ========== [PASSED] drm_test_check_in_clone_mode ===========
[09:19:30] =============== drm_test_check_valid_clones ===============
[09:19:30] [PASSED] not_in_clone_mode
[09:19:30] [PASSED] valid_clone
[09:19:30] [PASSED] invalid_clone
[09:19:30] =========== [PASSED] drm_test_check_valid_clones ===========
[09:19:30] ============= [PASSED] drm_validate_clone_mode =============
[09:19:30] ============= drm_validate_modeset (1 subtest) =============
[09:19:30] [PASSED] drm_test_check_connector_changed_modeset
[09:19:30] ============== [PASSED] drm_validate_modeset ===============
[09:19:30] ====== drm_test_bridge_get_current_state (2 subtests) ======
[09:19:30] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[09:19:30] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[09:19:30] ======== [PASSED] drm_test_bridge_get_current_state ========
[09:19:30] ====== drm_test_bridge_helper_reset_crtc (4 subtests) ======
[09:19:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[09:19:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[09:19:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[09:19:30] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[09:19:30] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[09:19:30] ============== drm_bridge_alloc (2 subtests) ===============
[09:19:30] [PASSED] drm_test_drm_bridge_alloc_basic
[09:19:30] [PASSED] drm_test_drm_bridge_alloc_get_put
[09:19:30] ================ [PASSED] drm_bridge_alloc =================
[09:19:30] ============= drm_bridge_bus_fmt (5 subtests) ==============
[09:19:30] [PASSED] drm_test_bridge_rgb_yuv_rgb
[09:19:30] [PASSED] drm_test_bridge_must_convert_to_yuv444
[09:19:30] [PASSED] drm_test_bridge_hdmi_auto_rgb
[09:19:30] [PASSED] drm_test_bridge_auto_first
[09:19:30] [PASSED] drm_test_bridge_rgb_yuv_no_path
[09:19:30] =============== [PASSED] drm_bridge_bus_fmt ================
[09:19:30] ============= drm_cmdline_parser (40 subtests) =============
[09:19:30] [PASSED] drm_test_cmdline_force_d_only
[09:19:30] [PASSED] drm_test_cmdline_force_D_only_dvi
[09:19:30] [PASSED] drm_test_cmdline_force_D_only_hdmi
[09:19:30] [PASSED] drm_test_cmdline_force_D_only_not_digital
[09:19:30] [PASSED] drm_test_cmdline_force_e_only
[09:19:30] [PASSED] drm_test_cmdline_res
[09:19:30] [PASSED] drm_test_cmdline_res_vesa
[09:19:30] [PASSED] drm_test_cmdline_res_vesa_rblank
[09:19:30] [PASSED] drm_test_cmdline_res_rblank
[09:19:30] [PASSED] drm_test_cmdline_res_bpp
[09:19:30] [PASSED] drm_test_cmdline_res_refresh
[09:19:30] [PASSED] drm_test_cmdline_res_bpp_refresh
[09:19:30] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[09:19:30] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[09:19:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[09:19:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[09:19:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[09:19:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[09:19:30] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[09:19:30] [PASSED] drm_test_cmdline_res_margins_force_on
[09:19:30] [PASSED] drm_test_cmdline_res_vesa_margins
[09:19:30] [PASSED] drm_test_cmdline_name
[09:19:30] [PASSED] drm_test_cmdline_name_bpp
[09:19:30] [PASSED] drm_test_cmdline_name_option
[09:19:30] [PASSED] drm_test_cmdline_name_bpp_option
[09:19:30] [PASSED] drm_test_cmdline_rotate_0
[09:19:30] [PASSED] drm_test_cmdline_rotate_90
[09:19:30] [PASSED] drm_test_cmdline_rotate_180
[09:19:30] [PASSED] drm_test_cmdline_rotate_270
[09:19:30] [PASSED] drm_test_cmdline_hmirror
[09:19:30] [PASSED] drm_test_cmdline_vmirror
[09:19:30] [PASSED] drm_test_cmdline_margin_options
[09:19:30] [PASSED] drm_test_cmdline_multiple_options
[09:19:30] [PASSED] drm_test_cmdline_bpp_extra_and_option
[09:19:30] [PASSED] drm_test_cmdline_extra_and_option
[09:19:30] [PASSED] drm_test_cmdline_freestanding_options
[09:19:30] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[09:19:30] [PASSED] drm_test_cmdline_panel_orientation
[09:19:30] ================ drm_test_cmdline_invalid =================
[09:19:30] [PASSED] margin_only
[09:19:30] [PASSED] interlace_only
[09:19:30] [PASSED] res_missing_x
[09:19:30] [PASSED] res_missing_y
[09:19:30] [PASSED] res_bad_y
[09:19:30] [PASSED] res_missing_y_bpp
[09:19:30] [PASSED] res_bad_bpp
[09:19:30] [PASSED] res_bad_refresh
[09:19:30] [PASSED] res_bpp_refresh_force_on_off
[09:19:30] [PASSED] res_invalid_mode
[09:19:30] [PASSED] res_bpp_wrong_place_mode
[09:19:30] [PASSED] name_bpp_refresh
[09:19:30] [PASSED] name_refresh
[09:19:30] [PASSED] name_refresh_wrong_mode
[09:19:30] [PASSED] name_refresh_invalid_mode
[09:19:30] [PASSED] rotate_multiple
[09:19:30] [PASSED] rotate_invalid_val
[09:19:30] [PASSED] rotate_truncated
[09:19:30] [PASSED] invalid_option
[09:19:30] [PASSED] invalid_tv_option
[09:19:30] [PASSED] truncated_tv_option
[09:19:30] ============ [PASSED] drm_test_cmdline_invalid =============
[09:19:30] =============== drm_test_cmdline_tv_options ===============
[09:19:30] [PASSED] NTSC
[09:19:30] [PASSED] NTSC_443
[09:19:30] [PASSED] NTSC_J
[09:19:30] [PASSED] PAL
[09:19:30] [PASSED] PAL_M
[09:19:30] [PASSED] PAL_N
[09:19:30] [PASSED] SECAM
[09:19:30] [PASSED] MONO_525
[09:19:30] [PASSED] MONO_625
[09:19:30] =========== [PASSED] drm_test_cmdline_tv_options ===========
[09:19:30] =============== [PASSED] drm_cmdline_parser ================
[09:19:30] ========== drmm_connector_hdmi_init (20 subtests) ==========
[09:19:30] [PASSED] drm_test_connector_hdmi_init_valid
[09:19:30] [PASSED] drm_test_connector_hdmi_init_bpc_8
[09:19:30] [PASSED] drm_test_connector_hdmi_init_bpc_10
[09:19:30] [PASSED] drm_test_connector_hdmi_init_bpc_12
[09:19:30] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[09:19:30] [PASSED] drm_test_connector_hdmi_init_bpc_null
[09:19:30] [PASSED] drm_test_connector_hdmi_init_formats_empty
[09:19:30] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[09:19:30] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[09:19:30] [PASSED] supported_formats=0x9 yuv420_allowed=1
[09:19:30] [PASSED] supported_formats=0x9 yuv420_allowed=0
[09:19:30] [PASSED] supported_formats=0x5 yuv420_allowed=1
[09:19:30] [PASSED] supported_formats=0x5 yuv420_allowed=0
[09:19:30] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[09:19:30] [PASSED] drm_test_connector_hdmi_init_null_ddc
[09:19:30] [PASSED] drm_test_connector_hdmi_init_null_product
[09:19:30] [PASSED] drm_test_connector_hdmi_init_null_vendor
[09:19:30] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[09:19:30] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[09:19:30] [PASSED] drm_test_connector_hdmi_init_product_valid
[09:19:30] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[09:19:30] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[09:19:30] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[09:19:30] ========= drm_test_connector_hdmi_init_type_valid =========
[09:19:30] [PASSED] HDMI-A
[09:19:30] [PASSED] HDMI-B
[09:19:30] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[09:19:30] ======== drm_test_connector_hdmi_init_type_invalid ========
[09:19:30] [PASSED] Unknown
[09:19:30] [PASSED] VGA
[09:19:30] [PASSED] DVI-I
[09:19:30] [PASSED] DVI-D
[09:19:30] [PASSED] DVI-A
[09:19:30] [PASSED] Composite
[09:19:30] [PASSED] SVIDEO
[09:19:30] [PASSED] LVDS
[09:19:30] [PASSED] Component
[09:19:30] [PASSED] DIN
[09:19:30] [PASSED] DP
[09:19:30] [PASSED] TV
[09:19:30] [PASSED] eDP
[09:19:30] [PASSED] Virtual
[09:19:30] [PASSED] DSI
[09:19:30] [PASSED] DPI
[09:19:30] [PASSED] Writeback
[09:19:30] [PASSED] SPI
[09:19:30] [PASSED] USB
[09:19:30] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[09:19:30] ============ [PASSED] drmm_connector_hdmi_init =============
[09:19:30] ============= drmm_connector_init (3 subtests) =============
[09:19:30] [PASSED] drm_test_drmm_connector_init
[09:19:30] [PASSED] drm_test_drmm_connector_init_null_ddc
[09:19:30] ========= drm_test_drmm_connector_init_type_valid =========
[09:19:30] [PASSED] Unknown
[09:19:30] [PASSED] VGA
[09:19:30] [PASSED] DVI-I
[09:19:30] [PASSED] DVI-D
[09:19:30] [PASSED] DVI-A
[09:19:30] [PASSED] Composite
[09:19:30] [PASSED] SVIDEO
[09:19:30] [PASSED] LVDS
[09:19:30] [PASSED] Component
[09:19:30] [PASSED] DIN
[09:19:30] [PASSED] DP
[09:19:30] [PASSED] HDMI-A
[09:19:30] [PASSED] HDMI-B
[09:19:30] [PASSED] TV
[09:19:30] [PASSED] eDP
[09:19:30] [PASSED] Virtual
[09:19:30] [PASSED] DSI
[09:19:30] [PASSED] DPI
[09:19:30] [PASSED] Writeback
[09:19:30] [PASSED] SPI
[09:19:30] [PASSED] USB
[09:19:30] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[09:19:30] =============== [PASSED] drmm_connector_init ===============
[09:19:30] ========= drm_connector_dynamic_init (6 subtests) ==========
[09:19:30] [PASSED] drm_test_drm_connector_dynamic_init
[09:19:30] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[09:19:30] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[09:19:30] [PASSED] drm_test_drm_connector_dynamic_init_properties
[09:19:30] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[09:19:30] [PASSED] Unknown
[09:19:30] [PASSED] VGA
[09:19:30] [PASSED] DVI-I
[09:19:30] [PASSED] DVI-D
[09:19:30] [PASSED] DVI-A
[09:19:30] [PASSED] Composite
[09:19:30] [PASSED] SVIDEO
[09:19:30] [PASSED] LVDS
[09:19:30] [PASSED] Component
[09:19:30] [PASSED] DIN
[09:19:30] [PASSED] DP
[09:19:30] [PASSED] HDMI-A
[09:19:30] [PASSED] HDMI-B
[09:19:30] [PASSED] TV
[09:19:30] [PASSED] eDP
[09:19:30] [PASSED] Virtual
[09:19:30] [PASSED] DSI
[09:19:30] [PASSED] DPI
[09:19:30] [PASSED] Writeback
[09:19:30] [PASSED] SPI
[09:19:30] [PASSED] USB
[09:19:30] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[09:19:30] ======== drm_test_drm_connector_dynamic_init_name =========
[09:19:30] [PASSED] Unknown
[09:19:30] [PASSED] VGA
[09:19:30] [PASSED] DVI-I
[09:19:30] [PASSED] DVI-D
[09:19:30] [PASSED] DVI-A
[09:19:30] [PASSED] Composite
[09:19:30] [PASSED] SVIDEO
[09:19:30] [PASSED] LVDS
[09:19:30] [PASSED] Component
[09:19:30] [PASSED] DIN
[09:19:30] [PASSED] DP
[09:19:30] [PASSED] HDMI-A
[09:19:30] [PASSED] HDMI-B
[09:19:30] [PASSED] TV
[09:19:30] [PASSED] eDP
[09:19:30] [PASSED] Virtual
[09:19:30] [PASSED] DSI
[09:19:30] [PASSED] DPI
[09:19:30] [PASSED] Writeback
[09:19:30] [PASSED] SPI
[09:19:30] [PASSED] USB
[09:19:30] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[09:19:30] =========== [PASSED] drm_connector_dynamic_init ============
[09:19:30] ==== drm_connector_dynamic_register_early (4 subtests) =====
[09:19:30] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[09:19:30] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[09:19:30] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[09:19:30] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[09:19:30] ====== [PASSED] drm_connector_dynamic_register_early =======
[09:19:30] ======= drm_connector_dynamic_register (7 subtests) ========
[09:19:30] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[09:19:30] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[09:19:30] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[09:19:30] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[09:19:30] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[09:19:30] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[09:19:30] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[09:19:30] ========= [PASSED] drm_connector_dynamic_register ==========
[09:19:30] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[09:19:30] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[09:19:30] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[09:19:30] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[09:19:30] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[09:19:30] ========== drm_test_get_tv_mode_from_name_valid ===========
[09:19:30] [PASSED] NTSC
[09:19:30] [PASSED] NTSC-443
[09:19:30] [PASSED] NTSC-J
[09:19:30] [PASSED] PAL
[09:19:30] [PASSED] PAL-M
[09:19:30] [PASSED] PAL-N
[09:19:30] [PASSED] SECAM
[09:19:30] [PASSED] Mono
[09:19:30] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[09:19:30] [PASSED] drm_test_get_tv_mode_from_name_truncated
[09:19:30] ============ [PASSED] drm_get_tv_mode_from_name ============
[09:19:30] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[09:19:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[09:19:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[09:19:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[09:19:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[09:19:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[09:19:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[09:19:30] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[09:19:30] [PASSED] VIC 96
[09:19:30] [PASSED] VIC 97
[09:19:30] [PASSED] VIC 101
[09:19:30] [PASSED] VIC 102
[09:19:30] [PASSED] VIC 106
[09:19:30] [PASSED] VIC 107
[09:19:30] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[09:19:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[09:19:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[09:19:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[09:19:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[09:19:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[09:19:30] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[09:19:30] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[09:19:30] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[09:19:30] [PASSED] Automatic
[09:19:30] [PASSED] Full
[09:19:30] [PASSED] Limited 16:235
[09:19:30] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[09:19:30] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[09:19:30] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[09:19:30] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[09:19:30] === drm_test_drm_hdmi_connector_get_output_format_name ====
[09:19:30] [PASSED] RGB
[09:19:30] [PASSED] YUV 4:2:0
[09:19:30] [PASSED] YUV 4:2:2
[09:19:30] [PASSED] YUV 4:4:4
[09:19:30] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[09:19:30] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[09:19:30] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[09:19:30] ============= drm_damage_helper (21 subtests) ==============
[09:19:30] [PASSED] drm_test_damage_iter_no_damage
[09:19:30] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[09:19:30] [PASSED] drm_test_damage_iter_no_damage_src_moved
[09:19:30] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[09:19:30] [PASSED] drm_test_damage_iter_no_damage_not_visible
[09:19:30] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[09:19:30] [PASSED] drm_test_damage_iter_no_damage_no_fb
[09:19:30] [PASSED] drm_test_damage_iter_simple_damage
[09:19:30] [PASSED] drm_test_damage_iter_single_damage
[09:19:30] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[09:19:30] [PASSED] drm_test_damage_iter_single_damage_outside_src
[09:19:30] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[09:19:30] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[09:19:30] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[09:19:30] [PASSED] drm_test_damage_iter_single_damage_src_moved
[09:19:30] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[09:19:30] [PASSED] drm_test_damage_iter_damage
[09:19:30] [PASSED] drm_test_damage_iter_damage_one_intersect
[09:19:30] [PASSED] drm_test_damage_iter_damage_one_outside
[09:19:30] [PASSED] drm_test_damage_iter_damage_src_moved
[09:19:30] [PASSED] drm_test_damage_iter_damage_not_visible
[09:19:30] ================ [PASSED] drm_damage_helper ================
[09:19:30] ============== drm_dp_mst_helper (3 subtests) ==============
[09:19:30] ============== drm_test_dp_mst_calc_pbn_mode ==============
[09:19:30] [PASSED] Clock 154000 BPP 30 DSC disabled
[09:19:30] [PASSED] Clock 234000 BPP 30 DSC disabled
[09:19:30] [PASSED] Clock 297000 BPP 24 DSC disabled
[09:19:30] [PASSED] Clock 332880 BPP 24 DSC enabled
[09:19:30] [PASSED] Clock 324540 BPP 24 DSC enabled
[09:19:30] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[09:19:30] ============== drm_test_dp_mst_calc_pbn_div ===============
[09:19:30] [PASSED] Link rate 2000000 lane count 4
[09:19:30] [PASSED] Link rate 2000000 lane count 2
[09:19:30] [PASSED] Link rate 2000000 lane count 1
[09:19:30] [PASSED] Link rate 1350000 lane count 4
[09:19:30] [PASSED] Link rate 1350000 lane count 2
[09:19:30] [PASSED] Link rate 1350000 lane count 1
[09:19:30] [PASSED] Link rate 1000000 lane count 4
[09:19:30] [PASSED] Link rate 1000000 lane count 2
[09:19:30] [PASSED] Link rate 1000000 lane count 1
[09:19:30] [PASSED] Link rate 810000 lane count 4
[09:19:30] [PASSED] Link rate 810000 lane count 2
[09:19:30] [PASSED] Link rate 810000 lane count 1
[09:19:30] [PASSED] Link rate 540000 lane count 4
[09:19:30] [PASSED] Link rate 540000 lane count 2
[09:19:30] [PASSED] Link rate 540000 lane count 1
[09:19:30] [PASSED] Link rate 270000 lane count 4
[09:19:30] [PASSED] Link rate 270000 lane count 2
[09:19:30] [PASSED] Link rate 270000 lane count 1
[09:19:30] [PASSED] Link rate 162000 lane count 4
[09:19:30] [PASSED] Link rate 162000 lane count 2
[09:19:30] [PASSED] Link rate 162000 lane count 1
[09:19:30] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[09:19:30] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[09:19:30] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[09:19:30] [PASSED] DP_POWER_UP_PHY with port number
[09:19:30] [PASSED] DP_POWER_DOWN_PHY with port number
[09:19:30] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[09:19:30] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[09:19:30] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[09:19:30] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[09:19:30] [PASSED] DP_QUERY_PAYLOAD with port number
[09:19:30] [PASSED] DP_QUERY_PAYLOAD with VCPI
[09:19:30] [PASSED] DP_REMOTE_DPCD_READ with port number
[09:19:30] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[09:19:30] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[09:19:30] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[09:19:30] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[09:19:30] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[09:19:30] [PASSED] DP_REMOTE_I2C_READ with port number
[09:19:30] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[09:19:30] [PASSED] DP_REMOTE_I2C_READ with transactions array
[09:19:30] [PASSED] DP_REMOTE_I2C_WRITE with port number
[09:19:30] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[09:19:30] [PASSED] DP_REMOTE_I2C_WRITE with data array
[09:19:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[09:19:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[09:19:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[09:19:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[09:19:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[09:19:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[09:19:30] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[09:19:30] ================ [PASSED] drm_dp_mst_helper ================
[09:19:30] ================== drm_exec (7 subtests) ===================
[09:19:30] [PASSED] sanitycheck
[09:19:30] [PASSED] test_lock
[09:19:30] [PASSED] test_lock_unlock
[09:19:30] [PASSED] test_duplicates
[09:19:30] [PASSED] test_prepare
[09:19:30] [PASSED] test_prepare_array
[09:19:30] [PASSED] test_multiple_loops
[09:19:30] ==================== [PASSED] drm_exec =====================
[09:19:30] =========== drm_format_helper_test (17 subtests) ===========
[09:19:30] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[09:19:30] [PASSED] single_pixel_source_buffer
[09:19:30] [PASSED] single_pixel_clip_rectangle
[09:19:30] [PASSED] well_known_colors
[09:19:30] [PASSED] destination_pitch
[09:19:30] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[09:19:30] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[09:19:30] [PASSED] single_pixel_source_buffer
[09:19:30] [PASSED] single_pixel_clip_rectangle
[09:19:30] [PASSED] well_known_colors
[09:19:30] [PASSED] destination_pitch
[09:19:30] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[09:19:30] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[09:19:30] [PASSED] single_pixel_source_buffer
[09:19:30] [PASSED] single_pixel_clip_rectangle
[09:19:30] [PASSED] well_known_colors
[09:19:30] [PASSED] destination_pitch
[09:19:30] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[09:19:30] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[09:19:30] [PASSED] single_pixel_source_buffer
[09:19:30] [PASSED] single_pixel_clip_rectangle
[09:19:30] [PASSED] well_known_colors
[09:19:30] [PASSED] destination_pitch
[09:19:30] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[09:19:30] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[09:19:30] [PASSED] single_pixel_source_buffer
[09:19:30] [PASSED] single_pixel_clip_rectangle
[09:19:30] [PASSED] well_known_colors
[09:19:30] [PASSED] destination_pitch
[09:19:30] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[09:19:30] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[09:19:30] [PASSED] single_pixel_source_buffer
[09:19:30] [PASSED] single_pixel_clip_rectangle
[09:19:30] [PASSED] well_known_colors
[09:19:30] [PASSED] destination_pitch
[09:19:30] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[09:19:30] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[09:19:30] [PASSED] single_pixel_source_buffer
[09:19:30] [PASSED] single_pixel_clip_rectangle
[09:19:30] [PASSED] well_known_colors
[09:19:30] [PASSED] destination_pitch
[09:19:30] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[09:19:30] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[09:19:30] [PASSED] single_pixel_source_buffer
[09:19:30] [PASSED] single_pixel_clip_rectangle
[09:19:30] [PASSED] well_known_colors
[09:19:30] [PASSED] destination_pitch
[09:19:30] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[09:19:30] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[09:19:30] [PASSED] single_pixel_source_buffer
[09:19:30] [PASSED] single_pixel_clip_rectangle
[09:19:30] [PASSED] well_known_colors
[09:19:30] [PASSED] destination_pitch
[09:19:30] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[09:19:30] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[09:19:30] [PASSED] single_pixel_source_buffer
[09:19:30] [PASSED] single_pixel_clip_rectangle
[09:19:30] [PASSED] well_known_colors
[09:19:30] [PASSED] destination_pitch
[09:19:30] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[09:19:30] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[09:19:30] [PASSED] single_pixel_source_buffer
[09:19:30] [PASSED] single_pixel_clip_rectangle
[09:19:30] [PASSED] well_known_colors
[09:19:30] [PASSED] destination_pitch
[09:19:30] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[09:19:30] ============== drm_test_fb_xrgb8888_to_mono ===============
[09:19:30] [PASSED] single_pixel_source_buffer
[09:19:30] [PASSED] single_pixel_clip_rectangle
[09:19:30] [PASSED] well_known_colors
[09:19:30] [PASSED] destination_pitch
[09:19:30] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[09:19:30] ==================== drm_test_fb_swab =====================
[09:19:30] [PASSED] single_pixel_source_buffer
[09:19:30] [PASSED] single_pixel_clip_rectangle
[09:19:30] [PASSED] well_known_colors
[09:19:30] [PASSED] destination_pitch
[09:19:30] ================ [PASSED] drm_test_fb_swab =================
[09:19:30] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[09:19:30] [PASSED] single_pixel_source_buffer
[09:19:30] [PASSED] single_pixel_clip_rectangle
[09:19:30] [PASSED] well_known_colors
[09:19:30] [PASSED] destination_pitch
[09:19:30] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[09:19:30] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[09:19:30] [PASSED] single_pixel_source_buffer
[09:19:30] [PASSED] single_pixel_clip_rectangle
[09:19:30] [PASSED] well_known_colors
[09:19:30] [PASSED] destination_pitch
[09:19:30] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[09:19:30] ================= drm_test_fb_clip_offset =================
[09:19:30] [PASSED] pass through
[09:19:30] [PASSED] horizontal offset
[09:19:30] [PASSED] vertical offset
[09:19:30] [PASSED] horizontal and vertical offset
[09:19:30] [PASSED] horizontal offset (custom pitch)
[09:19:30] [PASSED] vertical offset (custom pitch)
[09:19:30] [PASSED] horizontal and vertical offset (custom pitch)
[09:19:30] ============= [PASSED] drm_test_fb_clip_offset =============
[09:19:30] =================== drm_test_fb_memcpy ====================
[09:19:30] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[09:19:30] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[09:19:30] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[09:19:30] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[09:19:30] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[09:19:30] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[09:19:30] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[09:19:30] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[09:19:30] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[09:19:30] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[09:19:30] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[09:19:30] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[09:19:30] =============== [PASSED] drm_test_fb_memcpy ================
[09:19:30] ============= [PASSED] drm_format_helper_test ==============
[09:19:30] ================= drm_format (18 subtests) =================
[09:19:30] [PASSED] drm_test_format_block_width_invalid
[09:19:30] [PASSED] drm_test_format_block_width_one_plane
[09:19:30] [PASSED] drm_test_format_block_width_two_plane
[09:19:30] [PASSED] drm_test_format_block_width_three_plane
[09:19:30] [PASSED] drm_test_format_block_width_tiled
[09:19:30] [PASSED] drm_test_format_block_height_invalid
[09:19:30] [PASSED] drm_test_format_block_height_one_plane
[09:19:30] [PASSED] drm_test_format_block_height_two_plane
[09:19:30] [PASSED] drm_test_format_block_height_three_plane
[09:19:30] [PASSED] drm_test_format_block_height_tiled
[09:19:30] [PASSED] drm_test_format_min_pitch_invalid
[09:19:30] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[09:19:30] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[09:19:30] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[09:19:30] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[09:19:30] [PASSED] drm_test_format_min_pitch_two_plane
[09:19:30] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[09:19:30] [PASSED] drm_test_format_min_pitch_tiled
[09:19:30] =================== [PASSED] drm_format ====================
[09:19:30] ============== drm_framebuffer (10 subtests) ===============
[09:19:30] ========== drm_test_framebuffer_check_src_coords ==========
[09:19:30] [PASSED] Success: source fits into fb
[09:19:30] [PASSED] Fail: overflowing fb with x-axis coordinate
[09:19:30] [PASSED] Fail: overflowing fb with y-axis coordinate
[09:19:30] [PASSED] Fail: overflowing fb with source width
[09:19:30] [PASSED] Fail: overflowing fb with source height
[09:19:30] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[09:19:30] [PASSED] drm_test_framebuffer_cleanup
[09:19:30] =============== drm_test_framebuffer_create ===============
[09:19:30] [PASSED] ABGR8888 normal sizes
[09:19:30] [PASSED] ABGR8888 max sizes
[09:19:30] [PASSED] ABGR8888 pitch greater than min required
[09:19:30] [PASSED] ABGR8888 pitch less than min required
[09:19:30] [PASSED] ABGR8888 Invalid width
[09:19:30] [PASSED] ABGR8888 Invalid buffer handle
[09:19:30] [PASSED] No pixel format
[09:19:30] [PASSED] ABGR8888 Width 0
[09:19:30] [PASSED] ABGR8888 Height 0
[09:19:30] [PASSED] ABGR8888 Out of bound height * pitch combination
[09:19:30] [PASSED] ABGR8888 Large buffer offset
[09:19:30] [PASSED] ABGR8888 Buffer offset for inexistent plane
[09:19:30] [PASSED] ABGR8888 Invalid flag
[09:19:30] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[09:19:30] [PASSED] ABGR8888 Valid buffer modifier
[09:19:30] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[09:19:30] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[09:19:30] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[09:19:30] [PASSED] NV12 Normal sizes
[09:19:30] [PASSED] NV12 Max sizes
[09:19:30] [PASSED] NV12 Invalid pitch
[09:19:30] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[09:19:30] [PASSED] NV12 different modifier per-plane
[09:19:30] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[09:19:30] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[09:19:30] [PASSED] NV12 Modifier for inexistent plane
[09:19:30] [PASSED] NV12 Handle for inexistent plane
[09:19:30] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[09:19:30] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[09:19:30] [PASSED] YVU420 Normal sizes
[09:19:30] [PASSED] YVU420 Max sizes
[09:19:30] [PASSED] YVU420 Invalid pitch
[09:19:30] [PASSED] YVU420 Different pitches
[09:19:30] [PASSED] YVU420 Different buffer offsets/pitches
[09:19:30] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[09:19:30] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[09:19:30] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[09:19:30] [PASSED] YVU420 Valid modifier
[09:19:30] [PASSED] YVU420 Different modifiers per plane
[09:19:30] [PASSED] YVU420 Modifier for inexistent plane
[09:19:30] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[09:19:30] [PASSED] X0L2 Normal sizes
[09:19:30] [PASSED] X0L2 Max sizes
[09:19:30] [PASSED] X0L2 Invalid pitch
[09:19:30] [PASSED] X0L2 Pitch greater than minimum required
[09:19:30] [PASSED] X0L2 Handle for inexistent plane
[09:19:30] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[09:19:30] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[09:19:30] [PASSED] X0L2 Valid modifier
[09:19:30] [PASSED] X0L2 Modifier for inexistent plane
[09:19:30] =========== [PASSED] drm_test_framebuffer_create ===========
[09:19:30] [PASSED] drm_test_framebuffer_free
[09:19:30] [PASSED] drm_test_framebuffer_init
[09:19:30] [PASSED] drm_test_framebuffer_init_bad_format
[09:19:30] [PASSED] drm_test_framebuffer_init_dev_mismatch
[09:19:30] [PASSED] drm_test_framebuffer_lookup
[09:19:30] [PASSED] drm_test_framebuffer_lookup_inexistent
[09:19:30] [PASSED] drm_test_framebuffer_modifiers_not_supported
[09:19:30] ================= [PASSED] drm_framebuffer =================
[09:19:30] ================ drm_gem_shmem (8 subtests) ================
[09:19:30] [PASSED] drm_gem_shmem_test_obj_create
[09:19:30] [PASSED] drm_gem_shmem_test_obj_create_private
[09:19:30] [PASSED] drm_gem_shmem_test_pin_pages
[09:19:30] [PASSED] drm_gem_shmem_test_vmap
[09:19:30] [PASSED] drm_gem_shmem_test_get_sg_table
[09:19:30] [PASSED] drm_gem_shmem_test_get_pages_sgt
[09:19:30] [PASSED] drm_gem_shmem_test_madvise
[09:19:30] [PASSED] drm_gem_shmem_test_purge
[09:19:30] ================== [PASSED] drm_gem_shmem ==================
[09:19:30] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[09:19:30] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[09:19:30] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[09:19:30] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[09:19:30] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[09:19:30] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[09:19:30] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[09:19:30] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[09:19:30] [PASSED] Automatic
[09:19:30] [PASSED] Full
[09:19:30] [PASSED] Limited 16:235
[09:19:30] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[09:19:30] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[09:19:30] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[09:19:30] [PASSED] drm_test_check_disable_connector
[09:19:30] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[09:19:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[09:19:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[09:19:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[09:19:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[09:19:30] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[09:19:30] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[09:19:30] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[09:19:30] [PASSED] drm_test_check_output_bpc_dvi
[09:19:30] [PASSED] drm_test_check_output_bpc_format_vic_1
[09:19:30] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[09:19:30] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[09:19:30] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[09:19:30] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[09:19:30] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[09:19:30] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[09:19:30] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[09:19:30] ============ drm_test_check_hdmi_color_format =============
[09:19:30] [PASSED] AUTO -> RGB
[09:19:30] [PASSED] YCBCR422 -> YUV422
[09:19:30] [PASSED] YCBCR420 -> YUV420
[09:19:30] [PASSED] YCBCR444 -> YUV444
[09:19:30] [PASSED] RGB -> RGB
[09:19:30] ======== [PASSED] drm_test_check_hdmi_color_format =========
[09:19:30] ======== drm_test_check_hdmi_color_format_420_only ========
[09:19:30] [PASSED] RGB should fail
[09:19:30] [PASSED] YUV444 should fail
[09:19:30] [PASSED] YUV422 should fail
[09:19:30] [PASSED] YUV420 should work
[09:19:30] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[09:19:30] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[09:19:30] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[09:19:30] [PASSED] drm_test_check_broadcast_rgb_value
[09:19:30] [PASSED] drm_test_check_bpc_8_value
[09:19:30] [PASSED] drm_test_check_bpc_10_value
[09:19:30] [PASSED] drm_test_check_bpc_12_value
[09:19:30] [PASSED] drm_test_check_format_value
[09:19:30] [PASSED] drm_test_check_tmds_char_value
[09:19:30] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[09:19:30] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[09:19:30] [PASSED] drm_test_check_mode_valid
[09:19:30] [PASSED] drm_test_check_mode_valid_reject
[09:19:30] [PASSED] drm_test_check_mode_valid_reject_rate
[09:19:30] [PASSED] drm_test_check_mode_valid_reject_max_clock
[09:19:30] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[09:19:30] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[09:19:30] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[09:19:30] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[09:19:30] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[09:19:30] [PASSED] drm_test_check_infoframes
[09:19:30] [PASSED] drm_test_check_reject_avi_infoframe
[09:19:30] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[09:19:30] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[09:19:30] [PASSED] drm_test_check_reject_audio_infoframe
[09:19:30] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[09:19:30] ================= drm_managed (2 subtests) =================
[09:19:30] [PASSED] drm_test_managed_release_action
[09:19:30] [PASSED] drm_test_managed_run_action
[09:19:30] =================== [PASSED] drm_managed ===================
[09:19:30] =================== drm_mm (6 subtests) ====================
[09:19:30] [PASSED] drm_test_mm_init
[09:19:30] [PASSED] drm_test_mm_debug
[09:19:30] [PASSED] drm_test_mm_align32
[09:19:30] [PASSED] drm_test_mm_align64
[09:19:30] [PASSED] drm_test_mm_lowest
[09:19:30] [PASSED] drm_test_mm_highest
[09:19:30] ===================== [PASSED] drm_mm ======================
[09:19:30] ============= drm_modes_analog_tv (5 subtests) =============
[09:19:30] [PASSED] drm_test_modes_analog_tv_mono_576i
[09:19:30] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[09:19:30] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[09:19:30] [PASSED] drm_test_modes_analog_tv_pal_576i
[09:19:30] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[09:19:30] =============== [PASSED] drm_modes_analog_tv ===============
[09:19:30] ============== drm_plane_helper (2 subtests) ===============
[09:19:30] =============== drm_test_check_plane_state ================
[09:19:30] [PASSED] clipping_simple
[09:19:30] [PASSED] clipping_rotate_reflect
[09:19:30] [PASSED] positioning_simple
[09:19:30] [PASSED] upscaling
[09:19:30] [PASSED] downscaling
[09:19:30] [PASSED] rounding1
[09:19:30] [PASSED] rounding2
[09:19:30] [PASSED] rounding3
[09:19:30] [PASSED] rounding4
[09:19:30] =========== [PASSED] drm_test_check_plane_state ============
[09:19:30] =========== drm_test_check_invalid_plane_state ============
[09:19:30] [PASSED] positioning_invalid
[09:19:30] [PASSED] upscaling_invalid
[09:19:30] [PASSED] downscaling_invalid
[09:19:30] ======= [PASSED] drm_test_check_invalid_plane_state ========
[09:19:30] ================ [PASSED] drm_plane_helper =================
[09:19:30] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[09:19:30] ====== drm_test_connector_helper_tv_get_modes_check =======
[09:19:30] [PASSED] None
[09:19:30] [PASSED] PAL
[09:19:30] [PASSED] NTSC
[09:19:30] [PASSED] Both, NTSC Default
[09:19:30] [PASSED] Both, PAL Default
[09:19:30] [PASSED] Both, NTSC Default, with PAL on command-line
[09:19:30] [PASSED] Both, PAL Default, with NTSC on command-line
[09:19:30] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[09:19:30] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[09:19:30] ================== drm_rect (9 subtests) ===================
[09:19:30] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[09:19:30] [PASSED] drm_test_rect_clip_scaled_not_clipped
[09:19:30] [PASSED] drm_test_rect_clip_scaled_clipped
[09:19:30] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[09:19:30] ================= drm_test_rect_intersect =================
[09:19:30] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[09:19:30] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[09:19:30] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[09:19:30] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[09:19:30] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[09:19:30] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[09:19:30] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[09:19:30] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[09:19:30] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[09:19:30] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[09:19:30] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[09:19:30] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[09:19:30] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[09:19:30] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[09:19:30] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[09:19:30] ============= [PASSED] drm_test_rect_intersect =============
[09:19:30] ================ drm_test_rect_calc_hscale ================
[09:19:30] [PASSED] normal use
[09:19:30] [PASSED] out of max range
[09:19:30] [PASSED] out of min range
[09:19:30] [PASSED] zero dst
[09:19:30] [PASSED] negative src
[09:19:30] [PASSED] negative dst
[09:19:30] ============ [PASSED] drm_test_rect_calc_hscale ============
[09:19:30] ================ drm_test_rect_calc_vscale ================
[09:19:30] [PASSED] normal use
[09:19:30] [PASSED] out of max range
[09:19:30] [PASSED] out of min range
[09:19:30] [PASSED] zero dst
[09:19:30] [PASSED] negative src
[09:19:30] [PASSED] negative dst
[09:19:30] ============ [PASSED] drm_test_rect_calc_vscale ============
[09:19:30] ================== drm_test_rect_rotate ===================
[09:19:30] [PASSED] reflect-x
[09:19:30] [PASSED] reflect-y
[09:19:30] [PASSED] rotate-0
[09:19:30] [PASSED] rotate-90
[09:19:30] [PASSED] rotate-180
[09:19:30] [PASSED] rotate-270
[09:19:30] ============== [PASSED] drm_test_rect_rotate ===============
[09:19:30] ================ drm_test_rect_rotate_inv =================
[09:19:30] [PASSED] reflect-x
[09:19:30] [PASSED] reflect-y
[09:19:30] [PASSED] rotate-0
[09:19:30] [PASSED] rotate-90
[09:19:30] [PASSED] rotate-180
[09:19:30] [PASSED] rotate-270
[09:19:30] ============ [PASSED] drm_test_rect_rotate_inv =============
[09:19:30] ==================== [PASSED] drm_rect =====================
[09:19:30] ============ drm_sysfb_modeset_test (1 subtest) ============
[09:19:30] ============ drm_test_sysfb_build_fourcc_list =============
[09:19:30] [PASSED] no native formats
[09:19:30] [PASSED] XRGB8888 as native format
[09:19:30] [PASSED] remove duplicates
[09:19:30] [PASSED] convert alpha formats
[09:19:30] [PASSED] random formats
[09:19:30] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[09:19:30] ============= [PASSED] drm_sysfb_modeset_test ==============
[09:19:30] ================== drm_fixp (2 subtests) ===================
[09:19:30] [PASSED] drm_test_int2fixp
[09:19:30] [PASSED] drm_test_sm2fixp
[09:19:30] ==================== [PASSED] drm_fixp =====================
[09:19:30] ============================================================
[09:19:30] Testing complete. Ran 639 tests: passed: 639
[09:19:30] Elapsed time: 27.070s total, 1.829s configuring, 25.077s building, 0.138s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[09:19:30] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:19:32] 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
[09:19:43] Starting KUnit Kernel (1/1)...
[09:19:43] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:19:43] ================= ttm_device (5 subtests) ==================
[09:19:43] [PASSED] ttm_device_init_basic
[09:19:43] [PASSED] ttm_device_init_multiple
[09:19:43] [PASSED] ttm_device_fini_basic
[09:19:43] [PASSED] ttm_device_init_no_vma_man
[09:19:43] ================== ttm_device_init_pools ==================
[09:19:43] [PASSED] No DMA allocations, no DMA32 required
[09:19:43] [PASSED] DMA allocations, DMA32 required
[09:19:43] [PASSED] No DMA allocations, DMA32 required
[09:19:43] [PASSED] DMA allocations, no DMA32 required
[09:19:43] ============== [PASSED] ttm_device_init_pools ==============
[09:19:43] =================== [PASSED] ttm_device ====================
[09:19:43] ================== ttm_pool (8 subtests) ===================
[09:19:43] ================== ttm_pool_alloc_basic ===================
[09:19:43] [PASSED] One page
[09:19:43] [PASSED] More than one page
[09:19:43] [PASSED] Above the allocation limit
[09:19:43] [PASSED] One page, with coherent DMA mappings enabled
[09:19:43] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[09:19:43] ============== [PASSED] ttm_pool_alloc_basic ===============
[09:19:43] ============== ttm_pool_alloc_basic_dma_addr ==============
[09:19:43] [PASSED] One page
[09:19:43] [PASSED] More than one page
[09:19:43] [PASSED] Above the allocation limit
[09:19:43] [PASSED] One page, with coherent DMA mappings enabled
[09:19:43] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[09:19:43] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[09:19:43] [PASSED] ttm_pool_alloc_order_caching_match
[09:19:43] [PASSED] ttm_pool_alloc_caching_mismatch
[09:19:43] [PASSED] ttm_pool_alloc_order_mismatch
[09:19:43] [PASSED] ttm_pool_free_dma_alloc
[09:19:43] [PASSED] ttm_pool_free_no_dma_alloc
[09:19:43] [PASSED] ttm_pool_fini_basic
[09:19:43] ==================== [PASSED] ttm_pool =====================
[09:19:43] ================ ttm_resource (8 subtests) =================
[09:19:43] ================= ttm_resource_init_basic =================
[09:19:43] [PASSED] Init resource in TTM_PL_SYSTEM
[09:19:43] [PASSED] Init resource in TTM_PL_VRAM
[09:19:43] [PASSED] Init resource in a private placement
[09:19:43] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[09:19:43] ============= [PASSED] ttm_resource_init_basic =============
[09:19:43] [PASSED] ttm_resource_init_pinned
[09:19:43] [PASSED] ttm_resource_fini_basic
[09:19:43] [PASSED] ttm_resource_manager_init_basic
[09:19:43] [PASSED] ttm_resource_manager_usage_basic
[09:19:43] [PASSED] ttm_resource_manager_set_used_basic
[09:19:43] [PASSED] ttm_sys_man_alloc_basic
[09:19:43] [PASSED] ttm_sys_man_free_basic
[09:19:43] ================== [PASSED] ttm_resource ===================
[09:19:43] =================== ttm_tt (15 subtests) ===================
[09:19:43] ==================== ttm_tt_init_basic ====================
[09:19:43] [PASSED] Page-aligned size
[09:19:43] [PASSED] Extra pages requested
[09:19:43] ================ [PASSED] ttm_tt_init_basic ================
[09:19:43] [PASSED] ttm_tt_init_misaligned
[09:19:43] [PASSED] ttm_tt_fini_basic
[09:19:43] [PASSED] ttm_tt_fini_sg
[09:19:43] [PASSED] ttm_tt_fini_shmem
[09:19:43] [PASSED] ttm_tt_create_basic
[09:19:43] [PASSED] ttm_tt_create_invalid_bo_type
[09:19:43] [PASSED] ttm_tt_create_ttm_exists
[09:19:43] [PASSED] ttm_tt_create_failed
[09:19:43] [PASSED] ttm_tt_destroy_basic
[09:19:43] [PASSED] ttm_tt_populate_null_ttm
[09:19:43] [PASSED] ttm_tt_populate_populated_ttm
[09:19:43] [PASSED] ttm_tt_unpopulate_basic
[09:19:43] [PASSED] ttm_tt_unpopulate_empty_ttm
[09:19:43] [PASSED] ttm_tt_swapin_basic
[09:19:43] ===================== [PASSED] ttm_tt ======================
[09:19:43] =================== ttm_bo (14 subtests) ===================
[09:19:43] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[09:19:43] [PASSED] Cannot be interrupted and sleeps
[09:19:43] [PASSED] Cannot be interrupted, locks straight away
[09:19:43] [PASSED] Can be interrupted, sleeps
[09:19:43] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[09:19:43] [PASSED] ttm_bo_reserve_locked_no_sleep
[09:19:43] [PASSED] ttm_bo_reserve_no_wait_ticket
[09:19:43] [PASSED] ttm_bo_reserve_double_resv
[09:19:43] [PASSED] ttm_bo_reserve_interrupted
[09:19:43] [PASSED] ttm_bo_reserve_deadlock
[09:19:43] [PASSED] ttm_bo_unreserve_basic
[09:19:43] [PASSED] ttm_bo_unreserve_pinned
[09:19:43] [PASSED] ttm_bo_unreserve_bulk
[09:19:43] [PASSED] ttm_bo_fini_basic
[09:19:43] [PASSED] ttm_bo_fini_shared_resv
[09:19:43] [PASSED] ttm_bo_pin_basic
[09:19:43] [PASSED] ttm_bo_pin_unpin_resource
[09:19:43] [PASSED] ttm_bo_multiple_pin_one_unpin
[09:19:43] ===================== [PASSED] ttm_bo ======================
[09:19:43] ============== ttm_bo_validate (22 subtests) ===============
[09:19:43] ============== ttm_bo_init_reserved_sys_man ===============
[09:19:43] [PASSED] Buffer object for userspace
[09:19:43] [PASSED] Kernel buffer object
[09:19:43] [PASSED] Shared buffer object
[09:19:43] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[09:19:43] ============== ttm_bo_init_reserved_mock_man ==============
[09:19:43] [PASSED] Buffer object for userspace
[09:19:43] [PASSED] Kernel buffer object
[09:19:43] [PASSED] Shared buffer object
[09:19:43] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[09:19:43] [PASSED] ttm_bo_init_reserved_resv
[09:19:43] ================== ttm_bo_validate_basic ==================
[09:19:43] [PASSED] Buffer object for userspace
[09:19:43] [PASSED] Kernel buffer object
[09:19:43] [PASSED] Shared buffer object
[09:19:43] ============== [PASSED] ttm_bo_validate_basic ==============
[09:19:43] [PASSED] ttm_bo_validate_invalid_placement
[09:19:43] ============= ttm_bo_validate_same_placement ==============
[09:19:43] [PASSED] System manager
[09:19:43] [PASSED] VRAM manager
[09:19:43] ========= [PASSED] ttm_bo_validate_same_placement ==========
[09:19:43] [PASSED] ttm_bo_validate_failed_alloc
[09:19:43] [PASSED] ttm_bo_validate_pinned
[09:19:43] [PASSED] ttm_bo_validate_busy_placement
[09:19:43] ================ ttm_bo_validate_multihop =================
[09:19:43] [PASSED] Buffer object for userspace
[09:19:43] [PASSED] Kernel buffer object
[09:19:43] [PASSED] Shared buffer object
[09:19:43] ============ [PASSED] ttm_bo_validate_multihop =============
[09:19:43] ========== ttm_bo_validate_no_placement_signaled ==========
[09:19:43] [PASSED] Buffer object in system domain, no page vector
[09:19:43] [PASSED] Buffer object in system domain with an existing page vector
[09:19:43] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[09:19:43] ======== ttm_bo_validate_no_placement_not_signaled ========
[09:19:43] [PASSED] Buffer object for userspace
[09:19:43] [PASSED] Kernel buffer object
[09:19:43] [PASSED] Shared buffer object
[09:19:43] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[09:19:43] [PASSED] ttm_bo_validate_move_fence_signaled
[09:19:43] ========= ttm_bo_validate_move_fence_not_signaled =========
[09:19:43] [PASSED] Waits for GPU
[09:19:43] [PASSED] Tries to lock straight away
[09:19:43] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[09:19:43] [PASSED] ttm_bo_validate_swapout
[09:19:43] [PASSED] ttm_bo_validate_happy_evict
[09:19:43] [PASSED] ttm_bo_validate_all_pinned_evict
[09:19:43] [PASSED] ttm_bo_validate_allowed_only_evict
[09:19:43] [PASSED] ttm_bo_validate_deleted_evict
[09:19:43] [PASSED] ttm_bo_validate_busy_domain_evict
[09:19:43] [PASSED] ttm_bo_validate_evict_gutting
[09:19:43] [PASSED] ttm_bo_validate_recrusive_evict
[09:19:43] ================= [PASSED] ttm_bo_validate =================
[09:19:43] ============================================================
[09:19:43] Testing complete. Ran 102 tests: passed: 102
[09:19:43] Elapsed time: 12.582s total, 1.742s configuring, 10.575s building, 0.228s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 10+ messages in thread* ✓ Xe.CI.BAT: success for drm/xe/guc: distinguish wedged from recoverable cancellation (rev3)
2026-06-24 19:46 [PATCH v2 0/2] drm/xe/guc: distinguish wedged from recoverable cancellation Sk Anirban
` (5 preceding siblings ...)
2026-07-01 9:19 ` ✓ CI.KUnit: success for drm/xe/guc: distinguish wedged from recoverable cancellation (rev3) Patchwork
@ 2026-07-01 10:08 ` Patchwork
2026-07-02 0:34 ` ✓ Xe.CI.FULL: " Patchwork
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-07-01 10:08 UTC (permalink / raw)
To: Sk Anirban; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 981 bytes --]
== Series Details ==
Series: drm/xe/guc: distinguish wedged from recoverable cancellation (rev3)
URL : https://patchwork.freedesktop.org/series/168780/
State : success
== Summary ==
CI Bug Log - changes from xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3_BAT -> xe-pw-168780v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3 -> xe-pw-168780v3
IGT_8989: a8e2cbd2854d7980a9eccecc6e0c801d0824b88f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3: 4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3
xe-pw-168780v3: 168780v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/index.html
[-- Attachment #2: Type: text/html, Size: 1529 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread* ✓ Xe.CI.FULL: success for drm/xe/guc: distinguish wedged from recoverable cancellation (rev3)
2026-06-24 19:46 [PATCH v2 0/2] drm/xe/guc: distinguish wedged from recoverable cancellation Sk Anirban
` (6 preceding siblings ...)
2026-07-01 10:08 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-07-02 0:34 ` Patchwork
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-07-02 0:34 UTC (permalink / raw)
To: Sk Anirban; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 24840 bytes --]
== Series Details ==
Series: drm/xe/guc: distinguish wedged from recoverable cancellation (rev3)
URL : https://patchwork.freedesktop.org/series/168780/
State : success
== Summary ==
CI Bug Log - changes from xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3_FULL -> xe-pw-168780v3_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-168780v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@unused-pitches:
- shard-lnl: NOTRUN -> [ABORT][1] ([Intel XE#8007])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-lnl-1/igt@kms_addfb_basic@unused-pitches.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [PASS][2] -> [FAIL][3] ([Intel XE#3718] / [Intel XE#6078])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-2:
- shard-bmg: [PASS][4] -> [FAIL][5] ([Intel XE#6078])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-2.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-2.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_bw@linear-tiling-1-displays-target-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#367])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-10/igt@kms_bw@linear-tiling-1-displays-target-2160x1440p.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#3432])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2887]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-10/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html
* igt@kms_chamelium_color_pipeline@plane-ctm3x4:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7358])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-10/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2252]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][12] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-10/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2320]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-10/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#1508])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-10/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#4354] / [Intel XE#5870])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc-bigjoiner:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#8265])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_dsc@dsc-with-bpc-bigjoiner.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#1138] / [Intel XE#7344])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#4141]) +4 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2352] / [Intel XE#7399])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2311]) +18 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2313]) +13 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#1503])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7283])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-10/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#5020] / [Intel XE#7348])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_dc@dc3co-vpb-simulation@pr:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#8395]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_pm_dc@dc3co-vpb-simulation@pr.html
* igt@kms_pm_dc@dc3co-vpb-simulation@psr2:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#8396])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_pm_dc@dc3co-vpb-simulation@psr2.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#1489])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2387] / [Intel XE#7429])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2234] / [Intel XE#2850])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_sharpness_filter@filter-scaler-downscale:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#6503])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_sharpness_filter@filter-scaler-downscale.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2450] / [Intel XE#5857])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_tv_load_detect@load-detect.html
* igt@xe_compute_preempt@compute-preempt-many-vram:
- shard-bmg: [PASS][36] -> [ABORT][37] ([Intel XE#7893] / [Intel XE#8300]) +1 other test abort
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3/shard-bmg-2/igt@xe_compute_preempt@compute-preempt-many-vram.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-2/igt@xe_compute_preempt@compute-preempt-many-vram.html
* igt@xe_eudebug@basic-vms:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7636]) +4 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@xe_eudebug@basic-vms.html
* igt@xe_evict@evict-cm-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#8370])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-10/igt@xe_evict@evict-cm-threads-small-multi-queue.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][40] -> [INCOMPLETE][41] ([Intel XE#6321] / [Intel XE#8355])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-no-exec-basic:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-10/igt@xe_exec_basic@multigpu-no-exec-basic.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-prefetch:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#8374]) +5 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-prefetch.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#8364]) +8 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority.html
* igt@xe_exec_reset@cm-multi-queue-cat-error:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#8369]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-10/igt@xe_exec_reset@cm-multi-queue-cat-error.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#8378]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode:
- shard-bmg: [PASS][47] -> [ABORT][48] ([Intel XE#8007])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
* igt@xe_multigpu_svm@mgpu-migration-basic:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#6964]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@xe_multigpu_svm@mgpu-migration-basic.html
* igt@xe_pm@d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2284] / [Intel XE#7370])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-10/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#4733] / [Intel XE#7417])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#944])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_survivability@runtime-survivability:
- shard-bmg: [PASS][53] -> [DMESG-WARN][54] ([Intel XE#6627] / [Intel XE#7419])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3/shard-bmg-7/igt@xe_survivability@runtime-survivability.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-5/igt@xe_survivability@runtime-survivability.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [FAIL][55] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2:
- shard-bmg: [FAIL][57] ([Intel XE#6078]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][59] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][60] +1 other test pass
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][61] ([Intel XE#7571]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [FAIL][63] ([Intel XE#5408] / [Intel XE#6266]) -> [PASS][64] +1 other test pass
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3/shard-bmg-2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][65] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3/shard-bmg-9/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_pm@s3-multiple-execs:
- shard-bmg: [INCOMPLETE][67] ([Intel XE#8175]) -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3/shard-bmg-9/igt@xe_pm@s3-multiple-execs.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-9/igt@xe_pm@s3-multiple-execs.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-lnl: [ABORT][69] ([Intel XE#8007]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3/shard-lnl-2/igt@xe_wedged@wedged-mode-toggle.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-lnl-1/igt@xe_wedged@wedged-mode-toggle.html
#### Warnings ####
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][71] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][72] ([Intel XE#3544])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
* igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
- shard-bmg: [INCOMPLETE][73] ([Intel XE#2594]) -> [SKIP][74] ([Intel XE#4733] / [Intel XE#7417])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3/shard-bmg-1/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/shard-bmg-10/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[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#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
[Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857
[Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7893
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8175]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8175
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8300
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
[Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3 -> xe-pw-168780v3
IGT_8989: a8e2cbd2854d7980a9eccecc6e0c801d0824b88f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5317-4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3: 4847fd44d1663d4ea8bbfc2f6e178f60a377bbb3
xe-pw-168780v3: 168780v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168780v3/index.html
[-- Attachment #2: Type: text/html, Size: 27473 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread