* [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes
@ 2025-01-08 22:54 Stuart Summers
2025-01-08 23:38 ` Cavitt, Jonathan
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Stuart Summers @ 2025-01-08 22:54 UTC (permalink / raw)
Cc: igt-dev, Stuart Summers
The test is submitting workloads in a tight loop and then
destroying the exec queue for each of these. There is a
potential that the GuC IDs could get used up during these
submissions and before a GT reset goes through. If that
happens, the subsequent submissions will essentially be
"lost" in that they aren't submitted to GuC and just wait
for a submission timeout to happen, at which point we do
a reset_async in the driver. What seems to be happening
however is these workloads are lingering beyond the
completion of the xe_exec_reset test. Then when the
reset_async eventually goes through, the submissions
from a next test can also hang (or possibly because
they too ran into the guc_id exhaustion case).
Add an explicit vm_unbind before destroying the VM
to give time for those submissions to complete
before the test ends.
https://gitlab.freedesktop.org/drm/xe/kernel/issues/4015
Signed-off-by: Stuart Summers <stuart.summers@intel.com>
---
tests/intel/xe_exec_reset.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c
index a3eaf8bbf..ca5566d11 100644
--- a/tests/intel/xe_exec_reset.c
+++ b/tests/intel/xe_exec_reset.c
@@ -645,6 +645,8 @@ static void submit_jobs(struct gt_thread_data *t)
xe_exec_queue_destroy(fd, exec.exec_queue_id);
}
+ xe_vm_unbind_sync(fd, vm, 0, addr, bo_size);
+
munmap(data, bo_size);
gem_close(fd, bo);
xe_vm_destroy(fd, vm);
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* RE: [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes 2025-01-08 22:54 [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes Stuart Summers @ 2025-01-08 23:38 ` Cavitt, Jonathan 2025-01-09 15:39 ` Summers, Stuart 2025-01-09 0:21 ` ✓ Xe.CI.BAT: success for " Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Cavitt, Jonathan @ 2025-01-08 23:38 UTC (permalink / raw) To: Summers, Stuart Cc: igt-dev@lists.freedesktop.org, Summers, Stuart, Cavitt, Jonathan -----Original Message----- From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Stuart Summers Sent: Wednesday, January 8, 2025 2:54 PM Cc: igt-dev@lists.freedesktop.org; Summers, Stuart <stuart.summers@intel.com> Subject: [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes > > The test is submitting workloads in a tight loop and then > destroying the exec queue for each of these. There is a > potential that the GuC IDs could get used up during these > submissions and before a GT reset goes through. If that > happens, the subsequent submissions will essentially be > "lost" in that they aren't submitted to GuC and just wait > for a submission timeout to happen, at which point we do > a reset_async in the driver. What seems to be happening > however is these workloads are lingering beyond the > completion of the xe_exec_reset test. Then when the > reset_async eventually goes through, the submissions > from a next test can also hang (or possibly because > they too ran into the guc_id exhaustion case). > > Add an explicit vm_unbind before destroying the VM > to give time for those submissions to complete > before the test ends. > > https://gitlab.freedesktop.org/drm/xe/kernel/issues/4015 I think this needs to be: Closes: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4015 But otherwise: Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> Well, assuming this works, at least. I might be reading a bit too far into the commit message and kernel issue comment, but it seems you aren't too certain this will work? -Jonathan Cavitt > > Signed-off-by: Stuart Summers <stuart.summers@intel.com> > --- > tests/intel/xe_exec_reset.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c > index a3eaf8bbf..ca5566d11 100644 > --- a/tests/intel/xe_exec_reset.c > +++ b/tests/intel/xe_exec_reset.c > @@ -645,6 +645,8 @@ static void submit_jobs(struct gt_thread_data *t) > xe_exec_queue_destroy(fd, exec.exec_queue_id); > } > > + xe_vm_unbind_sync(fd, vm, 0, addr, bo_size); > + > munmap(data, bo_size); > gem_close(fd, bo); > xe_vm_destroy(fd, vm); > -- > 2.34.1 > > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes 2025-01-08 23:38 ` Cavitt, Jonathan @ 2025-01-09 15:39 ` Summers, Stuart 2025-01-13 16:00 ` Summers, Stuart 0 siblings, 1 reply; 8+ messages in thread From: Summers, Stuart @ 2025-01-09 15:39 UTC (permalink / raw) To: Cavitt, Jonathan; +Cc: igt-dev@lists.freedesktop.org On Wed, 2025-01-08 at 23:38 +0000, Cavitt, Jonathan wrote: > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > Stuart Summers > Sent: Wednesday, January 8, 2025 2:54 PM > Cc: igt-dev@lists.freedesktop.org; Summers, Stuart > <stuart.summers@intel.com> > Subject: [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind > after the stress test completes > > > > The test is submitting workloads in a tight loop and then > > destroying the exec queue for each of these. There is a > > potential that the GuC IDs could get used up during these > > submissions and before a GT reset goes through. If that > > happens, the subsequent submissions will essentially be > > "lost" in that they aren't submitted to GuC and just wait > > for a submission timeout to happen, at which point we do > > a reset_async in the driver. What seems to be happening > > however is these workloads are lingering beyond the > > completion of the xe_exec_reset test. Then when the > > reset_async eventually goes through, the submissions > > from a next test can also hang (or possibly because > > they too ran into the guc_id exhaustion case). > > > > Add an explicit vm_unbind before destroying the VM > > to give time for those submissions to complete > > before the test ends. > > > > https://gitlab.freedesktop.org/drm/xe/kernel/issues/4015 > > I think this needs to be: > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4015 Ok I'll update. > But otherwise: > Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> Thanks! > Well, assuming this works, at least. I might be reading a bit too > far into the > commit message and kernel issue comment, but it seems you aren't too > certain this will work? Yeah before merging I need to make sure this fully fixes the issue :) This particular test was already passing so just need to review the logs and make sure the cleanup is consistently happening. I'll report back here with the details... Thanks, Stuart > -Jonathan Cavitt > > > > > Signed-off-by: Stuart Summers <stuart.summers@intel.com> > > --- > > tests/intel/xe_exec_reset.c | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/tests/intel/xe_exec_reset.c > > b/tests/intel/xe_exec_reset.c > > index a3eaf8bbf..ca5566d11 100644 > > --- a/tests/intel/xe_exec_reset.c > > +++ b/tests/intel/xe_exec_reset.c > > @@ -645,6 +645,8 @@ static void submit_jobs(struct gt_thread_data > > *t) > > xe_exec_queue_destroy(fd, exec.exec_queue_id); > > } > > > > + xe_vm_unbind_sync(fd, vm, 0, addr, bo_size); > > + > > munmap(data, bo_size); > > gem_close(fd, bo); > > xe_vm_destroy(fd, vm); > > -- > > 2.34.1 > > > > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes 2025-01-09 15:39 ` Summers, Stuart @ 2025-01-13 16:00 ` Summers, Stuart 0 siblings, 0 replies; 8+ messages in thread From: Summers, Stuart @ 2025-01-13 16:00 UTC (permalink / raw) To: Cavitt, Jonathan; +Cc: igt-dev@lists.freedesktop.org On Thu, 2025-01-09 at 15:39 +0000, Summers, Stuart wrote: > On Wed, 2025-01-08 at 23:38 +0000, Cavitt, Jonathan wrote: > > -----Original Message----- > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > > Stuart Summers > > Sent: Wednesday, January 8, 2025 2:54 PM > > Cc: igt-dev@lists.freedesktop.org; Summers, Stuart > > <stuart.summers@intel.com> > > Subject: [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind > > after the stress test completes > > > > > > The test is submitting workloads in a tight loop and then > > > destroying the exec queue for each of these. There is a > > > potential that the GuC IDs could get used up during these > > > submissions and before a GT reset goes through. If that > > > happens, the subsequent submissions will essentially be > > > "lost" in that they aren't submitted to GuC and just wait > > > for a submission timeout to happen, at which point we do > > > a reset_async in the driver. What seems to be happening > > > however is these workloads are lingering beyond the > > > completion of the xe_exec_reset test. Then when the > > > reset_async eventually goes through, the submissions > > > from a next test can also hang (or possibly because > > > they too ran into the guc_id exhaustion case). > > > > > > Add an explicit vm_unbind before destroying the VM > > > to give time for those submissions to complete > > > before the test ends. > > > > > > https://gitlab.freedesktop.org/drm/xe/kernel/issues/4015 > > > > I think this needs to be: > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4015 > > Ok I'll update. > > > But otherwise: > > Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> > > Thanks! > > > Well, assuming this works, at least. I might be reading a bit too > > far into the > > commit message and kernel issue comment, but it seems you aren't > > too > > certain this will work? > > Yeah before merging I need to make sure this fully fixes the issue :) > This particular test was already passing so just need to review the > logs and make sure the cleanup is consistently happening. I'll report > back here with the details... Ok I've done quite a bit of testing here over the past couple of days and I can't reproduce this behavior on the latest without the IGT change I have here. Let's drop this change for now. If this pops back up we can revisit. Thanks for the look here Jonathan! -Stuart > > Thanks, > Stuart > > > -Jonathan Cavitt > > > > > > > > Signed-off-by: Stuart Summers <stuart.summers@intel.com> > > > --- > > > tests/intel/xe_exec_reset.c | 2 ++ > > > 1 file changed, 2 insertions(+) > > > > > > diff --git a/tests/intel/xe_exec_reset.c > > > b/tests/intel/xe_exec_reset.c > > > index a3eaf8bbf..ca5566d11 100644 > > > --- a/tests/intel/xe_exec_reset.c > > > +++ b/tests/intel/xe_exec_reset.c > > > @@ -645,6 +645,8 @@ static void submit_jobs(struct gt_thread_data > > > *t) > > > xe_exec_queue_destroy(fd, exec.exec_queue_id); > > > } > > > > > > + xe_vm_unbind_sync(fd, vm, 0, addr, bo_size); > > > + > > > munmap(data, bo_size); > > > gem_close(fd, bo); > > > xe_vm_destroy(fd, vm); > > > -- > > > 2.34.1 > > > > > > > ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes 2025-01-08 22:54 [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes Stuart Summers 2025-01-08 23:38 ` Cavitt, Jonathan @ 2025-01-09 0:21 ` Patchwork 2025-01-09 0:31 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-01-09 0:21 UTC (permalink / raw) To: Stuart Summers; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3183 bytes --] == Series Details == Series: tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes URL : https://patchwork.freedesktop.org/series/143285/ State : success == Summary == CI Bug Log - changes from XEIGT_8182_BAT -> XEIGTPW_12405_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12405_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/bat-adlp-vf/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/bat-adlp-vf/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@xe_intel_bb@intel-bb-blit-x: - bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3958]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt@xe_intel_bb@intel-bb-blit-x.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/bat-adlp-vf/igt@xe_intel_bb@intel-bb-blit-x.html * igt@xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html #### Warnings #### * igt@xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#3958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3958 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8182 -> IGTPW_12405 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2458-1f1bf8d241872eacfc18a8393862302b8aa8442d IGTPW_12405: 7140501dc07d5da634f3184b506b4060129ffe3a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2458-1f1bf8d241872eacfc18a8393862302b8aa8442d: 1f1bf8d241872eacfc18a8393862302b8aa8442d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/index.html [-- Attachment #2: Type: text/html, Size: 4152 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes 2025-01-08 22:54 [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes Stuart Summers 2025-01-08 23:38 ` Cavitt, Jonathan 2025-01-09 0:21 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2025-01-09 0:31 ` Patchwork 2025-01-11 2:32 ` ✗ Xe.CI.Full: failure " Patchwork 2025-01-11 4:36 ` ✗ i915.CI.Full: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-01-09 0:31 UTC (permalink / raw) To: Stuart Summers; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2740 bytes --] == Series Details == Series: tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes URL : https://patchwork.freedesktop.org/series/143285/ State : success == Summary == CI Bug Log - changes from IGT_8182 -> IGTPW_12405 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12405 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-mtlp-6: [PASS][1] -> [DMESG-FAIL][2] ([i915#13393]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-mtlp-6/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/bat-mtlp-6/igt@i915_selftest@live.html * igt@i915_selftest@live@ring_submission: - fi-cfl-8109u: [PASS][3] -> [DMESG-WARN][4] ([i915#11621]) +33 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/fi-cfl-8109u/igt@i915_selftest@live@ring_submission.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/fi-cfl-8109u/igt@i915_selftest@live@ring_submission.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - {bat-arls-6}: [DMESG-FAIL][5] ([i915#13393]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8182/bat-arls-6/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/bat-arls-6/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8182 -> IGTPW_12405 * Linux: CI_DRM_15924 -> CI_DRM_15927 CI-20190529: 20190529 CI_DRM_15924: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15927: 9e5828f71dbb3bf6dff6a2bcfaa761d048344b2a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12405: 7140501dc07d5da634f3184b506b4060129ffe3a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/index.html [-- Attachment #2: Type: text/html, Size: 3490 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes 2025-01-08 22:54 [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes Stuart Summers ` (2 preceding siblings ...) 2025-01-09 0:31 ` ✓ i915.CI.BAT: " Patchwork @ 2025-01-11 2:32 ` Patchwork 2025-01-11 4:36 ` ✗ i915.CI.Full: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-01-11 2:32 UTC (permalink / raw) To: Summers, Stuart; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 120413 bytes --] == Series Details == Series: tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes URL : https://patchwork.freedesktop.org/series/143285/ State : failure == Summary == CI Bug Log - changes from XEIGT_8182_full -> XEIGTPW_12405_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12405_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12405_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_12405_full: ### IGT changes ### #### Possible regressions #### * igt@core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: [PASS][1] -> [ABORT][2] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@core_hotunplug@hotreplug-lateclose.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-435/igt@core_hotunplug@hotreplug-lateclose.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4: - shard-dg2-set2: [PASS][3] -> [FAIL][4] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html * igt@kms_async_flips@crc-atomic@pipe-b-dp-2: - shard-bmg: [PASS][5] -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt@kms_async_flips@crc-atomic@pipe-b-dp-2.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt@kms_async_flips@crc-atomic@pipe-b-dp-2.html * igt@kms_async_flips@test-cursor@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-3/igt@kms_async_flips@test-cursor@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [ABORT][8] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-dp-2.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-lnl: [PASS][9] -> [DMESG-WARN][10] +5 other tests dmesg-warn [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_psr@psr-primary-page-flip: - shard-lnl: NOTRUN -> [DMESG-WARN][11] +1 other test dmesg-warn [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-7/igt@kms_psr@psr-primary-page-flip.html Known issues ------------ Here are the changes found in XEIGTPW_12405_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@nullptr: - shard-bmg: [PASS][12] -> [SKIP][13] ([Intel XE#2134]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt@fbdev@nullptr.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@fbdev@nullptr.html - shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#2134]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt@fbdev@nullptr.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@fbdev@nullptr.html * igt@kms_async_flips@crc-atomic: - shard-bmg: [PASS][16] -> [INCOMPLETE][17] ([Intel XE#3946]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt@kms_async_flips@crc-atomic.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt@kms_async_flips@crc-atomic.html * igt@kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#873]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_async_flips@invalid-async-flip.html - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#873]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-436/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#316]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1407]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-3/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2327]) +4 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-addfb: - shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt@kms_big_fb@x-tiled-addfb.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_big_fb@x-tiled-addfb.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2136]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1467]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +7 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1124]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +7 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#2314] / [Intel XE#2894]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2314] / [Intel XE#2894]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#2191]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#367]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#367]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#787]) +160 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-dp-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +5 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#455] / [Intel XE#787]) +29 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][39] -> [INCOMPLETE][40] ([Intel XE#3862]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#3432]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#3432]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2887]) +5 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#2907]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#1152]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-433/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#306]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#306]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_edid@dp-edid-read: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#3007]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_chamelium_edid@dp-edid-read.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#373]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-5/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2252]) +6 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#373]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][52] ([Intel XE#1178]) +1 other test fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt@kms_content_protection@atomic.html - shard-dg2-set2: NOTRUN -> [FAIL][53] ([Intel XE#1178]) +1 other test fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-433/igt@kms_content_protection@atomic.html * igt@kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#3278]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2321]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1424]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-3/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#2423] / [i915#2575]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#308]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#2291]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2286]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#309]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#2425]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev: - shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#3009]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt@kms_dp_aux_dev.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#2244]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-6/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#455]) +7 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2374]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@kms_feature_discovery@psr2.html - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#1135]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1421]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-5/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3: - shard-bmg: [PASS][72] -> [FAIL][73] ([Intel XE#3288] / [Intel XE#3321]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][74] -> [FAIL][75] ([Intel XE#3321]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][76] -> [FAIL][77] ([Intel XE#301]) +4 other tests fail [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][78] ([Intel XE#301]) +5 other tests fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#2316]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt@kms_flip@2x-flip-vs-panning-interruptible.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@blocking-wf_vblank: - shard-dg2-set2: [PASS][81] -> [FAIL][82] ([Intel XE#2882]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt@kms_flip@blocking-wf_vblank.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_flip@blocking-wf_vblank.html - shard-lnl: [PASS][83] -> [FAIL][84] ([Intel XE#886]) +2 other tests fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt@kms_flip@blocking-wf_vblank.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-8/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@blocking-wf_vblank@a-hdmi-a6: - shard-dg2-set2: [PASS][85] -> [FAIL][86] ([Intel XE#886]) +1 other test fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt@kms_flip@blocking-wf_vblank@a-hdmi-a6.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_flip@blocking-wf_vblank@a-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank: - shard-bmg: [PASS][87] -> [FAIL][88] ([Intel XE#2882]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3: - shard-bmg: [PASS][89] -> [FAIL][90] ([Intel XE#3321]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: NOTRUN -> [INCOMPLETE][91] ([Intel XE#2597]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@d-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][92] ([Intel XE#2597] / [Intel XE#2635]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1397]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2293]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#651]) +6 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2311]) +19 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][99] -> [SKIP][100] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][101] ([Intel XE#2333]) +6 other tests fail [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#656]) +11 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [PASS][103] -> [SKIP][104] ([Intel XE#2136]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#651]) +10 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#653]) +10 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2312]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#658]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2313]) +15 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-lnl: [PASS][110] -> [INCOMPLETE][111] ([Intel XE#2050]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-suspend.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#3544]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [PASS][113] -> [SKIP][114] ([Intel XE#1503]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt@kms_hdr@invalid-hdr.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_hdr@invalid-hdr.html * igt@kms_histogram@algo-basic: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#3897]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@kms_histogram@algo-basic.html * igt@kms_histogram@algo-color: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#3897]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-8/igt@kms_histogram@algo-color.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#346]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2934]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2925]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#356]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2486]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_panel_fitting@legacy.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][122] ([Intel XE#616]) +2 other tests fail [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#599]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-6/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html * igt@kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#3307]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][125] -> [FAIL][126] ([Intel XE#361]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#2763]) +7 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2763]) +9 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2392]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@kms_pm_dc@dc5-psr.html - shard-lnl: [PASS][130] -> [FAIL][131] ([Intel XE#718]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-bmg: NOTRUN -> [FAIL][132] ([Intel XE#1430]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#1439] / [Intel XE#836]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1439] / [Intel XE#3141]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#1489]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#2893]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#1489]) +5 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1128]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#1406]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt@kms_psr@pr-primary-blt.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2234]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@kms_psr@psr2-primary-render.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2330]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [PASS][144] -> [SKIP][145] ([Intel XE#2423] / [i915#2575]) +13 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-180.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-180.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#3414] / [Intel XE#3904]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#1435]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_sysfs_edid_timing: - shard-bmg: [PASS][148] -> [FAIL][149] ([Intel XE#1174]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt@kms_sysfs_edid_timing.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#1500]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@query-busy: - shard-bmg: [PASS][151] -> [SKIP][152] ([Intel XE#3007]) +12 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt@kms_vblank@query-busy.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_vblank@query-busy.html * igt@kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#1499]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#1499]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#1091] / [Intel XE#2849]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#1280] / [Intel XE#455]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_drm_fdinfo@utilization-single-full-load-isolation: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#1130]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html * igt@xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#3889]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt@xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#3889]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-5/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#2905]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-8/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2905]) +5 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: NOTRUN -> [TIMEOUT][162] ([Intel XE#1473]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-beng-mixed-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#688]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt@xe_evict@evict-beng-mixed-threads-large-multi-vm.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][164] -> [TIMEOUT][165] ([Intel XE#1473]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-small.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind: - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#1392]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind: - shard-dg2-set2: [PASS][167] -> [SKIP][168] ([Intel XE#1392]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#2322]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt@xe_exec_basic@no-exec-basic-defer-bind: - shard-dg2-set2: [PASS][170] -> [SKIP][171] ([Intel XE#1130]) +29 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt@xe_exec_basic@no-exec-basic-defer-bind.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@xe_exec_basic@no-exec-basic-defer-bind.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#288]) +9 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html * igt@xe_exec_fault_mode@once-userptr-invalidate-prefetch: - shard-bmg: [PASS][173] -> [SKIP][174] ([Intel XE#1130]) +36 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt@xe_exec_fault_mode@once-userptr-invalidate-prefetch.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@xe_exec_fault_mode@once-userptr-invalidate-prefetch.html * igt@xe_exec_reset@cm-gt-reset: - shard-bmg: [PASS][175] -> [INCOMPLETE][176] ([Intel XE#3592]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt@xe_exec_reset@cm-gt-reset.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@xe_exec_reset@cm-gt-reset.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#2905]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-433/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_exec_threads@threads-cm-fd-basic: - shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#1130]) +5 other tests skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@xe_exec_threads@threads-cm-fd-basic.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2229]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_live_ktest@xe_migrate: - shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#1192]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html * igt@xe_live_ktest@xe_mocs: - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#1192]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt@xe_live_ktest@xe_mocs.html * igt@xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#512]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-433/igt@xe_mmap@small-bar.html * igt@xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][183] ([Intel XE#2457]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt@xe_module_load@force-load.html * igt@xe_module_load@load: - shard-bmg: ([PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207]) -> ([PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [SKIP][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233]) ([Intel XE#2457]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt@xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt@xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt@xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt@xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt@xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt@xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt@xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt@xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt@xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt@xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt@xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt@xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt@xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt@xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt@xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt@xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt@xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt@xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt@xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt@xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt@xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt@xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt@xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt@xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt@xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt@xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt@xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt@xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt@xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt@xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt@xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@xe_module_load@load.html * igt@xe_oa@disabled-read-error: - shard-dg2-set2: NOTRUN -> [SKIP][234] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt@xe_oa@disabled-read-error.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][235] ([Intel XE#2248]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][236] ([Intel XE#1420]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@xe_pat@pat-index-xehpc.html - shard-dg2-set2: NOTRUN -> [SKIP][237] ([Intel XE#2838] / [Intel XE#979]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@xe_pat@pat-index-xehpc.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][238] ([Intel XE#1173]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][239] ([Intel XE#2284]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][240] ([Intel XE#2284] / [Intel XE#366]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@s2idle-vm-bind-prefetch: - shard-dg2-set2: [PASS][241] -> [ABORT][242] ([Intel XE#1358]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt@xe_pm@s2idle-vm-bind-prefetch.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-prefetch.html * igt@xe_pm@s4-basic-exec: - shard-dg2-set2: [PASS][243] -> [ABORT][244] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt@xe_pm@s4-basic-exec.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt@xe_pm@s4-basic-exec.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-dg2-set2: NOTRUN -> [SKIP][245] ([Intel XE#944]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][246] ([Intel XE#944]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-7/igt@xe_query@multigpu-query-topology-l3-bank-mask.html #### Possible fixes #### * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][247] ([Intel XE#827]) -> [PASS][248] +1 other test pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@test-cursor: - shard-lnl: [SKIP][249] ([Intel XE#664]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt@kms_async_flips@test-cursor.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-3/igt@kms_async_flips@test-cursor.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [SKIP][251] ([Intel XE#2136]) -> [PASS][252] +4 other tests pass [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][253] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][255] ([Intel XE#2291]) -> [PASS][256] +2 other tests pass [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipa-legacy: - shard-bmg: [INCOMPLETE][257] ([Intel XE#3226]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipa-legacy.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][259] ([Intel XE#877]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@torture-bo@pipe-a: - shard-lnl: [DMESG-WARN][261] ([Intel XE#877]) -> [PASS][262] +1 other test pass [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-5/igt@kms_cursor_legacy@torture-bo@pipe-a.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-3/igt@kms_cursor_legacy@torture-bo@pipe-a.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][263] ([Intel XE#1340]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-bmg: [SKIP][265] ([Intel XE#2316]) -> [PASS][266] +1 other test pass [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_flip@2x-dpms-vs-vblank-race.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3: - shard-bmg: [FAIL][267] ([Intel XE#2882] / [Intel XE#3288]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3: - shard-bmg: [FAIL][269] ([Intel XE#3288] / [Intel XE#3321]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3: - shard-bmg: [FAIL][271] ([Intel XE#3321]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html * igt@kms_flip@basic-flip-vs-wf_vblank: - shard-dg2-set2: [FAIL][273] ([Intel XE#3098]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt@kms_flip@basic-flip-vs-wf_vblank.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2-set2: [INCOMPLETE][275] ([Intel XE#3937]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt@kms_flip@flip-vs-blocking-wf-vblank.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-dp4: - shard-dg2-set2: [INCOMPLETE][277] -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt@kms_flip@flip-vs-blocking-wf-vblank@a-dp4.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt@kms_flip@flip-vs-blocking-wf-vblank@a-dp4.html * igt@kms_flip@flip-vs-expired-vblank@a-dp4: - shard-dg2-set2: [FAIL][279] ([Intel XE#3321]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6: - shard-dg2-set2: [FAIL][281] ([Intel XE#301]) -> [PASS][282] +2 other tests pass [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank@c-dp4: - shard-dg2-set2: [FAIL][283] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][284] +1 other test pass [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html * igt@kms_flip@flip-vs-rmfb@d-hdmi-a3: - shard-bmg: [INCOMPLETE][285] -> [PASS][286] +3 other tests pass [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt@kms_flip@flip-vs-rmfb@d-hdmi-a3.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@kms_flip@flip-vs-rmfb@d-hdmi-a3.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][287] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt@kms_flip@flip-vs-suspend.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-436/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@c-dp4: - shard-dg2-set2: [INCOMPLETE][289] ([Intel XE#2049]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt@kms_flip@flip-vs-suspend@c-dp4.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-436/igt@kms_flip@flip-vs-suspend@c-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-bmg: [SKIP][291] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][292] +2 other tests pass [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][293] ([Intel XE#3012]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_lease@possible-crtcs-filtering: - shard-bmg: [SKIP][295] ([Intel XE#3007]) -> [PASS][296] +7 other tests pass [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_lease@possible-crtcs-filtering.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@kms_lease@possible-crtcs-filtering.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: [FAIL][297] ([Intel XE#361]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][299] ([Intel XE#718]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2-set2: [SKIP][301] ([Intel XE#2446]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_rmfb@close-fd: - shard-dg2-set2: [SKIP][303] ([Intel XE#2423] / [i915#2575]) -> [PASS][304] +5 other tests pass [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_rmfb@close-fd.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@kms_rmfb@close-fd.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-lnl: [FAIL][305] ([Intel XE#899]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][307] ([Intel XE#2159]) -> [PASS][308] +1 other test pass [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: [FAIL][309] ([Intel XE#1600]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-433/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_exec_basic@many-execqueues-userptr-invalidate-race: - shard-bmg: [SKIP][311] ([Intel XE#1130]) -> [PASS][312] +18 other tests pass [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@xe_exec_basic@many-execqueues-userptr-invalidate-race.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@xe_exec_basic@many-execqueues-userptr-invalidate-race.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-dg2-set2: [SKIP][313] ([Intel XE#1392]) -> [PASS][314] +2 other tests pass [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-435/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt@xe_exec_basic@once-rebind: - shard-dg2-set2: [SKIP][315] ([Intel XE#1130]) -> [PASS][316] +11 other tests pass [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@xe_exec_basic@once-rebind.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@xe_exec_basic@once-rebind.html * igt@xe_live_ktest@xe_mocs: - shard-bmg: [SKIP][317] ([Intel XE#1192]) -> [PASS][318] +1 other test pass [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt@xe_live_ktest@xe_mocs.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt@xe_live_ktest@xe_mocs.html #### Warnings #### * igt@kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][319] ([Intel XE#2423] / [i915#2575]) -> [SKIP][320] ([Intel XE#3768]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_async_flips@invalid-async-flip-atomic.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][321] ([Intel XE#2327]) -> [SKIP][322] ([Intel XE#2136] / [Intel XE#2231]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html - shard-dg2-set2: [SKIP][323] ([Intel XE#316]) -> [SKIP][324] ([Intel XE#2136] / [Intel XE#2351]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: [SKIP][325] ([Intel XE#316]) -> [SKIP][326] ([Intel XE#2136]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_big_fb@linear-16bpp-rotate-270.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][327] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][328] ([Intel XE#1124]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][329] ([Intel XE#2136]) -> [SKIP][330] ([Intel XE#1124]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-433/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-8bpp-rotate-0: - shard-dg2-set2: [SKIP][331] ([Intel XE#1124]) -> [SKIP][332] ([Intel XE#2136] / [Intel XE#2351]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][333] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][334] ([Intel XE#607]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: [SKIP][335] ([Intel XE#2136]) -> [SKIP][336] ([Intel XE#607]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][337] ([Intel XE#1124]) -> [SKIP][338] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html - shard-dg2-set2: [SKIP][339] ([Intel XE#1124]) -> [SKIP][340] ([Intel XE#2136]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][341] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][342] ([Intel XE#3007]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html - shard-dg2-set2: [SKIP][343] ([Intel XE#2191]) -> [SKIP][344] ([Intel XE#2423] / [i915#2575]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: [SKIP][345] ([Intel XE#367]) -> [SKIP][346] ([Intel XE#2423] / [i915#2575]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html - shard-bmg: [SKIP][347] ([Intel XE#367]) -> [SKIP][348] ([Intel XE#3007]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][349] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][350] ([Intel XE#2887]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][351] ([Intel XE#2887]) -> [SKIP][352] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][353] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][354] ([Intel XE#455] / [Intel XE#787]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][355] ([Intel XE#3432]) -> [SKIP][356] ([Intel XE#2136] / [Intel XE#2231]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][357] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][358] ([Intel XE#2136]) +2 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][359] ([Intel XE#2136]) -> [SKIP][360] ([Intel XE#455] / [Intel XE#787]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_chamelium_hpd@dp-hpd: - shard-bmg: [SKIP][361] ([Intel XE#2252]) -> [SKIP][362] ([Intel XE#3007]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd.html - shard-dg2-set2: [SKIP][363] ([Intel XE#373]) -> [SKIP][364] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt@kms_chamelium_hpd@dp-hpd.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: [SKIP][365] ([Intel XE#3007]) -> [SKIP][366] ([Intel XE#2252]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html - shard-dg2-set2: [SKIP][367] ([Intel XE#2423] / [i915#2575]) -> [SKIP][368] ([Intel XE#373]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt@kms_content_protection@content-type-change: - shard-bmg: [SKIP][369] ([Intel XE#2341]) -> [SKIP][370] ([Intel XE#3007]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_content_protection@content-type-change.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@mei-interface: - shard-bmg: [SKIP][371] ([Intel XE#3007]) -> [SKIP][372] ([Intel XE#2341]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_content_protection@mei-interface.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][373] ([Intel XE#308]) -> [SKIP][374] ([Intel XE#2423] / [i915#2575]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-bmg: [SKIP][375] ([Intel XE#2321]) -> [SKIP][376] ([Intel XE#3007]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: [SKIP][377] ([Intel XE#2320]) -> [SKIP][378] ([Intel XE#3007]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: [SKIP][379] ([Intel XE#3007]) -> [SKIP][380] ([Intel XE#2320]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg2-set2: [SKIP][381] ([Intel XE#2423] / [i915#2575]) -> [SKIP][382] ([Intel XE#455]) +2 other tests skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][383] ([Intel XE#1508]) -> [SKIP][384] ([Intel XE#2136] / [Intel XE#2231]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg2-set2: [SKIP][385] ([Intel XE#455]) -> [SKIP][386] ([Intel XE#2136] / [Intel XE#2351]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2-set2: [SKIP][387] ([Intel XE#455]) -> [SKIP][388] ([Intel XE#2136]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-434/igt@kms_dsc@dsc-with-bpc.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_dsc@dsc-with-bpc.html - shard-bmg: [SKIP][389] ([Intel XE#2244]) -> [SKIP][390] ([Intel XE#2136] / [Intel XE#2231]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt@kms_dsc@dsc-with-bpc.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-bmg: [SKIP][391] ([Intel XE#3007]) -> [SKIP][392] ([Intel XE#2372]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_feature_discovery@chamelium.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@kms_feature_discovery@chamelium.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][393] ([Intel XE#2882] / [Intel XE#3288]) -> [SKIP][394] ([Intel XE#3007]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html - shard-dg2-set2: [FAIL][395] ([Intel XE#301]) -> [SKIP][396] ([Intel XE#2423] / [i915#2575]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][397] ([Intel XE#2597]) -> [SKIP][398] ([Intel XE#3007]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-dg2-set2: [INCOMPLETE][399] ([Intel XE#2049] / [Intel XE#2597]) -> [SKIP][400] ([Intel XE#2423] / [i915#2575]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][401] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][402] ([Intel XE#2293] / [Intel XE#2380]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-dg2-set2: [SKIP][403] ([Intel XE#2136]) -> [SKIP][404] ([Intel XE#455]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][405] ([Intel XE#651]) -> [SKIP][406] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][407] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][408] ([Intel XE#2311]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][409] ([Intel XE#2311]) -> [SKIP][410] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html - shard-dg2-set2: [SKIP][411] ([Intel XE#651]) -> [SKIP][412] ([Intel XE#2136]) +4 other tests skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-dg2-set2: [SKIP][413] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][414] ([Intel XE#651]) [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][415] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][416] ([Intel XE#2312]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][417] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][418] ([Intel XE#2333]) [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [SKIP][419] ([Intel XE#2312]) -> [FAIL][420] ([Intel XE#2333]) +3 other tests fail [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-rte.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: [INCOMPLETE][421] ([Intel XE#2050]) -> [FAIL][422] ([Intel XE#2333]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][423] ([Intel XE#2333]) -> [SKIP][424] ([Intel XE#2312]) +3 other tests skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-bmg: [FAIL][425] ([Intel XE#2333]) -> [SKIP][426] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][427] ([Intel XE#2136]) -> [SKIP][428] ([Intel XE#651]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][429] ([Intel XE#2312]) -> [SKIP][430] ([Intel XE#2311]) +3 other tests skip [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][431] ([Intel XE#2311]) -> [SKIP][432] ([Intel XE#2312]) +10 other tests skip [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][433] ([Intel XE#2136]) -> [SKIP][434] ([Intel XE#653]) +1 other test skip [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][435] ([Intel XE#653]) -> [SKIP][436] ([Intel XE#2136]) +3 other tests skip [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][437] ([Intel XE#2313]) -> [SKIP][438] ([Intel XE#2312]) +9 other tests skip [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][439] ([Intel XE#2312]) -> [SKIP][440] ([Intel XE#2313]) +1 other test skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][441] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][442] ([Intel XE#2313]) +4 other tests skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html - shard-dg2-set2: [SKIP][443] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][444] ([Intel XE#653]) +1 other test skip [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][445] ([Intel XE#2313]) -> [SKIP][446] ([Intel XE#2136] / [Intel XE#2231]) +6 other tests skip [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html - shard-dg2-set2: [SKIP][447] ([Intel XE#653]) -> [SKIP][448] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [ABORT][449] ([Intel XE#2625]) -> [SKIP][450] ([Intel XE#2446]) [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-432/igt@kms_pm_rpm@system-suspend-modeset.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_pm_rpm@system-suspend-modeset.html - shard-bmg: [DMESG-WARN][451] -> [SKIP][452] ([Intel XE#2446]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_pm_rpm@system-suspend-modeset.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-bmg: [SKIP][453] ([Intel XE#1489]) -> [SKIP][454] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html - shard-dg2-set2: [SKIP][455] ([Intel XE#1489]) -> [SKIP][456] ([Intel XE#2136]) +1 other test skip [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][457] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][458] ([Intel XE#2387]) [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg2-set2: [SKIP][459] ([Intel XE#2136]) -> [SKIP][460] ([Intel XE#1122]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_psr2_su@frontbuffer-xrgb8888.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-435/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-primary-page-flip: - shard-bmg: [SKIP][461] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][462] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-4/igt@kms_psr@fbc-pr-primary-page-flip.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_psr@fbc-pr-primary-page-flip.html * igt@kms_psr@fbc-pr-sprite-blt: - shard-bmg: [SKIP][463] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][464] ([Intel XE#2234] / [Intel XE#2850]) [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_psr@fbc-pr-sprite-blt.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-5/igt@kms_psr@fbc-pr-sprite-blt.html - shard-dg2-set2: [SKIP][465] ([Intel XE#2136]) -> [SKIP][466] ([Intel XE#2850] / [Intel XE#929]) [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_psr@fbc-pr-sprite-blt.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt@kms_psr@fbc-pr-sprite-blt.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][467] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][468] ([Intel XE#2136] / [Intel XE#2351]) [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_psr@psr-dpms.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_psr@psr-dpms.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-dg2-set2: [SKIP][469] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][470] ([Intel XE#2136]) +2 other tests skip [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_psr@psr2-cursor-plane-onoff.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: [SKIP][471] ([Intel XE#3414]) -> [SKIP][472] ([Intel XE#2423] / [i915#2575]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-463/igt@kms_rotation_crc@bad-tiling.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_rotation_crc@bad-tiling.html - shard-bmg: [SKIP][473] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][474] ([Intel XE#3007]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_rotation_crc@bad-tiling.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: [SKIP][475] ([Intel XE#3007]) -> [SKIP][476] ([Intel XE#3414] / [Intel XE#3904]) [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg2-set2: [SKIP][477] ([Intel XE#2423] / [i915#2575]) -> [SKIP][478] ([Intel XE#3414]) [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_vrr@flipline: - shard-dg2-set2: [SKIP][479] ([Intel XE#455]) -> [SKIP][480] ([Intel XE#2423] / [i915#2575]) +1 other test skip [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt@kms_vrr@flipline.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_vrr@flipline.html - shard-bmg: [SKIP][481] ([Intel XE#1499]) -> [SKIP][482] ([Intel XE#3007]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt@kms_vrr@flipline.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-bmg: [SKIP][483] ([Intel XE#756]) -> [SKIP][484] ([Intel XE#3007]) [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg2-set2: [SKIP][485] ([Intel XE#756]) -> [SKIP][486] ([Intel XE#2423] / [i915#2575]) [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt@kms_writeback@writeback-fb-id-xrgb2101010.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][487] ([Intel XE#1130]) -> [SKIP][488] ([Intel XE#1280] / [Intel XE#455]) [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@xe_compute_preempt@compute-threadgroup-preempt.html * igt@xe_eudebug@basic-vm-bind-extended-discovery: - shard-dg2-set2: [SKIP][489] ([Intel XE#1130]) -> [SKIP][490] ([Intel XE#2905]) +1 other test skip [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@xe_eudebug@basic-vm-bind-extended-discovery.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-extended-discovery.html - shard-bmg: [SKIP][491] ([Intel XE#1130]) -> [SKIP][492] ([Intel XE#2905]) +1 other test skip [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-extended-discovery.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-extended-discovery.html * igt@xe_eudebug@discovery-empty: - shard-bmg: [SKIP][493] ([Intel XE#2905]) -> [SKIP][494] ([Intel XE#1130]) +2 other tests skip [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt@xe_eudebug@discovery-empty.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@xe_eudebug@discovery-empty.html * igt@xe_eudebug_online@interrupt-other-debuggable: - shard-dg2-set2: [SKIP][495] ([Intel XE#2905]) -> [SKIP][496] ([Intel XE#1130]) +2 other tests skip [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt@xe_eudebug_online@interrupt-other-debuggable.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@xe_eudebug_online@interrupt-other-debuggable.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [TIMEOUT][497] ([Intel XE#1473]) -> [INCOMPLETE][498] ([Intel XE#1473]) [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt@xe_evict@evict-beng-mixed-threads-large.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][499] ([Intel XE#1000]) -> [TIMEOUT][500] ([Intel XE#1473]) [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt@xe_evict@evict-beng-threads-large.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@xe_evict@evict-beng-threads-large.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-bmg: [INCOMPLETE][501] ([Intel XE#1473]) -> [TIMEOUT][502] ([Intel XE#1473]) [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-large.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [FAIL][503] ([Intel XE#1000]) -> [TIMEOUT][504] ([Intel XE#1473] / [Intel XE#2472]) [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-threads-large: - shard-bmg: [FAIL][505] ([Intel XE#1000]) -> [INCOMPLETE][506] ([Intel XE#1473]) [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-8/igt@xe_evict@evict-threads-large.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@xe_evict@evict-threads-large.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][507] ([Intel XE#1130]) -> [SKIP][508] ([Intel XE#2322]) [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@xe_exec_basic@multigpu-once-null-rebind.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-8/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_exec_basic@multigpu-once-userptr-invalidate-race: - shard-bmg: [SKIP][509] ([Intel XE#2322]) -> [SKIP][510] ([Intel XE#1130]) +1 other test skip [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-3/igt@xe_exec_basic@multigpu-once-userptr-invalidate-race.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@xe_exec_basic@multigpu-once-userptr-invalidate-race.html * igt@xe_exec_fault_mode@once-userptr-invalidate-prefetch: - shard-dg2-set2: [SKIP][511] ([Intel XE#288]) -> [SKIP][512] ([Intel XE#1130]) +4 other tests skip [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-433/igt@xe_exec_fault_mode@once-userptr-invalidate-prefetch.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@xe_exec_fault_mode@once-userptr-invalidate-prefetch.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][513] ([Intel XE#1130]) -> [SKIP][514] ([Intel XE#288]) +1 other test skip [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][515] ([Intel XE#1130]) -> [SKIP][516] ([Intel XE#2360]) [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][517] ([Intel XE#2833]) -> [SKIP][518] ([Intel XE#1192]) [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt@xe_live_ktest@xe_eudebug.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html * igt@xe_oa@rc6-disable: - shard-dg2-set2: [SKIP][519] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][520] ([Intel XE#1130]) +1 other test skip [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-464/igt@xe_oa@rc6-disable.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@xe_oa@rc6-disable.html * igt@xe_pat@pat-index-xelp: - shard-bmg: [SKIP][521] ([Intel XE#2245]) -> [SKIP][522] ([Intel XE#1130]) [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-7/igt@xe_pat@pat-index-xelp.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@xe_pat@pat-index-xelp.html * igt@xe_peer2peer@read: - shard-dg2-set2: [SKIP][523] ([Intel XE#1061]) -> [FAIL][524] ([Intel XE#1173]) [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@xe_peer2peer@read.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-463/igt@xe_peer2peer@read.html * igt@xe_query@multigpu-query-mem-usage: - shard-bmg: [SKIP][525] ([Intel XE#944]) -> [SKIP][526] ([Intel XE#1130]) [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-2/igt@xe_query@multigpu-query-mem-usage.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-4/igt@xe_query@multigpu-query-mem-usage.html - shard-dg2-set2: [SKIP][527] ([Intel XE#944]) -> [SKIP][528] ([Intel XE#1130]) [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-436/igt@xe_query@multigpu-query-mem-usage.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-464/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][529] ([Intel XE#1130]) -> [SKIP][530] ([Intel XE#944]) [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-bmg-6/igt@xe_query@multigpu-query-uc-fw-version-huc.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-bmg-2/igt@xe_query@multigpu-query-uc-fw-version-huc.html - shard-dg2-set2: [SKIP][531] ([Intel XE#1130]) -> [SKIP][532] ([Intel XE#944]) [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8182/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-huc.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-huc.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1174 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [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#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [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#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#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#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [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#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#3592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3592 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3897]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3897 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3937 [Intel XE#3946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3946 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8182 -> IGTPW_12405 * Linux: xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 -> xe-2458-1f1bf8d241872eacfc18a8393862302b8aa8442d IGTPW_12405: 7140501dc07d5da634f3184b506b4060129ffe3a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8182: 8911eff2c6c06d2929c6072f3ba72d2d991985ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2456-9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48: 9cbe590862ef629f35ce9f4c2dc5c0a6a4553f48 xe-2458-1f1bf8d241872eacfc18a8393862302b8aa8442d: 1f1bf8d241872eacfc18a8393862302b8aa8442d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12405/index.html [-- Attachment #2: Type: text/html, Size: 151487 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes 2025-01-08 22:54 [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes Stuart Summers ` (3 preceding siblings ...) 2025-01-11 2:32 ` ✗ Xe.CI.Full: failure " Patchwork @ 2025-01-11 4:36 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-01-11 4:36 UTC (permalink / raw) To: Summers, Stuart; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100294 bytes --] == Series Details == Series: tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes URL : https://patchwork.freedesktop.org/series/143285/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15927_full -> IGTPW_12405_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12405_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12405_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_12405/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12405_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk8/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@kms_fbcon_fbt@fbc: - shard-snb: NOTRUN -> [INCOMPLETE][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb2/igt@kms_fbcon_fbt@fbc.html Known issues ------------ Here are the changes found in IGTPW_12405_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt@api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt@api_intel_bb@blit-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-2/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt@device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt@device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-6/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-11/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@all-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +16 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@busy-idle@vecs0: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +6 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-8/igt@drm_fdinfo@busy-idle@vecs0.html * igt@gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#7697]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][17] -> [INCOMPLETE][18] ([i915#7297]) +1 other test incomplete [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-8/igt@gem_ccs@suspend-resume.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-6/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][20] ([i915#12353]) +1 other test incomplete [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][23] ([i915#1099]) +4 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb2/igt@gem_ctx_persistence@smoketest.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt@gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][25] ([i915#280]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][26] ([i915#280]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-9/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-3/igt@gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-5/igt@gem_ctx_sseu@engines.html * igt@gem_eio@reset-stress: - shard-dg2: [PASS][29] -> [FAIL][30] ([i915#12543] / [i915#5784]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-11/igt@gem_eio@reset-stress.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-7/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg1: NOTRUN -> [FAIL][31] ([i915#12714] / [i915#5784]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#4036]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-balancer: - shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#4525]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#4525]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#6334]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt@gem_exec_capture@capture-invisible.html - shard-tglu: NOTRUN -> [SKIP][36] ([i915#6334]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-8/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][37] ([i915#6334]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk1/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu-1: NOTRUN -> [SKIP][38] ([i915#6344]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4812]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt@gem_exec_fence@submit.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-batch-kernel-default-uc: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt@gem_exec_flush@basic-batch-kernel-default-uc.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_gttfill@all-engines: - shard-rkl: [PASS][43] -> [DMESG-WARN][44] ([i915#12964]) +30 other tests dmesg-warn [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-4/igt@gem_exec_gttfill@all-engines.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-7/igt@gem_exec_gttfill@all-engines.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#5107]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-5/igt@gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][46] ([i915#5107]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-5/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt-read-active: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3281]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt@gem_exec_reloc@basic-gtt-read-active.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#3281]) +13 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-14/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-wc-active: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-5/igt@gem_exec_reloc@basic-write-wc-active.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: [PASS][51] -> [ABORT][52] ([i915#7975] / [i915#8213]) +1 other test abort [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-12/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4860]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_huc_copy@huc-copy: - shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#2190]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][57] ([i915#2190]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk2/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613] / [i915#7582]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613] / [i915#7582]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-8/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@basic: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][61] ([i915#5493]) +1 other test timeout [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][63] ([i915#4613]) +7 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4613]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#12193]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs.html - shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4565]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8289]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-6/igt@gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][69] ([i915#8289]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@basic-copy: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4077]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt@gem_mmap_gtt@basic-copy.html * igt@gem_mmap_gtt@basic-read: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4077]) +11 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt@gem_mmap_gtt@basic-read.html * igt@gem_mmap_wc@pf-nonblock: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt@gem_mmap_wc@pf-nonblock.html * igt@gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4083]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-4/igt@gem_mmap_wc@write.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4083]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3282]) +6 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt@gem_partial_pwrite_pread@write.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][76] ([i915#2658]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk1/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3282]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt@gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][78] ([i915#2658]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-7/igt@gem_pwrite@basic-exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3282]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite_snooped: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3282]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@gem_pwrite_snooped.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#13398]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4270]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4270]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-5/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8428]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#5190] / [i915#8428]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4079]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-5/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4079]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4885]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [ABORT][89] ([i915#13263] / [i915#13449]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk9/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@coherency-sync: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][92] ([i915#3323]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk8/igt@gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#3323]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#3297]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#3297]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-3/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4880]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#4880]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#3297]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#4958]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#3297]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_workarounds@suspend-resume: - shard-glk: [PASS][101] -> [ABORT][102] ([i915#8213]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk7/igt@gem_workarounds@suspend-resume.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk3/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#2527] / [i915#2856]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-2/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-secure: - shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#2527] / [i915#2856]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#2856]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-11/igt@gen9_exec_parse@shadow-peek.html - shard-rkl: NOTRUN -> [SKIP][107] ([i915#2527]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@unaligned-access: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#2527]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][109] -> [ABORT][110] ([i915#12817] / [i915#9820]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [DMESG-WARN][111] ([i915#10887] / [i915#13475]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#6412]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/igt@i915_module_load@resize-bar.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#7091]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#8399]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#11681] / [i915#6621]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#11681]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_power@sanity: - shard-mtlp: [PASS][117] -> [SKIP][118] ([i915#7984]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-5/igt@i915_power@sanity.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt@i915_power@sanity.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#5723]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-7/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][120] ([i915#9311]) +1 other test dmesg-warn [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb5/igt@i915_selftest@mock.html * igt@i915_selftest@mock@memory_region: - shard-dg1: NOTRUN -> [DMESG-WARN][121] ([i915#9311]) +1 other test dmesg-warn [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][122] ([i915#4817]) +1 other test incomplete [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk8/igt@i915_suspend@forcewake.html * igt@intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#7707]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-7/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4212]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#8709]) +7 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#8709]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#8709]) +11 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#12967] / [i915#6228]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#9531]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][130] ([i915#9531]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#1769] / [i915#3555]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#5286]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4538] / [i915#5286]) +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#5286]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#5286]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#5286]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#3638]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-7/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#3638]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5190]) +6 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#5190]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#6187]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#4538]) +6 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][143] +14 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#6095]) +59 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-6/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#6095]) +171 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#6095]) +161 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#6095]) +39 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#12313]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#6095]) +14 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#12805]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#6095]) +24 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#12313]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#6095]) +67 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#11616] / [i915#7213]) +3 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#3742]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#4087]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color@ctm-0-50: - shard-mtlp: NOTRUN -> [SKIP][158] +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +6 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +10 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +9 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +3 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-5/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-dg2: [PASS][165] -> [SKIP][166] ([i915#3555]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-10/igt@kms_color@deep-color.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-9/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#6944] / [i915#9424]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#3116] / [i915#3299]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3299]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-11/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#9424]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt@kms_content_protection@lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][172] ([i915#9424]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#9424]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt@kms_content_protection@lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][174] ([i915#6944] / [i915#9424]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#9433]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#7116] / [i915#9424]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt@kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#6944] / [i915#9424]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-4/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#3555]) +6 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-32x32.html - shard-tglu: NOTRUN -> [SKIP][179] ([i915#3555]) +5 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#8814]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#13049]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#13049]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#13049]) +2 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#13049]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#3555]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt@kms_cursor_crc@cursor-sliding-32x10.html - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8814]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#13049]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#9809]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#4103]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#4103] / [i915#4213]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipa-toggle: - shard-rkl: NOTRUN -> [DMESG-WARN][191] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-2/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#13046] / [i915#5354]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][193] ([i915#2346]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#4213]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#4103] / [i915#4213]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][196] ([i915#4103]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#9723]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][198] ([i915#12170]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][199] ([i915#11968]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#9723]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#8588]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][202] ([i915#8588]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#12402]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#3840]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_dsc@dsc-basic.html - shard-dg1: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#3840]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-14/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#3840] / [i915#9688]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt@kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][207] ([i915#3840]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#3840]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3840]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt@kms_dsc@dsc-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#3955]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][212] ([i915#3469]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#1839]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#9337]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#658]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-6/igt@kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][216] ([i915#658]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt@kms_feature_discovery@psr1.html * igt@kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#4881]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3637]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#9934]) +6 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt@kms_flip@2x-flip-vs-dpms.html - shard-tglu: NOTRUN -> [SKIP][220] ([i915#3637]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][221] -> [FAIL][222] ([i915#13027]) +1 other test fail [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#8381]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-snb: [PASS][224] -> [FAIL][225] ([i915#11989]) +1 other test fail [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-snb5/igt@kms_flip@2x-plain-flip-ts-check.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check.html - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#3637]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#9934]) +6 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#9934]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@blocking-wf_vblank: - shard-mtlp: [PASS][229] -> [FAIL][230] ([i915#11989]) +1 other test fail [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-3/igt@kms_flip@blocking-wf_vblank.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@blocking-wf_vblank@c-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][231] ([i915#11989]) +3 other tests fail [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2: [PASS][232] -> [FAIL][233] ([i915#11989]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-6/igt@kms_flip@flip-vs-blocking-wf-vblank.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1: - shard-dg2: NOTRUN -> [FAIL][234] ([i915#11989]) +2 other tests fail [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#8381]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-8/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@plain-flip-fb-recreate: - shard-tglu: [PASS][236] -> [FAIL][237] ([i915#11989]) +1 other test fail [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555] / [i915#8813]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#8813]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8810] / [i915#8813]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8810]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#2672]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][244] ([i915#2587] / [i915#2672]) +5 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#2672] / [i915#3555]) +5 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#2587] / [i915#2672] / [i915#3555]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555] / [i915#5190]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/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-dg2: NOTRUN -> [SKIP][248] ([i915#2672]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555]) +5 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672]) +6 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt: - shard-dg2: [PASS][251] -> [FAIL][252] ([i915#6880]) +2 other tests fail [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][253] +38 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-snb: [PASS][254] -> [SKIP][255] [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#8708]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][257] ([i915#10056] / [i915#13353]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk4/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#10055]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#8708]) +10 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#1825]) +39 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#8708]) +16 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#9766]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][263] ([i915#9766]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][264] +82 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#3023]) +17 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#3458]) +13 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#1825]) +7 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#5354]) +22 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][269] +35 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#3458]) +22 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_hdr@invalid-hdr: - shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#8228]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8228]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@kms_hdr@static-swap.html - shard-tglu: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8228]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-2/igt@kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-6/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8228]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-5/igt@kms_hdr@static-toggle.html - shard-rkl: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8228]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt@kms_hdr@static-toggle.html * igt@kms_histogram@algo-basic: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#13389]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-8/igt@kms_histogram@algo-basic.html * igt@kms_histogram@algo-color: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#13389]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-6/igt@kms_histogram@algo-color.html - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#13389]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_histogram@algo-color.html * igt@kms_joiner@basic-big-joiner: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#10656]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#12394]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@kms_joiner@basic-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][282] ([i915#12394]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-8/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#12388]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#10656]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][285] ([i915#12394]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#10656]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#1839]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#6301]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-7/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#6301]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][290] +5 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - shard-dg1: [PASS][291] -> [DMESG-WARN][292] ([i915#4423]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-14/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][293] ([i915#10647] / [i915#12169]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk9/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][294] ([i915#10647]) +1 other test fail [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk9/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#3555]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#12247]) +2 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a: - shard-rkl: [PASS][297] -> [DMESG-WARN][298] ([i915#12964] / [i915#1982]) +1 other test dmesg-warn [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation: - shard-glk: NOTRUN -> [SKIP][299] +472 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#12247]) +13 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#12247] / [i915#6953]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][302] ([i915#12247] / [i915#6953]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#12247]) +7 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#6953]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#12247] / [i915#3555]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#12247] / [i915#6953]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/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-c: - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#12247]) +7 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#5354]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][309] ([i915#5354]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][310] ([i915#9812]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-10/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#9685]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#3828]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#4281]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#3828]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-4/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#8430]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#9519]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][317] ([i915#9519]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][318] -> [SKIP][319] ([i915#9519]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-1/igt@kms_pm_rpm@dpms-non-lpsp.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#4077]) +6 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt@kms_pm_rpm@fences.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#9519]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#9519]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@pm-tiling: - shard-rkl: [PASS][323] -> [SKIP][324] ([i915#12916]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-2/igt@kms_pm_rpm@pm-tiling.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt@kms_pm_rpm@pm-tiling.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#6524]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#6524]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#6524]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][328] ([i915#11520]) +13 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb7/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html - shard-mtlp: NOTRUN -> [SKIP][329] ([i915#12316]) +4 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#11520]) +9 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][331] ([i915#11520]) +8 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#9808]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#11520]) +9 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][334] ([i915#11520]) +18 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk5/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#11520]) +9 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#11520]) +2 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#9683]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][338] ([i915#9683]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-14/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#9683]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-5/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][340] ([i915#9683]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-10/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-primary-page-flip@edp-1: - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#9688]) +9 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt@kms_psr@fbc-psr-primary-page-flip@edp-1.html * igt@kms_psr@fbc-psr2-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][342] ([i915#9732]) +17 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-9/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html * igt@kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#9732]) +6 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][344] ([i915#1072] / [i915#9732]) +24 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt@kms_psr@fbc-psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#1072] / [i915#9732]) +17 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt@kms_psr@fbc-psr2-suspend.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#1072] / [i915#9732]) +14 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-7/igt@kms_psr@psr2-cursor-blt.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#5289]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu-1: NOTRUN -> [SKIP][348] ([i915#5289]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][349] ([IGT#160] / [i915#6493]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][350] ([i915#8623]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][351] ([i915#12276]) +1 other test incomplete [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk1/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][352] ([i915#9906]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt@kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][353] ([i915#9906]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-7/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#3555] / [i915#8808]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#11920]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-5/igt@kms_vrr@lobf.html - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#11920]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-6/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#3555] / [i915#9906]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][358] ([i915#3555] / [i915#9906]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#2437] / [i915#9412]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-glk: NOTRUN -> [SKIP][360] ([i915#2437]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk2/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][361] ([i915#2437] / [i915#9412]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-9/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#2437]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#2434]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt@perf@mi-rpc.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#2433]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][365] +456 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-snb5/igt@perf_pmu@busy-accuracy-98.html - shard-mtlp: NOTRUN -> [FAIL][366] ([i915#4349]) +1 other test fail [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-6/igt@perf_pmu@busy-accuracy-98.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][367] ([i915#8516]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt@perf_pmu@rc6-all-gts.html - shard-tglu: NOTRUN -> [SKIP][368] ([i915#8516]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6-suspend: - shard-glk: [PASS][369] -> [INCOMPLETE][370] ([i915#13356]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk8/igt@perf_pmu@rc6-suspend.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk9/igt@perf_pmu@rc6-suspend.html - shard-rkl: [PASS][371] -> [DMESG-FAIL][372] ([i915#12964]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-4/igt@perf_pmu@rc6-suspend.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][373] ([i915#8516]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-1/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][374] ([i915#8516]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt@perf_pmu@rc6@other-idle-gt0.html * igt@perf_pmu@render-node-busy-idle: - shard-dg2: [PASS][375] -> [FAIL][376] ([i915#4349]) +1 other test fail [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-5/igt@perf_pmu@render-node-busy-idle.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-8/igt@perf_pmu@render-node-busy-idle.html * igt@perf_pmu@render-node-busy-idle@vecs0: - shard-dg1: [PASS][377] -> [FAIL][378] ([i915#4349]) +1 other test fail [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-17/igt@perf_pmu@render-node-busy-idle@vecs0.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@perf_pmu@render-node-busy-idle@vecs0.html * igt@perf_pmu@render-node-busy@bcs0: - shard-mtlp: [PASS][379] -> [FAIL][380] ([i915#4349]) +2 other tests fail [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-4/igt@perf_pmu@render-node-busy@bcs0.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt@perf_pmu@render-node-busy@bcs0.html * igt@prime_busy@hang-wait@bcs0: - shard-rkl: NOTRUN -> [DMESG-WARN][381] ([i915#12964]) +8 other tests dmesg-warn [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-2/igt@prime_busy@hang-wait@bcs0.html * igt@prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][382] ([i915#3708]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][383] ([i915#3708] / [i915#4077]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-17/igt@prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][384] ([i915#3708] / [i915#4077]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-mtlp: NOTRUN -> [SKIP][385] ([i915#3708]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt@prime_vgem@fence-flip-hang.html - shard-dg2: NOTRUN -> [SKIP][386] ([i915#3708]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-7/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][387] ([i915#3708]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-1/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: NOTRUN -> [SKIP][388] ([i915#9917]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-7/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1: - shard-tglu: NOTRUN -> [FAIL][389] ([i915#12910]) +9 other tests fail [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2: - shard-mtlp: NOTRUN -> [FAIL][390] ([i915#12910]) +9 other tests fail [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][391] ([i915#9917]) +1 other test skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-13/igt@sriov_basic@enable-vfs-bind-unbind-each.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-rkl: [FAIL][392] -> [PASS][393] +1 other test pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-2/igt@gem_ctx_isolation@preservation-s3@bcs0.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-4/igt@gem_ctx_isolation@preservation-s3@bcs0.html - shard-tglu: [DMESG-WARN][394] -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt@gem_ctx_isolation@preservation-s3@bcs0.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-7/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-tglu: [ABORT][396] -> [PASS][397] +2 other tests pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt@gem_ctx_isolation@preservation-s3@rcs0.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-7/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_eio@in-flight-immediate: - shard-dg1: [DMESG-WARN][398] ([i915#4423]) -> [PASS][399] +1 other test pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-17/igt@gem_eio@in-flight-immediate.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@gem_eio@in-flight-immediate.html * igt@gem_exec_balancer@full-pulse: - shard-dg1: [FAIL][400] ([i915#13364]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-13/igt@gem_exec_balancer@full-pulse.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-14/igt@gem_exec_balancer@full-pulse.html - shard-dg2: [FAIL][402] ([i915#13364]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-6/igt@gem_exec_balancer@full-pulse.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt@gem_exec_balancer@full-pulse.html * igt@gem_exec_endless@dispatch: - shard-dg2: [TIMEOUT][404] ([i915#3778] / [i915#7016]) -> [PASS][405] +1 other test pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-11/igt@gem_exec_endless@dispatch.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt@gem_exec_endless@dispatch.html * igt@gem_userptr_blits@sync-unmap-cycles: - shard-rkl: [DMESG-WARN][406] ([i915#12964]) -> [PASS][407] +35 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-6/igt@gem_userptr_blits@sync-unmap-cycles.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt@gem_userptr_blits@sync-unmap-cycles.html * igt@gem_workarounds@suspend-resume-context: - shard-glk: [INCOMPLETE][408] ([i915#13356]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk7/igt@gem_workarounds@suspend-resume-context.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk8/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [ABORT][410] ([i915#5566]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk4/igt@gen9_exec_parse@allowed-single.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk7/igt@gen9_exec_parse@allowed-single.html * igt@i915_module_load@reload-no-display: - shard-tglu: [DMESG-WARN][412] ([i915#13029]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-tglu-6/igt@i915_module_load@reload-no-display.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-tglu-3/igt@i915_module_load@reload-no-display.html * igt@i915_pm_rpm@gem-execbuf: - shard-rkl: [SKIP][414] ([i915#13328]) -> [PASS][415] +1 other test pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-rkl-2/igt@i915_pm_rpm@gem-execbuf.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-rkl-3/igt@i915_pm_rpm@gem-execbuf.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg1: [DMESG-FAIL][416] ([i915#4423]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-13/igt@i915_pm_rpm@system-suspend-execbuf.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-12/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_selftest@live: - shard-glk: [DMESG-FAIL][418] -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk8/igt@i915_selftest@live.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk4/igt@i915_selftest@live.html * igt@i915_selftest@live@active: - shard-glk: [DMESG-FAIL][420] ([i915#12435]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk8/igt@i915_selftest@live@active.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk4/igt@i915_selftest@live@active.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg1: [DMESG-WARN][422] ([i915#4391] / [i915#4423]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg1-18/igt@i915_suspend@basic-s3-without-i915.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg1-18/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-mtlp: [INCOMPLETE][424] -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-1/igt@i915_suspend@debugfs-reader.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-7/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@sysfs-reader: - shard-glk: [INCOMPLETE][426] ([i915#4817]) -> [PASS][427] +1 other test pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk5/igt@i915_suspend@sysfs-reader.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk1/igt@i915_suspend@sysfs-reader.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: - shard-mtlp: [FAIL][428] ([i915#11808] / [i915#5956]) -> [PASS][429] +1 other test pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180: - shard-mtlp: [FAIL][430] ([i915#5138]) -> [PASS][431] [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-mtlp: [FAIL][432] ([i915#11989]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-mtlp-8/igt@kms_flip@plain-flip-ts-check-interruptible.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-mtlp-1/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-dg2: [FAIL][434] ([i915#6880]) -> [PASS][435] +1 other test pass [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt@kms_plane@pixel-format-source-clamping: - shard-glk: [INCOMPLETE][436] ([i915#10056] / [i915#118] / [i915#13026]) -> [PASS][437] [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15927/shard-glk7/igt@kms_plane@pixel-format-source-clamping.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/shard-glk1/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-1: - shard-glk: [DMESG-WARN][438] ([i915#118]) -> [PASS] == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12405/index.html [-- Attachment #2: Type: text/html, Size: 109875 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-01-13 16:00 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-01-08 22:54 [PATCH i-g-t] tests/intel/xe_exec_reset: Add a vm_unbind after the stress test completes Stuart Summers 2025-01-08 23:38 ` Cavitt, Jonathan 2025-01-09 15:39 ` Summers, Stuart 2025-01-13 16:00 ` Summers, Stuart 2025-01-09 0:21 ` ✓ Xe.CI.BAT: success for " Patchwork 2025-01-09 0:31 ` ✓ i915.CI.BAT: " Patchwork 2025-01-11 2:32 ` ✗ Xe.CI.Full: failure " Patchwork 2025-01-11 4:36 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox