* [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time"
@ 2024-10-07 17:23 Himal Prasad Ghimiray
2024-10-07 17:23 ` [PATCH i-g-t 2/2] tests/intel/xe_pm_residency: Limit max usleep time to 50sec Himal Prasad Ghimiray
` (6 more replies)
0 siblings, 7 replies; 17+ messages in thread
From: Himal Prasad Ghimiray @ 2024-10-07 17:23 UTC (permalink / raw)
To: igt-dev
Cc: Himal Prasad Ghimiray, Matthew Brost, Badal Nilawar, Riana Tauro,
Anshuman Gupta, Karthik Poosa
The reported time does not reflect the completion time of
MI_STORE_DWORD; instead, it accounts for the delay in the scheduler.
Therefore, it represents the time taken between xe_exec and
syncobj_wait.
This reverts commit 92825ed72be61c5419d95db944fef1c9dda2215a.
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Badal Nilawar <badal.nilawar@intel.com>
Cc: Riana Tauro <riana.tauro@intel.com>
Cc: Anshuman Gupta <anshuman.gupta@intel.com>
Cc: Karthik Poosa <karthik.poosa@intel.com>
Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
---
tests/intel/xe_pm_residency.c | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
index 772fe9b57..f4d05889c 100644
--- a/tests/intel/xe_pm_residency.c
+++ b/tests/intel/xe_pm_residency.c
@@ -144,15 +144,6 @@ static void exec_load(int fd, struct drm_xe_engine_class_instance *hwe, unsigned
1e-3 * submit,
1e-3 * (elapsed - submit));
- /*
- * MI_STORE_DWORD generally completes within couple of ms.
- * Assert if it takes more than 1.2 seconds, as it will cause
- * IGT test to timeout due to sleep of 120 seconds which is
- * the current per test timeout. Currently there is no way to
- * read this timeout from IGT test.
- */
- igt_assert((uint64_t)elapsed < (uint64_t)(1.2 * NSEC_PER_SEC));
-
syncobj_reset(fd, &syncobj, 1);
/*
--
2.34.1
^ permalink raw reply related [flat|nested] 17+ messages in thread* [PATCH i-g-t 2/2] tests/intel/xe_pm_residency: Limit max usleep time to 50sec. 2024-10-07 17:23 [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" Himal Prasad Ghimiray @ 2024-10-07 17:23 ` Himal Prasad Ghimiray 2024-10-07 17:32 ` Cavitt, Jonathan 2024-10-08 4:13 ` Poosa, Karthik 2024-10-07 17:31 ` [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" Cavitt, Jonathan ` (5 subsequent siblings) 6 siblings, 2 replies; 17+ messages in thread From: Himal Prasad Ghimiray @ 2024-10-07 17:23 UTC (permalink / raw) To: igt-dev Cc: Himal Prasad Ghimiray, Matthew Brost, Badal Nilawar, Riana Tauro, Anshuman Gupta There may be an approximately 1-second delay between xe_exec and xe_sched_job_run, which could result in the usleep duration exceeding IGT timeouts. To address this, limit the maximum usleep time to 50 seconds Cc: Matthew Brost <matthew.brost@intel.com> Cc: Badal Nilawar <badal.nilawar@intel.com> Cc: Riana Tauro <riana.tauro@intel.com> Cc: Anshuman Gupta <anshuman.gupta@intel.com> Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> --- tests/intel/xe_pm_residency.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c index f4d05889c..a86107eca 100644 --- a/tests/intel/xe_pm_residency.c +++ b/tests/intel/xe_pm_residency.c @@ -150,7 +150,7 @@ static void exec_load(int fd, struct drm_xe_engine_class_instance *hwe, unsigned * Execute the above workload for ~1% of the elapsed time and sleep for * the rest of the time (~99%) */ - usleep(elapsed / 10); + usleep(min_t(elapsed, elapsed / 10, 50 * 1000)); } while (!READ_ONCE(*done)); xe_vm_unbind_sync(fd, vm, 0, addr, bo_size); -- 2.34.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* RE: [PATCH i-g-t 2/2] tests/intel/xe_pm_residency: Limit max usleep time to 50sec. 2024-10-07 17:23 ` [PATCH i-g-t 2/2] tests/intel/xe_pm_residency: Limit max usleep time to 50sec Himal Prasad Ghimiray @ 2024-10-07 17:32 ` Cavitt, Jonathan 2024-10-08 4:13 ` Ghimiray, Himal Prasad 2024-10-08 4:13 ` Poosa, Karthik 1 sibling, 1 reply; 17+ messages in thread From: Cavitt, Jonathan @ 2024-10-07 17:32 UTC (permalink / raw) To: Ghimiray, Himal Prasad, igt-dev@lists.freedesktop.org Cc: Ghimiray, Himal Prasad, Brost, Matthew, Nilawar, Badal, Tauro, Riana, Gupta, Anshuman -----Original Message----- From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Himal Prasad Ghimiray Sent: Monday, October 7, 2024 10:24 AM To: igt-dev@lists.freedesktop.org Cc: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com>; Brost, Matthew <matthew.brost@intel.com>; Nilawar, Badal <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman <anshuman.gupta@intel.com> Subject: [PATCH i-g-t 2/2] tests/intel/xe_pm_residency: Limit max usleep time to 50sec. > > There may be an approximately 1-second delay between xe_exec and > xe_sched_job_run, which could result in the usleep duration exceeding IGT > timeouts. To address this, limit the maximum usleep time to 50 seconds > > Cc: Matthew Brost <matthew.brost@intel.com> > Cc: Badal Nilawar <badal.nilawar@intel.com> > Cc: Riana Tauro <riana.tauro@intel.com> > Cc: Anshuman Gupta <anshuman.gupta@intel.com> > Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> Seems good. Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> -Jonathan Cavitt > --- > tests/intel/xe_pm_residency.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c > index f4d05889c..a86107eca 100644 > --- a/tests/intel/xe_pm_residency.c > +++ b/tests/intel/xe_pm_residency.c > @@ -150,7 +150,7 @@ static void exec_load(int fd, struct drm_xe_engine_class_instance *hwe, unsigned > * Execute the above workload for ~1% of the elapsed time and sleep for > * the rest of the time (~99%) > */ > - usleep(elapsed / 10); > + usleep(min_t(elapsed, elapsed / 10, 50 * 1000)); > } while (!READ_ONCE(*done)); > > xe_vm_unbind_sync(fd, vm, 0, addr, bo_size); > -- > 2.34.1 > > ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/xe_pm_residency: Limit max usleep time to 50sec. 2024-10-07 17:32 ` Cavitt, Jonathan @ 2024-10-08 4:13 ` Ghimiray, Himal Prasad 0 siblings, 0 replies; 17+ messages in thread From: Ghimiray, Himal Prasad @ 2024-10-08 4:13 UTC (permalink / raw) To: Cavitt, Jonathan, igt-dev@lists.freedesktop.org Cc: Brost, Matthew, Nilawar, Badal, Tauro, Riana, Gupta, Anshuman On 07-10-2024 23:02, Cavitt, Jonathan wrote: > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Himal Prasad Ghimiray > Sent: Monday, October 7, 2024 10:24 AM > To: igt-dev@lists.freedesktop.org > Cc: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com>; Brost, Matthew <matthew.brost@intel.com>; Nilawar, Badal <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman <anshuman.gupta@intel.com> > Subject: [PATCH i-g-t 2/2] tests/intel/xe_pm_residency: Limit max usleep time to 50sec. /s/sec/milisec. >> >> There may be an approximately 1-second delay between xe_exec and >> xe_sched_job_run, which could result in the usleep duration exceeding IGT >> timeouts. To address this, limit the maximum usleep time to 50 seconds /s/seconds/miliseconds/ will fix. >> >> Cc: Matthew Brost <matthew.brost@intel.com> >> Cc: Badal Nilawar <badal.nilawar@intel.com> >> Cc: Riana Tauro <riana.tauro@intel.com> >> Cc: Anshuman Gupta <anshuman.gupta@intel.com> >> Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> > > Seems good. > Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> > -Jonathan Cavitt Thanks. > >> --- >> tests/intel/xe_pm_residency.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c >> index f4d05889c..a86107eca 100644 >> --- a/tests/intel/xe_pm_residency.c >> +++ b/tests/intel/xe_pm_residency.c >> @@ -150,7 +150,7 @@ static void exec_load(int fd, struct drm_xe_engine_class_instance *hwe, unsigned >> * Execute the above workload for ~1% of the elapsed time and sleep for >> * the rest of the time (~99%) >> */ >> - usleep(elapsed / 10); >> + usleep(min_t(elapsed, elapsed / 10, 50 * 1000)); >> } while (!READ_ONCE(*done)); >> >> xe_vm_unbind_sync(fd, vm, 0, addr, bo_size); >> -- >> 2.34.1 >> >> ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/xe_pm_residency: Limit max usleep time to 50sec. 2024-10-07 17:23 ` [PATCH i-g-t 2/2] tests/intel/xe_pm_residency: Limit max usleep time to 50sec Himal Prasad Ghimiray 2024-10-07 17:32 ` Cavitt, Jonathan @ 2024-10-08 4:13 ` Poosa, Karthik 1 sibling, 0 replies; 17+ messages in thread From: Poosa, Karthik @ 2024-10-08 4:13 UTC (permalink / raw) To: igt-dev On 07-10-2024 22:53, Himal Prasad Ghimiray wrote: > There may be an approximately 1-second delay between xe_exec and > xe_sched_job_run, which could result in the usleep duration exceeding IGT > timeouts. To address this, limit the maximum usleep time to 50 seconds > > Cc: Matthew Brost <matthew.brost@intel.com> > Cc: Badal Nilawar <badal.nilawar@intel.com> > Cc: Riana Tauro <riana.tauro@intel.com> > Cc: Anshuman Gupta <anshuman.gupta@intel.com> > Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> > --- > tests/intel/xe_pm_residency.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c > index f4d05889c..a86107eca 100644 > --- a/tests/intel/xe_pm_residency.c > +++ b/tests/intel/xe_pm_residency.c > @@ -150,7 +150,7 @@ static void exec_load(int fd, struct drm_xe_engine_class_instance *hwe, unsigned > * Execute the above workload for ~1% of the elapsed time and sleep for > * the rest of the time (~99%) > */ > - usleep(elapsed / 10); > + usleep(min_t(elapsed, elapsed / 10, 50 * 1000)); This will sleep minimum for 50 milli-seconds, usleep takes time in micro-seconds. > } while (!READ_ONCE(*done)); > > xe_vm_unbind_sync(fd, vm, 0, addr, bo_size); ^ permalink raw reply [flat|nested] 17+ messages in thread
* RE: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" 2024-10-07 17:23 [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" Himal Prasad Ghimiray 2024-10-07 17:23 ` [PATCH i-g-t 2/2] tests/intel/xe_pm_residency: Limit max usleep time to 50sec Himal Prasad Ghimiray @ 2024-10-07 17:31 ` Cavitt, Jonathan 2024-10-14 10:38 ` Gupta, Anshuman 2024-10-07 21:31 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork ` (4 subsequent siblings) 6 siblings, 1 reply; 17+ messages in thread From: Cavitt, Jonathan @ 2024-10-07 17:31 UTC (permalink / raw) To: Ghimiray, Himal Prasad, igt-dev@lists.freedesktop.org Cc: Ghimiray, Himal Prasad, Brost, Matthew, Nilawar, Badal, Tauro, Riana, Gupta, Anshuman, Poosa, Karthik, Cavitt, Jonathan -----Original Message----- From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Himal Prasad Ghimiray Sent: Monday, October 7, 2024 10:24 AM To: igt-dev@lists.freedesktop.org Cc: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com>; Brost, Matthew <matthew.brost@intel.com>; Nilawar, Badal <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman <anshuman.gupta@intel.com>; Poosa, Karthik <karthik.poosa@intel.com> Subject: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" > > The reported time does not reflect the completion time of > MI_STORE_DWORD; instead, it accounts for the delay in the scheduler. > Therefore, it represents the time taken between xe_exec and > syncobj_wait. > > This reverts commit 92825ed72be61c5419d95db944fef1c9dda2215a. > > Cc: Matthew Brost <matthew.brost@intel.com> > Cc: Badal Nilawar <badal.nilawar@intel.com> > Cc: Riana Tauro <riana.tauro@intel.com> > Cc: Anshuman Gupta <anshuman.gupta@intel.com> > Cc: Karthik Poosa <karthik.poosa@intel.com> > Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> Seems good. Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> -Jonathan Cavitt > --- > tests/intel/xe_pm_residency.c | 9 --------- > 1 file changed, 9 deletions(-) > > diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c > index 772fe9b57..f4d05889c 100644 > --- a/tests/intel/xe_pm_residency.c > +++ b/tests/intel/xe_pm_residency.c > @@ -144,15 +144,6 @@ static void exec_load(int fd, struct drm_xe_engine_class_instance *hwe, unsigned > 1e-3 * submit, > 1e-3 * (elapsed - submit)); > > - /* > - * MI_STORE_DWORD generally completes within couple of ms. > - * Assert if it takes more than 1.2 seconds, as it will cause > - * IGT test to timeout due to sleep of 120 seconds which is > - * the current per test timeout. Currently there is no way to > - * read this timeout from IGT test. > - */ > - igt_assert((uint64_t)elapsed < (uint64_t)(1.2 * NSEC_PER_SEC)); > - > syncobj_reset(fd, &syncobj, 1); > > /* > -- > 2.34.1 > > ^ permalink raw reply [flat|nested] 17+ messages in thread
* RE: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" 2024-10-07 17:31 ` [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" Cavitt, Jonathan @ 2024-10-14 10:38 ` Gupta, Anshuman 0 siblings, 0 replies; 17+ messages in thread From: Gupta, Anshuman @ 2024-10-14 10:38 UTC (permalink / raw) To: Cavitt, Jonathan, Ghimiray, Himal Prasad, igt-dev@lists.freedesktop.org, Brost, Matthew, Vivi, Rodrigo Cc: Ghimiray, Himal Prasad, Nilawar, Badal, Tauro, Riana, Poosa, Karthik > -----Original Message----- > From: Cavitt, Jonathan <jonathan.cavitt@intel.com> > Sent: Monday, October 7, 2024 11:01 PM > To: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com>; igt- > dev@lists.freedesktop.org > Cc: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com>; Brost, > Matthew <matthew.brost@intel.com>; Nilawar, Badal > <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com>; Gupta, > Anshuman <anshuman.gupta@intel.com>; Poosa, Karthik > <karthik.poosa@intel.com>; Cavitt, Jonathan <jonathan.cavitt@intel.com> > Subject: RE: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an > assertion on MI_STORE execution time" > > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Himal > Prasad Ghimiray > Sent: Monday, October 7, 2024 10:24 AM > To: igt-dev@lists.freedesktop.org > Cc: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com>; Brost, > Matthew <matthew.brost@intel.com>; Nilawar, Badal > <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com>; Gupta, > Anshuman <anshuman.gupta@intel.com>; Poosa, Karthik > <karthik.poosa@intel.com> > Subject: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion > on MI_STORE execution time" > > > > The reported time does not reflect the completion time of > > MI_STORE_DWORD; instead, it accounts for the delay in the scheduler. > > Therefore, it represents the time taken between xe_exec and > > syncobj_wait. But above doesn't justify removal of assertion. We can increase the assertion time here but it is not advisable to remove the assertion here. CC: @Vivi, Rodrigo CC: @Brost, Matthew What you opinion here igt_assert on time taken by xe_exec and syncobj_wait ? Thanks, Anshuman Gupta > > > > This reverts commit 92825ed72be61c5419d95db944fef1c9dda2215a. > > > > Cc: Matthew Brost <matthew.brost@intel.com> > > Cc: Badal Nilawar <badal.nilawar@intel.com> > > Cc: Riana Tauro <riana.tauro@intel.com> > > Cc: Anshuman Gupta <anshuman.gupta@intel.com> > > Cc: Karthik Poosa <karthik.poosa@intel.com> > > Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> > > Seems good. > Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> -Jonathan Cavitt > > > --- > > tests/intel/xe_pm_residency.c | 9 --------- > > 1 file changed, 9 deletions(-) > > > > diff --git a/tests/intel/xe_pm_residency.c > > b/tests/intel/xe_pm_residency.c index 772fe9b57..f4d05889c 100644 > > --- a/tests/intel/xe_pm_residency.c > > +++ b/tests/intel/xe_pm_residency.c > > @@ -144,15 +144,6 @@ static void exec_load(int fd, struct > drm_xe_engine_class_instance *hwe, unsigned > > 1e-3 * submit, > > 1e-3 * (elapsed - submit)); > > > > - /* > > - * MI_STORE_DWORD generally completes within couple of > ms. > > - * Assert if it takes more than 1.2 seconds, as it will cause > > - * IGT test to timeout due to sleep of 120 seconds which is > > - * the current per test timeout. Currently there is no way to > > - * read this timeout from IGT test. > > - */ > > - igt_assert((uint64_t)elapsed < (uint64_t)(1.2 * > NSEC_PER_SEC)); > > - > > syncobj_reset(fd, &syncobj, 1); > > > > /* > > -- > > 2.34.1 > > > > ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" 2024-10-07 17:23 [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" Himal Prasad Ghimiray 2024-10-07 17:23 ` [PATCH i-g-t 2/2] tests/intel/xe_pm_residency: Limit max usleep time to 50sec Himal Prasad Ghimiray 2024-10-07 17:31 ` [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" Cavitt, Jonathan @ 2024-10-07 21:31 ` Patchwork 2024-10-07 21:36 ` ✓ CI.xeBAT: " Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2024-10-07 21:31 UTC (permalink / raw) To: Himal Prasad Ghimiray; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5792 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" URL : https://patchwork.freedesktop.org/series/139648/ State : success == Summary == CI Bug Log - changes from IGT_8054 -> IGTPW_11881 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/index.html Participating hosts (43 -> 42) ------------------------------ Missing (1): bat-rpls-4 Known issues ------------ Here are the changes found in IGTPW_11881 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - bat-apl-1: [PASS][1] -> [DMESG-WARN][2] ([i915#180]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-apl-1/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/bat-apl-1/igt@core_hotunplug@unbind-rebind.html * igt@i915_module_load@reload: - bat-apl-1: [PASS][3] -> [DMESG-WARN][4] ([i915#180] / [i915#1982]) +3 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-apl-1/igt@i915_module_load@reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/bat-apl-1/igt@i915_module_load@reload.html * igt@i915_selftest@live: - bat-twl-1: [PASS][5] -> [INCOMPLETE][6] ([i915#12133] / [i915#9413]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-twl-1/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/bat-twl-1/igt@i915_selftest@live.html - bat-dg2-11: [PASS][7] -> [ABORT][8] ([i915#12133]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-dg2-11/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/bat-dg2-11/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_lrc: - bat-twl-1: [PASS][9] -> [INCOMPLETE][10] ([i915#10886] / [i915#9413]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-twl-1/igt@i915_selftest@live@gt_lrc.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/bat-twl-1/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@sanitycheck: - bat-apl-1: [PASS][11] -> [DMESG-WARN][12] ([i915#11621]) +79 other tests dmesg-warn [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-apl-1/igt@i915_selftest@live@sanitycheck.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/bat-apl-1/igt@i915_selftest@live@sanitycheck.html * igt@i915_selftest@live@uncore: - bat-dg2-11: [PASS][13] -> [ABORT][14] ([i915#12307]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-dg2-11/igt@i915_selftest@live@uncore.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/bat-dg2-11/igt@i915_selftest@live@uncore.html * igt@kms_busy@basic: - bat-apl-1: [PASS][15] -> [DMESG-WARN][16] ([i915#11621] / [i915#180] / [i915#1982]) +1 other test dmesg-warn [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-apl-1/igt@kms_busy@basic.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/bat-apl-1/igt@kms_busy@basic.html * igt@kms_pm_rpm@basic-pci-d3-state: - bat-apl-1: [PASS][17] -> [DMESG-WARN][18] ([i915#11621] / [i915#180]) +42 other tests dmesg-warn [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-apl-1/igt@kms_pm_rpm@basic-pci-d3-state.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/bat-apl-1/igt@kms_pm_rpm@basic-pci-d3-state.html #### Warnings #### * igt@i915_selftest@live: - bat-arls-5: [DMESG-WARN][19] ([i915#10341] / [i915#12133]) -> [DMESG-FAIL][20] ([i915#10341] / [i915#12133]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-arls-5/igt@i915_selftest@live.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/bat-arls-5/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-WARN][21] ([i915#10341] / [i915#11637]) -> [DMESG-FAIL][22] ([i915#11637]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-arls-5/igt@i915_selftest@live@workarounds.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/bat-arls-5/igt@i915_selftest@live@workarounds.html [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#10886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10886 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12307 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8054 -> IGTPW_11881 * Linux: CI_DRM_15484 -> CI_DRM_15486 CI-20190529: 20190529 CI_DRM_15484: 92d12099cc768f36cf676ee1b014442a5c5ba965 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15486: 1f72b793ff063e3519fc58ca3f3e83854b990ee7 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11881: a74005f662acace740ba6291871111d001f36131 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/index.html [-- Attachment #2: Type: text/html, Size: 7613 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" 2024-10-07 17:23 [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" Himal Prasad Ghimiray ` (2 preceding siblings ...) 2024-10-07 21:31 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork @ 2024-10-07 21:36 ` Patchwork 2024-10-08 2:01 ` [PATCH i-g-t 1/2] " Gupta, Anshuman ` (2 subsequent siblings) 6 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2024-10-07 21:36 UTC (permalink / raw) To: Himal Prasad Ghimiray; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3453 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" URL : https://patchwork.freedesktop.org/series/139648/ State : success == Summary == CI Bug Log - changes from XEIGT_8054_BAT -> XEIGTPW_11881_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11881_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_evict@evict-beng-small: - bat-adlp-7: NOTRUN -> [SKIP][1] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/bat-adlp-7/igt@xe_evict@evict-beng-small.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-adlp-7: NOTRUN -> [SKIP][2] ([Intel XE#288]) +32 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-adlp-7: NOTRUN -> [SKIP][3] ([Intel XE#2229]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@xe_gt_freq@freq_range_idle: - bat-lnl-2: [DMESG-WARN][4] ([Intel XE#1620]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/bat-lnl-2/igt@xe_gt_freq@freq_range_idle.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/bat-lnl-2/igt@xe_gt_freq@freq_range_idle.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-adlp-7: [INCOMPLETE][6] ([Intel XE#2874]) -> [PASS][7] +1 other test pass [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 Build changes ------------- * IGT: IGT_8054 -> IGTPW_11881 * Linux: xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965 -> xe-2018-1f72b793ff063e3519fc58ca3f3e83854b990ee7 IGTPW_11881: a74005f662acace740ba6291871111d001f36131 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965: 92d12099cc768f36cf676ee1b014442a5c5ba965 xe-2018-1f72b793ff063e3519fc58ca3f3e83854b990ee7: 1f72b793ff063e3519fc58ca3f3e83854b990ee7 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/index.html [-- Attachment #2: Type: text/html, Size: 4157 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* RE: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" 2024-10-07 17:23 [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" Himal Prasad Ghimiray ` (3 preceding siblings ...) 2024-10-07 21:36 ` ✓ CI.xeBAT: " Patchwork @ 2024-10-08 2:01 ` Gupta, Anshuman 2024-10-08 3:13 ` Ghimiray, Himal Prasad 2024-10-08 8:55 ` ✗ CI.xeFULL: failure for series starting with [i-g-t,1/2] " Patchwork 2024-10-08 20:06 ` ✗ Fi.CI.IGT: " Patchwork 6 siblings, 1 reply; 17+ messages in thread From: Gupta, Anshuman @ 2024-10-08 2:01 UTC (permalink / raw) To: Ghimiray, Himal Prasad, igt-dev@lists.freedesktop.org Cc: Brost, Matthew, Nilawar, Badal, Tauro, Riana, Poosa, Karthik > -----Original Message----- > From: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com> > Sent: Monday, October 7, 2024 10:54 PM > To: igt-dev@lists.freedesktop.org > Cc: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com>; Brost, > Matthew <matthew.brost@intel.com>; Nilawar, Badal > <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com>; Gupta, > Anshuman <anshuman.gupta@intel.com>; Poosa, Karthik > <karthik.poosa@intel.com> > Subject: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion > on MI_STORE execution time" > > The reported time does not reflect the completion time of MI_STORE_DWORD; > instead, it accounts for the delay in the scheduler. > Therefore, it represents the time taken between xe_exec and syncobj_wait. igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL)); elapsed = igt_nsec_elapsed(&tv); elapsed is taken right after the syncobj_wait() therefore it represent the time taken by xe_exec + syncobj_wait, total time taken for completion of job. Thanks, Anshuman. > > This reverts commit 92825ed72be61c5419d95db944fef1c9dda2215a. > > Cc: Matthew Brost <matthew.brost@intel.com> > Cc: Badal Nilawar <badal.nilawar@intel.com> > Cc: Riana Tauro <riana.tauro@intel.com> > Cc: Anshuman Gupta <anshuman.gupta@intel.com> > Cc: Karthik Poosa <karthik.poosa@intel.com> > Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> > --- > tests/intel/xe_pm_residency.c | 9 --------- > 1 file changed, 9 deletions(-) > > diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c index > 772fe9b57..f4d05889c 100644 > --- a/tests/intel/xe_pm_residency.c > +++ b/tests/intel/xe_pm_residency.c > @@ -144,15 +144,6 @@ static void exec_load(int fd, struct > drm_xe_engine_class_instance *hwe, unsigned > 1e-3 * submit, > 1e-3 * (elapsed - submit)); > > - /* > - * MI_STORE_DWORD generally completes within couple of > ms. > - * Assert if it takes more than 1.2 seconds, as it will cause > - * IGT test to timeout due to sleep of 120 seconds which is > - * the current per test timeout. Currently there is no way to > - * read this timeout from IGT test. > - */ > - igt_assert((uint64_t)elapsed < (uint64_t)(1.2 * > NSEC_PER_SEC)); > - > syncobj_reset(fd, &syncobj, 1); > > /* > -- > 2.34.1 ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" 2024-10-08 2:01 ` [PATCH i-g-t 1/2] " Gupta, Anshuman @ 2024-10-08 3:13 ` Ghimiray, Himal Prasad 2024-10-08 3:22 ` Gupta, Anshuman 0 siblings, 1 reply; 17+ messages in thread From: Ghimiray, Himal Prasad @ 2024-10-08 3:13 UTC (permalink / raw) To: Gupta, Anshuman, igt-dev@lists.freedesktop.org Cc: Brost, Matthew, Nilawar, Badal, Tauro, Riana, Poosa, Karthik On 08-10-2024 07:31, Gupta, Anshuman wrote: > > >> -----Original Message----- >> From: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com> >> Sent: Monday, October 7, 2024 10:54 PM >> To: igt-dev@lists.freedesktop.org >> Cc: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com>; Brost, >> Matthew <matthew.brost@intel.com>; Nilawar, Badal >> <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com>; Gupta, >> Anshuman <anshuman.gupta@intel.com>; Poosa, Karthik >> <karthik.poosa@intel.com> >> Subject: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion >> on MI_STORE execution time" >> >> The reported time does not reflect the completion time of MI_STORE_DWORD; >> instead, it accounts for the delay in the scheduler. >> Therefore, it represents the time taken between xe_exec and syncobj_wait. > igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL)); > elapsed = igt_nsec_elapsed(&tv); > elapsed is taken right after the syncobj_wait() therefore it represent the time taken by xe_exec + syncobj_wait, total time taken for completion of job. > Thanks, > Anshuman. That's true, while writing "time taken between xe_exec and syncobj_wait" , I meant to convey in between start of xe_exec and syncobj_wait completion. Will rephrase commit message before pushing. Thanks for pointing this. Himal >> >> This reverts commit 92825ed72be61c5419d95db944fef1c9dda2215a. >> >> Cc: Matthew Brost <matthew.brost@intel.com> >> Cc: Badal Nilawar <badal.nilawar@intel.com> >> Cc: Riana Tauro <riana.tauro@intel.com> >> Cc: Anshuman Gupta <anshuman.gupta@intel.com> >> Cc: Karthik Poosa <karthik.poosa@intel.com> >> Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> >> --- >> tests/intel/xe_pm_residency.c | 9 --------- >> 1 file changed, 9 deletions(-) >> >> diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c index >> 772fe9b57..f4d05889c 100644 >> --- a/tests/intel/xe_pm_residency.c >> +++ b/tests/intel/xe_pm_residency.c >> @@ -144,15 +144,6 @@ static void exec_load(int fd, struct >> drm_xe_engine_class_instance *hwe, unsigned >> 1e-3 * submit, >> 1e-3 * (elapsed - submit)); >> >> - /* >> - * MI_STORE_DWORD generally completes within couple of >> ms. >> - * Assert if it takes more than 1.2 seconds, as it will cause >> - * IGT test to timeout due to sleep of 120 seconds which is >> - * the current per test timeout. Currently there is no way to >> - * read this timeout from IGT test. >> - */ >> - igt_assert((uint64_t)elapsed < (uint64_t)(1.2 * >> NSEC_PER_SEC)); >> - >> syncobj_reset(fd, &syncobj, 1); >> >> /* >> -- >> 2.34.1 > ^ permalink raw reply [flat|nested] 17+ messages in thread
* RE: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" 2024-10-08 3:13 ` Ghimiray, Himal Prasad @ 2024-10-08 3:22 ` Gupta, Anshuman 2024-10-08 3:47 ` Ghimiray, Himal Prasad 0 siblings, 1 reply; 17+ messages in thread From: Gupta, Anshuman @ 2024-10-08 3:22 UTC (permalink / raw) To: Ghimiray, Himal Prasad, igt-dev@lists.freedesktop.org Cc: Brost, Matthew, Nilawar, Badal, Tauro, Riana, Poosa, Karthik > -----Original Message----- > From: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com> > Sent: Tuesday, October 8, 2024 8:44 AM > To: Gupta, Anshuman <anshuman.gupta@intel.com>; igt- > dev@lists.freedesktop.org > Cc: Brost, Matthew <matthew.brost@intel.com>; Nilawar, Badal > <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com>; Poosa, > Karthik <karthik.poosa@intel.com> > Subject: Re: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an > assertion on MI_STORE execution time" > > > > On 08-10-2024 07:31, Gupta, Anshuman wrote: > > > > > >> -----Original Message----- > >> From: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com> > >> Sent: Monday, October 7, 2024 10:54 PM > >> To: igt-dev@lists.freedesktop.org > >> Cc: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com>; Brost, > >> Matthew <matthew.brost@intel.com>; Nilawar, Badal > >> <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com>; > >> Gupta, Anshuman <anshuman.gupta@intel.com>; Poosa, Karthik > >> <karthik.poosa@intel.com> > >> Subject: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add > >> an assertion on MI_STORE execution time" > >> > >> The reported time does not reflect the completion time of > >> MI_STORE_DWORD; instead, it accounts for the delay in the scheduler. > >> Therefore, it represents the time taken between xe_exec and syncobj_wait. > > igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL)); > > elapsed = igt_nsec_elapsed(&tv); elapsed is taken right after the > > syncobj_wait() therefore it represent the time taken by xe_exec + > syncobj_wait, total time taken for completion of job. > > Thanks, > > Anshuman. > > > That's true, while writing "time taken between xe_exec and syncobj_wait" > , I meant to convey in between start of xe_exec and syncobj_wait completion. > Will rephrase commit message before pushing. Why do we want to remove assertion ? We don't want to write IGT to make CI happy it is to catch the bugs in KMD. Even in this case as well this is a bug from Linux Kernel. I don't agree with removal of assertion. Thanks, Anshuman. > > Thanks for pointing this. > > Himal > > > >> > >> This reverts commit 92825ed72be61c5419d95db944fef1c9dda2215a. > >> > >> Cc: Matthew Brost <matthew.brost@intel.com> > >> Cc: Badal Nilawar <badal.nilawar@intel.com> > >> Cc: Riana Tauro <riana.tauro@intel.com> > >> Cc: Anshuman Gupta <anshuman.gupta@intel.com> > >> Cc: Karthik Poosa <karthik.poosa@intel.com> > >> Signed-off-by: Himal Prasad Ghimiray > >> <himal.prasad.ghimiray@intel.com> > >> --- > >> tests/intel/xe_pm_residency.c | 9 --------- > >> 1 file changed, 9 deletions(-) > >> > >> diff --git a/tests/intel/xe_pm_residency.c > >> b/tests/intel/xe_pm_residency.c index 772fe9b57..f4d05889c 100644 > >> --- a/tests/intel/xe_pm_residency.c > >> +++ b/tests/intel/xe_pm_residency.c > >> @@ -144,15 +144,6 @@ static void exec_load(int fd, struct > >> drm_xe_engine_class_instance *hwe, unsigned > >> 1e-3 * submit, > >> 1e-3 * (elapsed - submit)); > >> > >> - /* > >> - * MI_STORE_DWORD generally completes within couple of > >> ms. > >> - * Assert if it takes more than 1.2 seconds, as it will cause > >> - * IGT test to timeout due to sleep of 120 seconds which is > >> - * the current per test timeout. Currently there is no way to > >> - * read this timeout from IGT test. > >> - */ > >> - igt_assert((uint64_t)elapsed < (uint64_t)(1.2 * > >> NSEC_PER_SEC)); > >> - > >> syncobj_reset(fd, &syncobj, 1); > >> > >> /* > >> -- > >> 2.34.1 > > ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" 2024-10-08 3:22 ` Gupta, Anshuman @ 2024-10-08 3:47 ` Ghimiray, Himal Prasad 2024-10-08 4:47 ` Poosa, Karthik 0 siblings, 1 reply; 17+ messages in thread From: Ghimiray, Himal Prasad @ 2024-10-08 3:47 UTC (permalink / raw) To: Gupta, Anshuman, igt-dev@lists.freedesktop.org Cc: Brost, Matthew, Nilawar, Badal, Tauro, Riana, Poosa, Karthik On 08-10-2024 08:52, Gupta, Anshuman wrote: > > >> -----Original Message----- >> From: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com> >> Sent: Tuesday, October 8, 2024 8:44 AM >> To: Gupta, Anshuman <anshuman.gupta@intel.com>; igt- >> dev@lists.freedesktop.org >> Cc: Brost, Matthew <matthew.brost@intel.com>; Nilawar, Badal >> <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com>; Poosa, >> Karthik <karthik.poosa@intel.com> >> Subject: Re: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an >> assertion on MI_STORE execution time" >> >> >> >> On 08-10-2024 07:31, Gupta, Anshuman wrote: >>> >>> >>>> -----Original Message----- >>>> From: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com> >>>> Sent: Monday, October 7, 2024 10:54 PM >>>> To: igt-dev@lists.freedesktop.org >>>> Cc: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com>; Brost, >>>> Matthew <matthew.brost@intel.com>; Nilawar, Badal >>>> <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com>; >>>> Gupta, Anshuman <anshuman.gupta@intel.com>; Poosa, Karthik >>>> <karthik.poosa@intel.com> >>>> Subject: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add >>>> an assertion on MI_STORE execution time" >>>> >>>> The reported time does not reflect the completion time of >>>> MI_STORE_DWORD; instead, it accounts for the delay in the scheduler. >>>> Therefore, it represents the time taken between xe_exec and syncobj_wait. >>> igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL)); >>> elapsed = igt_nsec_elapsed(&tv); elapsed is taken right after the >>> syncobj_wait() therefore it represent the time taken by xe_exec + >> syncobj_wait, total time taken for completion of job. >>> Thanks, >>> Anshuman. >> >> >> That's true, while writing "time taken between xe_exec and syncobj_wait" >> , I meant to convey in between start of xe_exec and syncobj_wait completion. >> Will rephrase commit message before pushing. > Why do we want to remove assertion ? We don't want to write IGT to make CI happy it is to catch the bugs in KMD. Even in this case as well this is a bug from Linux Kernel. > I don't agree with removal of assertion. Few issues with this assertion. 1) IGT has --inactivity-timeout of 90 sec, which means you will not hit this assertion ever and SIGQUIT will be called if time between start of xe_exec and syncobj completion is ~0.9 sec. 2) Even 0.9 sec of delay is something huge for kernel. So why IGT assumes anything less than 1.2 sec is safe. Isn't it just to make 99% of idle time safe. This assertion solves no purpose, if IGT silently passes for anything less than 1.2 sec, assume 1.1sec (Isn't it huge delay for wq submission). BR Himal > Thanks, > Anshuman. >> >> Thanks for pointing this. >> >> Himal >> >> >>>> >>>> This reverts commit 92825ed72be61c5419d95db944fef1c9dda2215a. >>>> >>>> Cc: Matthew Brost <matthew.brost@intel.com> >>>> Cc: Badal Nilawar <badal.nilawar@intel.com> >>>> Cc: Riana Tauro <riana.tauro@intel.com> >>>> Cc: Anshuman Gupta <anshuman.gupta@intel.com> >>>> Cc: Karthik Poosa <karthik.poosa@intel.com> >>>> Signed-off-by: Himal Prasad Ghimiray >>>> <himal.prasad.ghimiray@intel.com> >>>> --- >>>> tests/intel/xe_pm_residency.c | 9 --------- >>>> 1 file changed, 9 deletions(-) >>>> >>>> diff --git a/tests/intel/xe_pm_residency.c >>>> b/tests/intel/xe_pm_residency.c index 772fe9b57..f4d05889c 100644 >>>> --- a/tests/intel/xe_pm_residency.c >>>> +++ b/tests/intel/xe_pm_residency.c >>>> @@ -144,15 +144,6 @@ static void exec_load(int fd, struct >>>> drm_xe_engine_class_instance *hwe, unsigned >>>> 1e-3 * submit, >>>> 1e-3 * (elapsed - submit)); >>>> >>>> - /* >>>> - * MI_STORE_DWORD generally completes within couple of >>>> ms. >>>> - * Assert if it takes more than 1.2 seconds, as it will cause >>>> - * IGT test to timeout due to sleep of 120 seconds which is >>>> - * the current per test timeout. Currently there is no way to >>>> - * read this timeout from IGT test. >>>> - */ >>>> - igt_assert((uint64_t)elapsed < (uint64_t)(1.2 * >>>> NSEC_PER_SEC)); >>>> - >>>> syncobj_reset(fd, &syncobj, 1); >>>> >>>> /* >>>> -- >>>> 2.34.1 >>> > ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" 2024-10-08 3:47 ` Ghimiray, Himal Prasad @ 2024-10-08 4:47 ` Poosa, Karthik 2024-10-08 5:00 ` Poosa, Karthik 0 siblings, 1 reply; 17+ messages in thread From: Poosa, Karthik @ 2024-10-08 4:47 UTC (permalink / raw) To: Ghimiray, Himal Prasad, Gupta, Anshuman, igt-dev@lists.freedesktop.org Cc: Brost, Matthew, Nilawar, Badal, Tauro, Riana On 08-10-2024 09:17, Ghimiray, Himal Prasad wrote: > > > On 08-10-2024 08:52, Gupta, Anshuman wrote: >> >> >>> -----Original Message----- >>> From: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com> >>> Sent: Tuesday, October 8, 2024 8:44 AM >>> To: Gupta, Anshuman <anshuman.gupta@intel.com>; igt- >>> dev@lists.freedesktop.org >>> Cc: Brost, Matthew <matthew.brost@intel.com>; Nilawar, Badal >>> <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com>; Poosa, >>> Karthik <karthik.poosa@intel.com> >>> Subject: Re: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: >>> Add an >>> assertion on MI_STORE execution time" >>> >>> >>> >>> On 08-10-2024 07:31, Gupta, Anshuman wrote: >>>> >>>> >>>>> -----Original Message----- >>>>> From: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com> >>>>> Sent: Monday, October 7, 2024 10:54 PM >>>>> To: igt-dev@lists.freedesktop.org >>>>> Cc: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com>; Brost, >>>>> Matthew <matthew.brost@intel.com>; Nilawar, Badal >>>>> <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com>; >>>>> Gupta, Anshuman <anshuman.gupta@intel.com>; Poosa, Karthik >>>>> <karthik.poosa@intel.com> >>>>> Subject: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add >>>>> an assertion on MI_STORE execution time" >>>>> >>>>> The reported time does not reflect the completion time of >>>>> MI_STORE_DWORD; instead, it accounts for the delay in the scheduler. >>>>> Therefore, it represents the time taken between xe_exec and >>>>> syncobj_wait. >>>> igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL)); >>>> elapsed = igt_nsec_elapsed(&tv); elapsed is taken right after the >>>> syncobj_wait() therefore it represent the time taken by xe_exec + >>> syncobj_wait, total time taken for completion of job. >>>> Thanks, >>>> Anshuman. >>> >>> >>> That's true, while writing "time taken between xe_exec and >>> syncobj_wait" >>> , I meant to convey in between start of xe_exec and syncobj_wait >>> completion. >>> Will rephrase commit message before pushing. >> Why do we want to remove assertion ? We don't want to write IGT to >> make CI happy it is to catch the bugs in KMD. Even in this case as >> well this is a bug from Linux Kernel. >> I don't agree with removal of assertion. > > Few issues with this assertion. > > 1) IGT has --inactivity-timeout of 90 sec, which means you will not > hit this assertion ever and SIGQUIT will be called if time between > start of xe_exec and syncobj completion is ~0.9 sec. > > 2) Even 0.9 sec of delay is something huge for kernel. So why IGT > assumes anything less than 1.2 sec is safe. Isn't it just to make 99% > of idle time safe. > > This assertion solves no purpose, if IGT silently passes for anything > less than 1.2 sec, assume 1.1sec (Isn't it huge delay for wq submission). This was added to assert on per-test timeout which can occur even without inactivity timeout. See: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2484 You can reduce it to assert on inactivity also. > > > BR > Himal > > >> Thanks, >> Anshuman. >>> >>> Thanks for pointing this. >>> >>> Himal >>> >>> >>>>> >>>>> This reverts commit 92825ed72be61c5419d95db944fef1c9dda2215a. >>>>> >>>>> Cc: Matthew Brost <matthew.brost@intel.com> >>>>> Cc: Badal Nilawar <badal.nilawar@intel.com> >>>>> Cc: Riana Tauro <riana.tauro@intel.com> >>>>> Cc: Anshuman Gupta <anshuman.gupta@intel.com> >>>>> Cc: Karthik Poosa <karthik.poosa@intel.com> >>>>> Signed-off-by: Himal Prasad Ghimiray >>>>> <himal.prasad.ghimiray@intel.com> >>>>> --- >>>>> tests/intel/xe_pm_residency.c | 9 --------- >>>>> 1 file changed, 9 deletions(-) >>>>> >>>>> diff --git a/tests/intel/xe_pm_residency.c >>>>> b/tests/intel/xe_pm_residency.c index 772fe9b57..f4d05889c 100644 >>>>> --- a/tests/intel/xe_pm_residency.c >>>>> +++ b/tests/intel/xe_pm_residency.c >>>>> @@ -144,15 +144,6 @@ static void exec_load(int fd, struct >>>>> drm_xe_engine_class_instance *hwe, unsigned >>>>> 1e-3 * submit, >>>>> 1e-3 * (elapsed - submit)); >>>>> >>>>> - /* >>>>> - * MI_STORE_DWORD generally completes within couple of >>>>> ms. >>>>> - * Assert if it takes more than 1.2 seconds, as it will >>>>> cause >>>>> - * IGT test to timeout due to sleep of 120 seconds which is >>>>> - * the current per test timeout. Currently there is no >>>>> way to >>>>> - * read this timeout from IGT test. >>>>> - */ >>>>> - igt_assert((uint64_t)elapsed < (uint64_t)(1.2 * >>>>> NSEC_PER_SEC)); >>>>> - >>>>> syncobj_reset(fd, &syncobj, 1); >>>>> >>>>> /* >>>>> -- >>>>> 2.34.1 >>>> >> > ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" 2024-10-08 4:47 ` Poosa, Karthik @ 2024-10-08 5:00 ` Poosa, Karthik 0 siblings, 0 replies; 17+ messages in thread From: Poosa, Karthik @ 2024-10-08 5:00 UTC (permalink / raw) To: Ghimiray, Himal Prasad, Gupta, Anshuman, igt-dev@lists.freedesktop.org Cc: Brost, Matthew, Nilawar, Badal, Tauro, Riana On 08-10-2024 10:17, Poosa, Karthik wrote: > > On 08-10-2024 09:17, Ghimiray, Himal Prasad wrote: >> >> >> On 08-10-2024 08:52, Gupta, Anshuman wrote: >>> >>> >>>> -----Original Message----- >>>> From: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com> >>>> Sent: Tuesday, October 8, 2024 8:44 AM >>>> To: Gupta, Anshuman <anshuman.gupta@intel.com>; igt- >>>> dev@lists.freedesktop.org >>>> Cc: Brost, Matthew <matthew.brost@intel.com>; Nilawar, Badal >>>> <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com>; >>>> Poosa, >>>> Karthik <karthik.poosa@intel.com> >>>> Subject: Re: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: >>>> Add an >>>> assertion on MI_STORE execution time" >>>> >>>> >>>> >>>> On 08-10-2024 07:31, Gupta, Anshuman wrote: >>>>> >>>>> >>>>>> -----Original Message----- >>>>>> From: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com> >>>>>> Sent: Monday, October 7, 2024 10:54 PM >>>>>> To: igt-dev@lists.freedesktop.org >>>>>> Cc: Ghimiray, Himal Prasad <himal.prasad.ghimiray@intel.com>; Brost, >>>>>> Matthew <matthew.brost@intel.com>; Nilawar, Badal >>>>>> <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com>; >>>>>> Gupta, Anshuman <anshuman.gupta@intel.com>; Poosa, Karthik >>>>>> <karthik.poosa@intel.com> >>>>>> Subject: [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add >>>>>> an assertion on MI_STORE execution time" >>>>>> >>>>>> The reported time does not reflect the completion time of >>>>>> MI_STORE_DWORD; instead, it accounts for the delay in the scheduler. >>>>>> Therefore, it represents the time taken between xe_exec and >>>>>> syncobj_wait. >>>>> igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL)); >>>>> elapsed = igt_nsec_elapsed(&tv); elapsed is taken right after the >>>>> syncobj_wait() therefore it represent the time taken by xe_exec + >>>> syncobj_wait, total time taken for completion of job. >>>>> Thanks, >>>>> Anshuman. >>>> >>>> >>>> That's true, while writing "time taken between xe_exec and >>>> syncobj_wait" >>>> , I meant to convey in between start of xe_exec and syncobj_wait >>>> completion. >>>> Will rephrase commit message before pushing. >>> Why do we want to remove assertion ? We don't want to write IGT to >>> make CI happy it is to catch the bugs in KMD. Even in this case as >>> well this is a bug from Linux Kernel. >>> I don't agree with removal of assertion. >> >> Few issues with this assertion. >> >> 1) IGT has --inactivity-timeout of 90 sec, which means you will not >> hit this assertion ever and SIGQUIT will be called if time between >> start of xe_exec and syncobj completion is ~0.9 sec. >> >> 2) Even 0.9 sec of delay is something huge for kernel. So why IGT >> assumes anything less than 1.2 sec is safe. Isn't it just to make 99% >> of idle time safe. >> >> This assertion solves no purpose, if IGT silently passes for anything >> less than 1.2 sec, assume 1.1sec (Isn't it huge delay for wq >> submission). > > This was added to assert on per-test timeout which can occur even > without inactivity timeout. > > See: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2484 > > You can reduce it to assert on inactivity also. 2. Also, with this assert, we get below print in log to know submission and execution times taken, which would help in debug. igt_debug("Execution took %.3fms (submit %.1fus, wait %.1fus)\n", 1e-6 * elapsed, 1e-3 * submit, 1e-3 * (elapsed - submit)); As this issue was sporadic and seen only on upstream CI, having this assert helps to know why timeout occurred. So I'd suggest to keep the assert. >> >> >> BR >> Himal >> >> >>> Thanks, >>> Anshuman. >>>> >>>> Thanks for pointing this. >>>> >>>> Himal >>>> >>>> >>>>>> >>>>>> This reverts commit 92825ed72be61c5419d95db944fef1c9dda2215a. >>>>>> >>>>>> Cc: Matthew Brost <matthew.brost@intel.com> >>>>>> Cc: Badal Nilawar <badal.nilawar@intel.com> >>>>>> Cc: Riana Tauro <riana.tauro@intel.com> >>>>>> Cc: Anshuman Gupta <anshuman.gupta@intel.com> >>>>>> Cc: Karthik Poosa <karthik.poosa@intel.com> >>>>>> Signed-off-by: Himal Prasad Ghimiray >>>>>> <himal.prasad.ghimiray@intel.com> >>>>>> --- >>>>>> tests/intel/xe_pm_residency.c | 9 --------- >>>>>> 1 file changed, 9 deletions(-) >>>>>> >>>>>> diff --git a/tests/intel/xe_pm_residency.c >>>>>> b/tests/intel/xe_pm_residency.c index 772fe9b57..f4d05889c 100644 >>>>>> --- a/tests/intel/xe_pm_residency.c >>>>>> +++ b/tests/intel/xe_pm_residency.c >>>>>> @@ -144,15 +144,6 @@ static void exec_load(int fd, struct >>>>>> drm_xe_engine_class_instance *hwe, unsigned >>>>>> 1e-3 * submit, >>>>>> 1e-3 * (elapsed - submit)); >>>>>> >>>>>> - /* >>>>>> - * MI_STORE_DWORD generally completes within couple of >>>>>> ms. >>>>>> - * Assert if it takes more than 1.2 seconds, as it will >>>>>> cause >>>>>> - * IGT test to timeout due to sleep of 120 seconds which is >>>>>> - * the current per test timeout. Currently there is no >>>>>> way to >>>>>> - * read this timeout from IGT test. >>>>>> - */ >>>>>> - igt_assert((uint64_t)elapsed < (uint64_t)(1.2 * >>>>>> NSEC_PER_SEC)); >>>>>> - >>>>>> syncobj_reset(fd, &syncobj, 1); >>>>>> >>>>>> /* >>>>>> -- >>>>>> 2.34.1 >>>>> >>> >> ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ CI.xeFULL: failure for series starting with [i-g-t,1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" 2024-10-07 17:23 [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" Himal Prasad Ghimiray ` (4 preceding siblings ...) 2024-10-08 2:01 ` [PATCH i-g-t 1/2] " Gupta, Anshuman @ 2024-10-08 8:55 ` Patchwork 2024-10-08 20:06 ` ✗ Fi.CI.IGT: " Patchwork 6 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2024-10-08 8:55 UTC (permalink / raw) To: Himal Prasad Ghimiray; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 46071 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" URL : https://patchwork.freedesktop.org/series/139648/ State : failure == Summary == CI Bug Log - changes from XEIGT_8054_full -> XEIGTPW_11881_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11881_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11881_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11881_full: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html * igt@kms_psr@fbc-psr-cursor-blt@edp-1: - shard-lnl: [PASS][2] -> [FAIL][3] +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-5/igt@kms_psr@fbc-psr-cursor-blt@edp-1.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-7/igt@kms_psr@fbc-psr-cursor-blt@edp-1.html * igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-system: - shard-lnl: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-system.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-6/igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-system.html #### Warnings #### * igt@kms_vrr@flip-suspend@pipe-a-edp-1: - shard-lnl: [FAIL][6] ([Intel XE#2443]) -> [INCOMPLETE][7] +1 other test incomplete [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-8/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - {shard-bmg}: [PASS][8] -> [INCOMPLETE][9] +2 other tests incomplete [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html Known issues ------------ Here are the changes found in XEIGTPW_11881_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1466]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: [PASS][11] -> [FAIL][12] ([Intel XE#1659]) +1 other test fail [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#316]) +4 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +7 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +15 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#2191]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-463/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1512]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#367]) +4 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#787]) +97 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#455] / [Intel XE#787]) +27 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +7 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2907]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][23] ([Intel XE#1195] / [Intel XE#1727]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][24] ([Intel XE#1195]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1152]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-464/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#306]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-3/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#306]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-463/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#373]) +10 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-432/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#373]) +5 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-5/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#307]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-466/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-1: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#599]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-7/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][32] ([Intel XE#1188]) +1 other test fail [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-464/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#308]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1424]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2321]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#309]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [PASS][37] -> [FAIL][38] ([Intel XE#1475]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([i915#3804]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-433/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#776]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-466/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-3x: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#703]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-432/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1138]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-464/igt@kms_feature_discovery@display-4x.html - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1138]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-5/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][44] -> [FAIL][45] ([Intel XE#301]) +1 other test fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#301]) +1 other test fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1421]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-1/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: NOTRUN -> [FAIL][48] ([Intel XE#886]) +1 other test fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@plain-flip-ts-check: - shard-lnl: [PASS][49] -> [FAIL][50] ([Intel XE#886]) +3 other tests fail [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-5/igt@kms_flip@plain-flip-ts-check.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-1/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1397]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([i915#5274]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-435/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#651]) +8 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#656]) +24 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#651]) +34 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#658]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#653]) +35 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#1158]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-464/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_hdmi_inject@inject-audio: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1470] / [Intel XE#2853]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-2/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-lnl: NOTRUN -> [INCOMPLETE][61] ([Intel XE#1616]) +1 other test incomplete [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-4: - shard-lnl: [PASS][62] -> [DMESG-WARN][63] ([Intel XE#324]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-4.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-7/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-4.html * igt@kms_plane@plane-position-hole@pipe-a-plane-4: - shard-lnl: [PASS][64] -> [DMESG-FAIL][65] ([Intel XE#324]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-3/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [PASS][66] -> [FAIL][67] ([Intel XE#616]) +1 other test fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-466/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-432/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#2763]) +11 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#908]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-432/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#1129]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-433/igt@kms_pm_dc@dc6-psr.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1489]) +6 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-432/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#2893]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1128]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1406]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-8/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@fbc-pr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-463/igt@kms_psr@fbc-pr-dpms.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#327]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1127]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1127]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1437]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#455]) +22 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-432/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flipline: - shard-lnl: [PASS][81] -> [FAIL][82] ([Intel XE#2443]) +1 other test fail [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-4/igt@kms_vrr@flipline.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-6/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#756]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-463/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@xe_ccs@suspend-resume: - shard-lnl: [PASS][84] -> [INCOMPLETE][85] ([Intel XE#2760]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@xe_ccs@suspend-resume.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-6/igt@xe_ccs@suspend-resume.html * igt@xe_compute@ccs-mode-basic: - shard-dg2-set2: NOTRUN -> [FAIL][86] ([Intel XE#1050]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-436/igt@xe_compute@ccs-mode-basic.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1123]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_eudebug@basic-vm-bind: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#2905]) +6 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-432/igt@xe_eudebug@basic-vm-bind.html * igt@xe_eudebug@read-metadata: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#2905]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-5/igt@xe_eudebug@read-metadata.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][90] ([Intel XE#1473]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][91] -> [TIMEOUT][92] ([Intel XE#1473] / [Intel XE#402]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-432/igt@xe_evict@evict-beng-mixed-many-threads-small.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-beng-threads-large: - shard-dg2-set2: [PASS][93] -> [TIMEOUT][94] ([Intel XE#1473]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-464/igt@xe_evict@evict-beng-threads-large.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-466/igt@xe_evict@evict-beng-threads-large.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#688]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1392]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate: - shard-lnl: [PASS][97] -> [FAIL][98] ([Intel XE#2754]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-3/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate.html * igt@xe_exec_compute_mode@twice-userptr-invalidate: - shard-lnl: [PASS][99] -> [DMESG-FAIL][100] ([Intel XE#2687]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-8/igt@xe_exec_compute_mode@twice-userptr-invalidate.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-3/igt@xe_exec_compute_mode@twice-userptr-invalidate.html * igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#288]) +26 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-466/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2229]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-436/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_module_load@force-load: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#378]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-433/igt@xe_module_load@force-load.html * igt@xe_oa@mmio-triggered-reports: - shard-lnl: [PASS][104] -> [FAIL][105] ([Intel XE#2249]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@xe_oa@mmio-triggered-reports.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-3/igt@xe_oa@mmio-triggered-reports.html * igt@xe_oa@mmio-triggered-reports@rcs-0: - shard-lnl: NOTRUN -> [FAIL][106] ([Intel XE#2249]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-3/igt@xe_oa@mmio-triggered-reports@rcs-0.html * igt@xe_oa@polling-small-buf: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#2541]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-466/igt@xe_oa@polling-small-buf.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#2248]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-6/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2838] / [Intel XE#979]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-464/igt@xe_pat@pat-index-xehpc.html * igt@xe_peer2peer@read: - shard-dg2-set2: NOTRUN -> [FAIL][110] ([Intel XE#1173]) +1 other test fail [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-436/igt@xe_peer2peer@read.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-dg2-set2: NOTRUN -> [ABORT][111] ([Intel XE#1358]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-435/igt@xe_pm@s2idle-d3hot-basic-exec.html * igt@xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#944]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-436/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_query@multigpu-query-mem-usage: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#944]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-1/igt@xe_query@multigpu-query-mem-usage.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4: - {shard-bmg}: [DMESG-WARN][114] ([Intel XE#1033]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-bmg-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs: - shard-lnl: [FAIL][116] ([Intel XE#1701]) -> [PASS][117] +3 other tests pass [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-lnl: [FAIL][118] ([Intel XE#1659]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - {shard-bmg}: [FAIL][120] ([Intel XE#301]) -> [PASS][121] +2 other tests pass [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [FAIL][122] ([Intel XE#301]) -> [PASS][123] +1 other test pass [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6: - shard-dg2-set2: [FAIL][124] ([Intel XE#301]) -> [PASS][125] +1 other test pass [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html * igt@kms_flip@flip-vs-suspend: - shard-lnl: [INCOMPLETE][126] ([Intel XE#2049]) -> [PASS][127] +1 other test pass [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-2/igt@kms_flip@flip-vs-suspend.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-2/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@plain-flip-fb-recreate@b-edp1: - shard-lnl: [FAIL][128] ([Intel XE#886]) -> [PASS][129] +5 other tests pass [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-5/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html * igt@kms_plane@plane-position-covered@pipe-a-plane-3: - shard-lnl: [DMESG-FAIL][130] ([Intel XE#324]) -> [PASS][131] +1 other test pass [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-1/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3: - shard-lnl: [DMESG-WARN][132] ([Intel XE#324]) -> [PASS][133] +6 other tests pass [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-7/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][134] ([Intel XE#718]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_rpm@legacy-planes: - shard-lnl: [INCOMPLETE][136] ([Intel XE#1620] / [Intel XE#2864]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_pm_rpm@legacy-planes.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-2/igt@kms_pm_rpm@legacy-planes.html * igt@kms_pm_rpm@legacy-planes@plane-41: - shard-lnl: [DMESG-FAIL][138] ([Intel XE#1620]) -> [PASS][139] +1 other test pass [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_pm_rpm@legacy-planes@plane-41.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-2/igt@kms_pm_rpm@legacy-planes@plane-41.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [FAIL][140] ([Intel XE#899]) -> [PASS][141] +2 other tests pass [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@xe_exec_threads@threads-hang-fd-userptr-rebind: - shard-lnl: [ABORT][142] -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-1/igt@xe_exec_threads@threads-hang-fd-userptr-rebind.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-7/igt@xe_exec_threads@threads-hang-fd-userptr-rebind.html * igt@xe_module_load@reload: - shard-dg2-set2: [FAIL][144] ([Intel XE#2136]) -> [PASS][145] [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-464/igt@xe_module_load@reload.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-436/igt@xe_module_load@reload.html - {shard-bmg}: [FAIL][146] ([Intel XE#2136]) -> [PASS][147] [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-4/igt@xe_module_load@reload.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-bmg-3/igt@xe_module_load@reload.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-lnl: [INCOMPLETE][148] ([Intel XE#1358] / [Intel XE#1616]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@xe_pm@s2idle-d3hot-basic-exec.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-3/igt@xe_pm@s2idle-d3hot-basic-exec.html * igt@xe_pm@s4-basic-exec: - shard-lnl: [ABORT][150] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][151] [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-2/igt@xe_pm@s4-basic-exec.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-lnl-4/igt@xe_pm@s4-basic-exec.html #### Warnings #### * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-dg2-set2: [INCOMPLETE][152] ([Intel XE#1195]) -> [TIMEOUT][153] ([Intel XE#2961]) +1 other test timeout [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-435/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/shard-dg2-464/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#1050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 [Intel XE#1656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1656 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2055]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2687 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754 [Intel XE#2760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2760 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2931]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2931 [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8054 -> IGTPW_11881 * Linux: xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965 -> xe-2018-1f72b793ff063e3519fc58ca3f3e83854b990ee7 IGTPW_11881: a74005f662acace740ba6291871111d001f36131 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965: 92d12099cc768f36cf676ee1b014442a5c5ba965 xe-2018-1f72b793ff063e3519fc58ca3f3e83854b990ee7: 1f72b793ff063e3519fc58ca3f3e83854b990ee7 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11881/index.html [-- Attachment #2: Type: text/html, Size: 48602 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" 2024-10-07 17:23 [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" Himal Prasad Ghimiray ` (5 preceding siblings ...) 2024-10-08 8:55 ` ✗ CI.xeFULL: failure for series starting with [i-g-t,1/2] " Patchwork @ 2024-10-08 20:06 ` Patchwork 6 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2024-10-08 20:06 UTC (permalink / raw) To: Himal Prasad Ghimiray; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100334 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" URL : https://patchwork.freedesktop.org/series/139648/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15486_full -> IGTPW_11881_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11881_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11881_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/index.html Participating hosts (9 -> 8) ------------------------------ Missing (1): shard-glk Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11881_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-dg2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-mtlp: [PASS][3] -> [FAIL][4] +2 other tests fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-mtlp-6/igt@perf@gen12-group-concurrent-oa-buffer-read.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-3/igt@perf@gen12-group-concurrent-oa-buffer-read.html Known issues ------------ Here are the changes found in IGTPW_11881_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-12/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#6230]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-4/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][7] ([i915#6230]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-13/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][8] ([i915#6230]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-5/igt@api_intel_bb@crc32.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-19/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +8 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@drm_fdinfo@busy-check-all@vecs1.html * igt@gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#3936]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-12/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#3936]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-3/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-16/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#9323]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#9323]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-3/igt@gem_ccs@suspend-resume.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#6335]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-3/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8562]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-stop.html - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@legacy-engines-hostile: - shard-snb: NOTRUN -> [SKIP][21] ([i915#1099]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-snb4/igt@gem_ctx_persistence@legacy-engines-hostile.html * igt@gem_ctx_sseu@engines: - shard-tglu: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-3/igt@gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][25] -> [ABORT][26] ([i915#7975] / [i915#8213]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg1-19/igt@gem_eio@hibernate.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-14/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][27] -> [FAIL][28] ([i915#5784]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg1-17/igt@gem_eio@reset-stress.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-12/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][30] ([i915#2842]) +1 other test fail [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-4/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo: - shard-rkl: NOTRUN -> [FAIL][31] ([i915#2842]) +1 other test fail [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-3/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-throttle: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#3539]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-12/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#4812]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-15/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +4 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-13/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-range-active: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3281]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-1/igt@gem_exec_reloc@basic-range-active.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#3281]) +15 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-3/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-write-read: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) +5 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-12/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +11 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-11/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4537]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-1/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@pi-common@vcs0: - shard-rkl: NOTRUN -> [FAIL][41] ([i915#12296]) +4 other tests fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-4/igt@gem_exec_schedule@pi-common@vcs0.html * igt@gem_exec_schedule@pi-ringfull@bcs0: - shard-tglu: NOTRUN -> [FAIL][42] ([i915#12296]) +5 other tests fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-2/igt@gem_exec_schedule@pi-ringfull@bcs0.html * igt@gem_exec_schedule@pi-ringfull@vecs0: - shard-dg1: NOTRUN -> [FAIL][43] ([i915#12296]) +5 other tests fail [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-12/igt@gem_exec_schedule@pi-ringfull@vecs0.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#7276]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-2/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices: - shard-rkl: NOTRUN -> [ABORT][47] ([i915#7975] / [i915#8213]) +1 other test abort [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4860]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences.html - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4860]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-5/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@verify-random: - shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-8/igt@gem_lmem_swapping@verify-random.html - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4613]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-3/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#284]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-5/igt@gem_media_vme.html - shard-tglu: NOTRUN -> [SKIP][55] ([i915#284]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-6/igt@gem_media_vme.html * igt@gem_mmap@pf-nonblock: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4083]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-5/igt@gem_mmap@pf-nonblock.html * igt@gem_mmap_gtt@basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4077]) +7 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-14/igt@gem_mmap_gtt@basic-small-copy-odd.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +10 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-1/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_gtt@hang-busy: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4077]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-6/igt@gem_mmap_gtt@hang-busy.html * igt@gem_mmap_wc@read: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-7/igt@gem_mmap_wc@read.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4083]) +7 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-19/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@reads: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-19/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-6/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_pread@bench: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282]) +8 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-4/igt@gem_pread@bench.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +7 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-1/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-context-1: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4270]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-3/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@display-protected-crc: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#4270]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-4/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#4270]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-4/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4270]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-15/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4270]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-8/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#8428]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-7/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#5190] / [i915#8428]) +6 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-8/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4885]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-5/igt@gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4885]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-12/igt@gem_softpin@evict-snoop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4885]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-3/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3297]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-15/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282] / [i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-5/igt@gem_userptr_blits@forbidden-operations.html - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3282] / [i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-16/igt@gem_userptr_blits@forbidden-operations.html - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3282] / [i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-1/igt@gem_userptr_blits@forbidden-operations.html - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3282] / [i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-7/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#3297]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-2/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#3297]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@allowed-all: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#2527]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-8/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#2527]) +4 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-14/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#2856]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@gen9_exec_parse@unaligned-access.html - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-2/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@load: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#6227]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-2/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: NOTRUN -> [ABORT][91] ([i915#9820]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][92] -> [ABORT][93] ([i915#9820]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [PASS][94] -> [ABORT][95] ([i915#9820]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#6412]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-3/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#8399]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-8/igt@i915_pm_freq_api@freq-reset.html - shard-rkl: NOTRUN -> [SKIP][98] ([i915#8399]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-2/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][99] ([i915#2681]) +1 other test warn [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-dg1: [PASS][100] -> [FAIL][101] ([i915#3591]) +1 other test fail [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#6245]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-2/igt@i915_query@hwconfig_table.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4212]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4215]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-17/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4212]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-18/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#4212]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-8/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#8709]) +7 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#6228]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-7/igt@kms_async_flips@invalid-async-flip.html - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6228]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-1/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#9531]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#1769] / [i915#3555]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#5286]) +7 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-4/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5286]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-19/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#5286]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-15/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#5286]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#3638]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#3638]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-14/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5190]) +13 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#5190]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-mtlp: NOTRUN -> [SKIP][120] +8 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538]) +5 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#9197]) +15 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#12313]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#6095]) +111 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6095]) +24 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#12313]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#12313]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-14/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#12313]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#6095]) +83 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#6095]) +165 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-10/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#6095]) +49 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#12313]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#10307] / [i915#10434] / [i915#6095]) +6 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#4087]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][135] +18 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#7828]) +11 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-7/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#7828]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-8/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#7828]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#7828]) +8 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-7/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#7828]) +6 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-13/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#3116] / [i915#3299]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#3299]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][143] ([i915#3116]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3299]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#3299]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-12/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#7118]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][147] ([i915#7116]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-16/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#6944]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#7118] / [i915#9424]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-8/igt@kms_content_protection@type1.html - shard-rkl: NOTRUN -> [SKIP][150] ([i915#7118] / [i915#9424]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-5/igt@kms_content_protection@type1.html - shard-dg1: NOTRUN -> [SKIP][151] ([i915#7116] / [i915#9424]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-13/igt@kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#6944] / [i915#9424]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-7/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-7/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#3555] / [i915#8814]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#3555]) +9 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#3555]) +4 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-19/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#11453]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-dg2: NOTRUN -> [SKIP][158] ([i915#11453]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#11453]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-18/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#11453]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][161] +42 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#9809]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-2/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#4103] / [i915#4213]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-19/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - shard-dg2: [PASS][164] -> [SKIP][165] ([i915#9197]) +11 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-5/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#4103]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#4213]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][168] ([i915#4103]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#9833]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#9723]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-12/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][171] ([i915#9723]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555]) +7 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-1/igt@kms_display_modes@extended-mode-basic.html - shard-tglu: NOTRUN -> [SKIP][173] ([i915#3555]) +4 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-5/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3804]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#3840]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#3840]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-10/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][177] ([i915#3840]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#3840]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-4/igt@kms_dsc@dsc-with-output-formats.html - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#3840]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#3840] / [i915#9053]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [PASS][181] -> [SKIP][182] ([i915#1849]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-7/igt@kms_fbcon_fbt@fbc-suspend.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#1839]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-5/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#1839]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-8/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#658]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-13/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3637]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-1/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#8381]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#3637] / [i915#3966]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-2/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#3637]) +5 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#9934]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-19/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#8381]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-4/igt@kms_flip@flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#8381]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-2/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-panning: - shard-dg2: [PASS][193] -> [SKIP][194] ([i915#5354]) +4 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-3/igt@kms_flip@flip-vs-panning.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@kms_flip@flip-vs-panning.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#2587] / [i915#2672]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#2672]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#2672]) +4 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#2672] / [i915#3555]) +4 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#2672] / [i915#3555] / [i915#5190]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][202] ([i915#2587] / [i915#2672] / [i915#3555]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-tglu: NOTRUN -> [SKIP][203] ([i915#2587] / [i915#2672] / [i915#3555]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#2587] / [i915#2672]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#2672] / [i915#3555]) +4 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#2672] / [i915#3555]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#8708]) +5 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#8708]) +27 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-snb: [PASS][210] -> [SKIP][211] +3 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#3023]) +31 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][213] +32 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#5354]) +40 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#1825]) +51 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3458]) +16 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#10433] / [i915#3458]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#3458]) +18 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#8708]) +22 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#1825]) +11 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][221] +99 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#6118]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-3/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@invalid-hdr: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-7/igt@kms_hdr@invalid-hdr.html - shard-rkl: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-5/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle: - shard-dg2: [PASS][225] -> [SKIP][226] ([i915#3555] / [i915#8228]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-10/igt@kms_hdr@static-toggle.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-8/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#10656]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-7/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#10656]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-4/igt@kms_joiner@basic-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][229] ([i915#10656]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-12/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#12339]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-7/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#10656]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-8/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][232] ([i915#10656]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-4/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#6301]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][234] ([i915#6301]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-16/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@plane-panning-bottom-right: - shard-dg2: [PASS][235] -> [SKIP][236] ([i915#8825]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-8/igt@kms_plane@plane-panning-bottom-right.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8821]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-1/igt@kms_plane_lowres@tiling-y.html - shard-dg2: NOTRUN -> [SKIP][238] ([i915#8821]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-3/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8821]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-y: - shard-dg1: [PASS][240] -> [DMESG-WARN][241] ([i915#4423]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg1-13/igt@kms_plane_multiple@tiling-y.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-13/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][242] ([i915#8292]) +1 other test fail [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: - shard-dg2: [PASS][243] -> [SKIP][244] ([i915#12247] / [i915#8152] / [i915#9423]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][246] ([i915#12247] / [i915#6953]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][247] ([i915#12247] / [i915#6953]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#12247] / [i915#6953]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#12247]) +7 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#12247]) +16 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-dg2: [PASS][251] -> [SKIP][252] ([i915#6953] / [i915#8152] / [i915#9423]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#12247] / [i915#6953]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#12247]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#12247]) +11 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#6953]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#12247] / [i915#3555] / [i915#9423]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d: - shard-dg2: [PASS][258] -> [SKIP][259] ([i915#12247] / [i915#8152]) +3 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#12247]) +7 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-dg2: [PASS][261] -> [SKIP][262] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/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-dg2: [PASS][263] -> [SKIP][264] ([i915#12247]) +11 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#12343]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-7/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#5354]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-15/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu: NOTRUN -> [SKIP][267] ([i915#9685]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#5978]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#8430]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-5/igt@kms_pm_lpsp@screens-disabled.html - shard-tglu: NOTRUN -> [SKIP][270] ([i915#8430]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-10/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#9519]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][272] ([i915#9519]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-19/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#9519]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][274] -> [SKIP][275] ([i915#9519]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#6524]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-4/igt@kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][277] ([i915#6524]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#6524]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-15/igt@kms_prime@basic-modeset-hybrid.html - shard-dg2: NOTRUN -> [SKIP][279] ([i915#6524] / [i915#6805]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#6524]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-5/igt@kms_prime@d3hot.html * igt@kms_properties@plane-properties-legacy: - shard-dg2: [PASS][281] -> [SKIP][282] ([i915#11521]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-10/igt@kms_properties@plane-properties-legacy.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@kms_properties@plane-properties-legacy.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#11520]) +9 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][284] ([i915#11520]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-snb2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#11520]) +8 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#12316]) +4 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#9808]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#11520]) +9 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#11520]) +5 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-16/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#9683]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][291] ([i915#9683]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-blt: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#1072] / [i915#9732]) +20 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-14/igt@kms_psr@fbc-pr-sprite-blt.html * igt@kms_psr@fbc-psr2-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#9732]) +27 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-6/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html * igt@kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#9688]) +11 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-7/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#1072] / [i915#9732]) +21 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-1/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#1072] / [i915#9732]) +30 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-4/igt@kms_psr@psr2-suspend.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#9685]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-13/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#5289]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][299] ([i915#5289]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#5289]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg2: NOTRUN -> [SKIP][301] ([i915#5190] / [i915#9197]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#5289]) +2 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#11131]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][304] ([IGT#2]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-8/igt@kms_sysfs_edid_timing.html * igt@kms_vrr@max-min: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#9906]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-8/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#3555] / [i915#9906]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-12/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#9906]) +2 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#9906]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-fb-id: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#2437]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-7/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#2437]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-16/igt@kms_writeback@writeback-invalid-parameters.html - shard-tglu: NOTRUN -> [SKIP][311] ([i915#2437]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-4/igt@kms_writeback@writeback-invalid-parameters.html - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#2437]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-5/igt@kms_writeback@writeback-invalid-parameters.html - shard-dg2: NOTRUN -> [SKIP][313] ([i915#2437]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-4/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#2437] / [i915#9412]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-8/igt@kms_writeback@writeback-pixel-formats.html - shard-dg1: NOTRUN -> [SKIP][315] ([i915#2437] / [i915#9412]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-18/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#2436]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#7387]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-8/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: NOTRUN -> [SKIP][318] ([i915#8516]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-4/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#8516]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-6/igt@perf_pmu@rc6@other-idle-gt0.html * igt@perf_pmu@semaphore-busy: - shard-mtlp: [PASS][320] -> [FAIL][321] ([i915#4349]) +1 other test fail [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-mtlp-3/igt@perf_pmu@semaphore-busy.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-6/igt@perf_pmu@semaphore-busy.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [PASS][322] -> [FAIL][323] ([i915#4349]) +3 other tests fail [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [PASS][324] -> [FAIL][325] ([i915#4349]) +5 other tests fail [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-10/igt@perf_pmu@semaphore-busy@vecs0.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@perf_pmu@semaphore-busy@vecs0.html * igt@prime_vgem@basic-read: - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#3708]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-1/igt@prime_vgem@basic-read.html - shard-dg1: NOTRUN -> [SKIP][327] ([i915#3708]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-16/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#3708] / [i915#4077]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-5/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#3708]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-7/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#9917]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-7/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg1: NOTRUN -> [FAIL][331] ([i915#9781]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-18/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-tglu: NOTRUN -> [FAIL][332] ([i915#9781]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-2/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@sysfs_heartbeat_interval@precise: - shard-snb: NOTRUN -> [SKIP][333] +125 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-snb1/igt@sysfs_heartbeat_interval@precise.html * igt@tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][334] ([i915#4818]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-18/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][335] ([i915#9846]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_eio@kms: - shard-dg2: [FAIL][337] ([i915#5784]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-6/igt@gem_eio@kms.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-8/igt@gem_eio@kms.html * igt@gem_eio@suspend: - shard-dg2: [DMESG-FAIL][339] -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@gem_eio@suspend.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-4/igt@gem_eio@suspend.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][341] ([i915#5784]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg1-13/igt@gem_eio@unwedge-stress.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-18/igt@gem_eio@unwedge-stress.html * igt@i915_module_load@reload-no-display: - shard-snb: [ABORT][343] ([i915#11703]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-snb1/igt@i915_module_load@reload-no-display.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-snb2/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][345] ([i915#9820]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rpm@gem-idle: - shard-dg1: [DMESG-WARN][347] ([i915#4423]) -> [PASS][348] +1 other test pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg1-15/igt@i915_pm_rpm@gem-idle.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-12/igt@i915_pm_rpm@gem-idle.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][349] ([i915#7984]) -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-mtlp-8/igt@i915_power@sanity.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-7/igt@i915_power@sanity.html * igt@kms_cursor_crc@cursor-suspend: - shard-snb: [ABORT][351] -> [PASS][352] +1 other test pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-snb6/igt@kms_cursor_crc@cursor-suspend.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-snb5/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-mtlp: [FAIL][353] ([i915#2346]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-mtlp-6/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1: - shard-snb: [FAIL][355] ([i915#2122]) -> [PASS][356] +1 other test pass [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-snb1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@blocking-wf_vblank@b-hdmi-a1: - shard-tglu: [FAIL][357] ([i915#2122]) -> [PASS][358] +2 other tests pass [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-tglu-2/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-tglu-4/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3: - shard-dg2: [FAIL][359] ([i915#79]) -> [PASS][360] +1 other test pass [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: [FAIL][361] ([i915#6880]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt: - shard-dg2: [SKIP][363] ([i915#5354]) -> [PASS][364] +12 other tests pass [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: [SKIP][365] ([i915#3555] / [i915#8228]) -> [PASS][366] [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_invalid_mode@bad-vtotal: - shard-dg2: [SKIP][367] ([i915#3555]) -> [PASS][368] +2 other tests pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_invalid_mode@bad-vtotal.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-1/igt@kms_invalid_mode@bad-vtotal.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-dg1: [ABORT][369] -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg1-16/igt@kms_pipe_crc_basic@suspend-read-crc.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-15/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_plane@pixel-format: - shard-dg2: [SKIP][371] ([i915#8825]) -> [PASS][372] +1 other test pass [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_plane@pixel-format.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-4/igt@kms_plane@pixel-format.html * igt@kms_plane_alpha_blend@constant-alpha-mid: - shard-dg2: [SKIP][373] ([i915#7294]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-mid.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-4/igt@kms_plane_alpha_blend@constant-alpha-mid.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: [SKIP][375] ([i915#6953] / [i915#9423]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b: - shard-dg2: [SKIP][377] ([i915#12247]) -> [PASS][378] +14 other tests pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-dg2: [SKIP][379] ([i915#8152] / [i915#9423]) -> [PASS][380] +1 other test pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d: - shard-dg2: [SKIP][381] ([i915#8152]) -> [PASS][382] +2 other tests pass [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation: - shard-dg2: [SKIP][383] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d: - shard-dg2: [SKIP][385] ([i915#12247] / [i915#8152]) -> [PASS][386] +1 other test pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-dg2: [SKIP][387] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][388] +1 other test pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][389] ([i915#9340]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-rkl-1/igt@kms_pm_lpsp@kms-lpsp.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][391] ([i915#9519]) -> [PASS][392] +2 other tests pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [SKIP][393] ([i915#9519]) -> [PASS][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_properties@crtc-properties-atomic: - shard-dg2: [SKIP][395] ([i915#11521]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_properties@crtc-properties-atomic.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-1/igt@kms_properties@crtc-properties-atomic.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [FAIL][397] ([i915#9196]) -> [PASS][398] +1 other test pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_vblank@ts-continuation-idle-hang: - shard-dg2: [SKIP][399] ([i915#9197]) -> [PASS][400] +26 other tests pass [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_vblank@ts-continuation-idle-hang.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-4/igt@kms_vblank@ts-continuation-idle-hang.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [ABORT][401] ([i915#11814]) -> [ABORT][402] ([i915#11814] / [i915#11815]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@gem_ctx_engines@invalid-engines: - shard-mtlp: [FAIL][403] ([i915#12027]) -> [FAIL][404] ([i915#12031]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-mtlp-3/igt@gem_ctx_engines@invalid-engines.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-6/igt@gem_ctx_engines@invalid-engines.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][405] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][406] ([i915#10131] / [i915#9820]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: [SKIP][407] ([i915#9197]) -> [SKIP][408] ([i915#1769] / [i915#3555]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2: [SKIP][409] ([i915#9197]) -> [SKIP][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2: [SKIP][411] ([i915#5190] / [i915#9197]) -> [SKIP][412] ([i915#4538] / [i915#5190]) +3 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: [SKIP][413] ([i915#4538] / [i915#5190]) -> [SKIP][414] ([i915#5190] / [i915#9197]) +1 other test skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc: - shard-dg2: [SKIP][415] ([i915#9197]) -> [SKIP][416] ([i915#10307] / [i915#6095]) +10 other tests skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-3/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs: - shard-dg1: [SKIP][417] ([i915#4423] / [i915#6095]) -> [SKIP][418] ([i915#6095]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-19/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2: [SKIP][419] ([i915#9197]) -> [SKIP][420] ([i915#12313]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-dg2: [SKIP][421] ([i915#10307] / [i915#6095]) -> [SKIP][422] ([i915#9197]) +5 other tests skip [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-11/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt@kms_color@deep-color: - shard-dg2: [SKIP][423] ([i915#5354]) -> [SKIP][424] ([i915#3555]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_color@deep-color.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-4/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-snb: [INCOMPLETE][425] ([i915#8816]) -> [SKIP][426] [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-snb7/igt@kms_content_protection@atomic-dpms.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-snb5/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@legacy: - shard-dg2: [SKIP][427] ([i915#9197]) -> [SKIP][428] ([i915#7118] / [i915#9424]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_content_protection@legacy.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-6/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-dg2: [SKIP][429] ([i915#9197]) -> [SKIP][430] ([i915#9424]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_content_protection@mei-interface.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-11/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2: [SKIP][431] ([i915#11453]) -> [SKIP][432] ([i915#9197]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x170.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: [SKIP][433] ([i915#9197]) -> [SKIP][434] ([i915#3555]) +2 other tests skip [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: [SKIP][435] ([i915#9197]) -> [SKIP][436] ([i915#4103] / [i915#4213]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: [SKIP][437] ([i915#9197]) -> [SKIP][438] ([i915#5354]) +1 other test skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-1/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: [SKIP][439] ([i915#4103] / [i915#4213]) -> [SKIP][440] ([i915#9197]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg1: [SKIP][441] ([i915#4103] / [i915#4213]) -> [SKIP][442] ([i915#4103] / [i915#4213] / [i915#4423]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15486/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying- == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11881/index.html [-- Attachment #2: Type: text/html, Size: 109154 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2024-10-14 10:38 UTC | newest] Thread overview: 17+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-07 17:23 [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" Himal Prasad Ghimiray 2024-10-07 17:23 ` [PATCH i-g-t 2/2] tests/intel/xe_pm_residency: Limit max usleep time to 50sec Himal Prasad Ghimiray 2024-10-07 17:32 ` Cavitt, Jonathan 2024-10-08 4:13 ` Ghimiray, Himal Prasad 2024-10-08 4:13 ` Poosa, Karthik 2024-10-07 17:31 ` [PATCH i-g-t 1/2] Revert "tests/intel/xe_pm_residency: Add an assertion on MI_STORE execution time" Cavitt, Jonathan 2024-10-14 10:38 ` Gupta, Anshuman 2024-10-07 21:31 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork 2024-10-07 21:36 ` ✓ CI.xeBAT: " Patchwork 2024-10-08 2:01 ` [PATCH i-g-t 1/2] " Gupta, Anshuman 2024-10-08 3:13 ` Ghimiray, Himal Prasad 2024-10-08 3:22 ` Gupta, Anshuman 2024-10-08 3:47 ` Ghimiray, Himal Prasad 2024-10-08 4:47 ` Poosa, Karthik 2024-10-08 5:00 ` Poosa, Karthik 2024-10-08 8:55 ` ✗ CI.xeFULL: failure for series starting with [i-g-t,1/2] " Patchwork 2024-10-08 20:06 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox