* [PATCH i-g-t 0/2] tests/xe_spin_batch: Miscellaneous preempter fixes
@ 2024-02-23 23:04 Jonathan Cavitt
2024-02-23 23:04 ` [PATCH i-g-t 1/2] tests/xe_spin_batch: Correct xe_vm_bind_async usage Jonathan Cavitt
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Jonathan Cavitt @ 2024-02-23 23:04 UTC (permalink / raw)
To: igt-dev; +Cc: jonathan.cavitt, saurabhg.gupta, matthew.brost
Fix the usage of xe_vm_bind_async in the preempter in the following ways:
- Do not attempt to use the gt_id as an exec_queue ID.
- Ensure VM is bound before calling exec.
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Suggested-by: Matthew Brost <matthew.brost@intel.com>
Jonathan Cavitt (2):
tests/xe_spin_batch: Correct xe_vm_bind_async usage
tests/xe_spin_batch: Sync after vm_bind_async
tests/intel/xe_spin_batch.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
--
2.25.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH i-g-t 1/2] tests/xe_spin_batch: Correct xe_vm_bind_async usage 2024-02-23 23:04 [PATCH i-g-t 0/2] tests/xe_spin_batch: Miscellaneous preempter fixes Jonathan Cavitt @ 2024-02-23 23:04 ` Jonathan Cavitt 2024-02-24 3:40 ` Matthew Brost 2024-02-23 23:04 ` [PATCH i-g-t 2/2] tests/xe_spin_batch: Sync after vm_bind_async Jonathan Cavitt ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Jonathan Cavitt @ 2024-02-23 23:04 UTC (permalink / raw) To: igt-dev; +Cc: jonathan.cavitt, saurabhg.gupta, matthew.brost The third parameter of xe_vm_bind_async is the exec_queue id, not the gt id. Set it to 0 in the preempter, as there should not be an exec_queue at the time of execution. Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> Suggested-by: Matthew Brost <matthew.brost@intel.com> --- tests/intel/xe_spin_batch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/intel/xe_spin_batch.c b/tests/intel/xe_spin_batch.c index c183063507..faf569baf8 100644 --- a/tests/intel/xe_spin_batch.c +++ b/tests/intel/xe_spin_batch.c @@ -198,7 +198,7 @@ static void preempter(int fd, struct drm_xe_engine_class_instance *hwe) vram_if_possible(fd, hwe->gt_id), DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); - xe_vm_bind_async(fd, vm, hwe->gt_id, bo, 0, addr, bo_size, &sync, 1); + xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, &sync, 1); data = xe_bo_map(fd, bo, bo_size); store_dword_batch(data, addr, value); -- 2.25.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/xe_spin_batch: Correct xe_vm_bind_async usage 2024-02-23 23:04 ` [PATCH i-g-t 1/2] tests/xe_spin_batch: Correct xe_vm_bind_async usage Jonathan Cavitt @ 2024-02-24 3:40 ` Matthew Brost 0 siblings, 0 replies; 8+ messages in thread From: Matthew Brost @ 2024-02-24 3:40 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev, saurabhg.gupta On Fri, Feb 23, 2024 at 03:04:06PM -0800, Jonathan Cavitt wrote: > The third parameter of xe_vm_bind_async is the exec_queue id, not the gt > id. Set it to 0 in the preempter, as there should not be an exec_queue > at the time of execution. > > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> > Suggested-by: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Matthew Brost <matthew.brost@intel.com> > --- > tests/intel/xe_spin_batch.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/intel/xe_spin_batch.c b/tests/intel/xe_spin_batch.c > index c183063507..faf569baf8 100644 > --- a/tests/intel/xe_spin_batch.c > +++ b/tests/intel/xe_spin_batch.c > @@ -198,7 +198,7 @@ static void preempter(int fd, struct drm_xe_engine_class_instance *hwe) > vram_if_possible(fd, hwe->gt_id), > DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > > - xe_vm_bind_async(fd, vm, hwe->gt_id, bo, 0, addr, bo_size, &sync, 1); > + xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, &sync, 1); > data = xe_bo_map(fd, bo, bo_size); > store_dword_batch(data, addr, value); > > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH i-g-t 2/2] tests/xe_spin_batch: Sync after vm_bind_async 2024-02-23 23:04 [PATCH i-g-t 0/2] tests/xe_spin_batch: Miscellaneous preempter fixes Jonathan Cavitt 2024-02-23 23:04 ` [PATCH i-g-t 1/2] tests/xe_spin_batch: Correct xe_vm_bind_async usage Jonathan Cavitt @ 2024-02-23 23:04 ` Jonathan Cavitt 2024-02-24 3:41 ` Matthew Brost 2024-02-23 23:46 ` ✓ CI.xeBAT: success for tests/xe_spin_batch: Miscellaneous preempter fixes Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Jonathan Cavitt @ 2024-02-23 23:04 UTC (permalink / raw) To: igt-dev; +Cc: jonathan.cavitt, saurabhg.gupta, matthew.brost Ensure that vm bind completes before the call to xe_exec occurs later in the preempter. Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> Suggested-by: Matthew Brost <matthew.brost@intel.com> --- tests/intel/xe_spin_batch.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/intel/xe_spin_batch.c b/tests/intel/xe_spin_batch.c index faf569baf8..3bdc1e5e20 100644 --- a/tests/intel/xe_spin_batch.c +++ b/tests/intel/xe_spin_batch.c @@ -202,6 +202,9 @@ static void preempter(int fd, struct drm_xe_engine_class_instance *hwe) data = xe_bo_map(fd, bo, bo_size); store_dword_batch(data, addr, value); + igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL)); + syncobj_reset(fd, &syncobj, 1); + exec_queue = xe_exec_queue_create(fd, vm, hwe, to_user_pointer(&ext)); exec.exec_queue_id = exec_queue; exec.address = data->addr; -- 2.25.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/xe_spin_batch: Sync after vm_bind_async 2024-02-23 23:04 ` [PATCH i-g-t 2/2] tests/xe_spin_batch: Sync after vm_bind_async Jonathan Cavitt @ 2024-02-24 3:41 ` Matthew Brost 0 siblings, 0 replies; 8+ messages in thread From: Matthew Brost @ 2024-02-24 3:41 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev, saurabhg.gupta On Fri, Feb 23, 2024 at 03:04:07PM -0800, Jonathan Cavitt wrote: > Ensure that vm bind completes before the call to xe_exec occurs later in > the preempter. > > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> > Suggested-by: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Matthew Brost <matthew.brost@intel.com> > --- > tests/intel/xe_spin_batch.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/tests/intel/xe_spin_batch.c b/tests/intel/xe_spin_batch.c > index faf569baf8..3bdc1e5e20 100644 > --- a/tests/intel/xe_spin_batch.c > +++ b/tests/intel/xe_spin_batch.c > @@ -202,6 +202,9 @@ static void preempter(int fd, struct drm_xe_engine_class_instance *hwe) > data = xe_bo_map(fd, bo, bo_size); > store_dword_batch(data, addr, value); > > + igt_assert(syncobj_wait(fd, &syncobj, 1, INT64_MAX, 0, NULL)); > + syncobj_reset(fd, &syncobj, 1); > + > exec_queue = xe_exec_queue_create(fd, vm, hwe, to_user_pointer(&ext)); > exec.exec_queue_id = exec_queue; > exec.address = data->addr; > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ CI.xeBAT: success for tests/xe_spin_batch: Miscellaneous preempter fixes 2024-02-23 23:04 [PATCH i-g-t 0/2] tests/xe_spin_batch: Miscellaneous preempter fixes Jonathan Cavitt 2024-02-23 23:04 ` [PATCH i-g-t 1/2] tests/xe_spin_batch: Correct xe_vm_bind_async usage Jonathan Cavitt 2024-02-23 23:04 ` [PATCH i-g-t 2/2] tests/xe_spin_batch: Sync after vm_bind_async Jonathan Cavitt @ 2024-02-23 23:46 ` Patchwork 2024-02-24 0:02 ` ✓ Fi.CI.BAT: " Patchwork 2024-02-24 17:09 ` ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-02-23 23:46 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2463 bytes --] == Series Details == Series: tests/xe_spin_batch: Miscellaneous preempter fixes URL : https://patchwork.freedesktop.org/series/130341/ State : success == Summary == CI Bug Log - changes from XEIGT_7729_BAT -> XEIGTPW_10731_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10731_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * {igt@xe_exec_queue_property@invalid-property}: - bat-pvc-2: [FAIL][1] -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7729/bat-pvc-2/igt@xe_exec_queue_property@invalid-property.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10731/bat-pvc-2/igt@xe_exec_queue_property@invalid-property.html - bat-dg2-oem2: [FAIL][3] -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7729/bat-dg2-oem2/igt@xe_exec_queue_property@invalid-property.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10731/bat-dg2-oem2/igt@xe_exec_queue_property@invalid-property.html - bat-atsm-2: [FAIL][5] -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7729/bat-atsm-2/igt@xe_exec_queue_property@invalid-property.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10731/bat-atsm-2/igt@xe_exec_queue_property@invalid-property.html - bat-adlp-7: [FAIL][7] -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7729/bat-adlp-7/igt@xe_exec_queue_property@invalid-property.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10731/bat-adlp-7/igt@xe_exec_queue_property@invalid-property.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes ------------- * IGT: IGT_7729 -> IGTPW_10731 * Linux: xe-835-115d0ed85f58e87d2d7a057426350fec5b217cc9 -> xe-840-7291e2e67dff0ff573900266382c9c9248a7dea5 IGTPW_10731: 10731 IGT_7729: 7729 xe-835-115d0ed85f58e87d2d7a057426350fec5b217cc9: 115d0ed85f58e87d2d7a057426350fec5b217cc9 xe-840-7291e2e67dff0ff573900266382c9c9248a7dea5: 7291e2e67dff0ff573900266382c9c9248a7dea5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10731/index.html [-- Attachment #2: Type: text/html, Size: 3080 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Fi.CI.BAT: success for tests/xe_spin_batch: Miscellaneous preempter fixes 2024-02-23 23:04 [PATCH i-g-t 0/2] tests/xe_spin_batch: Miscellaneous preempter fixes Jonathan Cavitt ` (2 preceding siblings ...) 2024-02-23 23:46 ` ✓ CI.xeBAT: success for tests/xe_spin_batch: Miscellaneous preempter fixes Patchwork @ 2024-02-24 0:02 ` Patchwork 2024-02-24 17:09 ` ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-02-24 0:02 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 931 bytes --] == Series Details == Series: tests/xe_spin_batch: Miscellaneous preempter fixes URL : https://patchwork.freedesktop.org/series/130341/ State : success == Summary == CI Bug Log - changes from CI_DRM_14330 -> IGTPW_10731 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/index.html Participating hosts (36 -> 33) ------------------------------ Missing (3): fi-glk-j4005 fi-cfl-8109u fi-snb-2520m Changes ------- No changes found Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7729 -> IGTPW_10731 CI-20190529: 20190529 CI_DRM_14330: 7291e2e67dff0ff573900266382c9c9248a7dea5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10731: 10731 IGT_7729: 7729 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/index.html [-- Attachment #2: Type: text/html, Size: 1497 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/xe_spin_batch: Miscellaneous preempter fixes 2024-02-23 23:04 [PATCH i-g-t 0/2] tests/xe_spin_batch: Miscellaneous preempter fixes Jonathan Cavitt ` (3 preceding siblings ...) 2024-02-24 0:02 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-02-24 17:09 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-02-24 17:09 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 79843 bytes --] == Series Details == Series: tests/xe_spin_batch: Miscellaneous preempter fixes URL : https://patchwork.freedesktop.org/series/130341/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14330_full -> IGTPW_10731_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10731_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10731_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_10731/index.html Participating hosts (8 -> 8) ------------------------------ Additional (1): shard-snb-0 Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10731_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [TIMEOUT][1] +1 other test timeout [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-2}: - shard-dg2: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-2.html Known issues ------------ Here are the changes found in IGTPW_10731_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#6230]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-10/igt@api_intel_bb@object-reloc-keep-cache.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +10 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@busy@vcs1: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +4 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-16/igt@drm_fdinfo@busy@vcs1.html * igt@drm_fdinfo@idle@rcs0: - shard-rkl: [PASS][7] -> [FAIL][8] ([i915#7742]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-rkl-4/igt@drm_fdinfo@idle@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-1/igt@drm_fdinfo@idle@rcs0.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][10] -> [INCOMPLETE][11] ([i915#7297]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-dg2-2/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-5/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#6335]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-3/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-rkl: NOTRUN -> [SKIP][14] ([i915#6335]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-2/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: NOTRUN -> [FAIL][15] ([i915#6268]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglu: NOTRUN -> [SKIP][16] ([fdo#109314]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-2/igt@gem_ctx_param@set-priority-not-supported.html - shard-dg2: NOTRUN -> [SKIP][17] ([fdo#109314]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-10/igt@gem_ctx_param@set-priority-not-supported.html - shard-rkl: NOTRUN -> [SKIP][18] ([fdo#109314]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-4/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#5882]) +9 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-4/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-2/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-8/igt@gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-10/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4771]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-1/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_capture@many-4k-zero: - shard-glk: NOTRUN -> [FAIL][26] ([i915#9606]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-glk3/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-none@rcs0: - shard-tglu: NOTRUN -> [FAIL][27] ([i915#2842]) +5 other tests fail [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-10/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: NOTRUN -> [FAIL][28] ([i915#2842]) +1 other test fail [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-glk9/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_fence@submit: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +5 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-1/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3281]) +6 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-10/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#3281]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3281]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-12/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-write-read-active: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +6 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-7/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#7276]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-1/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][38] ([i915#7975] / [i915#8213]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-1/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][39] ([i915#7975] / [i915#8213]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4860]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#4613]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-glk7/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#4613]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][44] -> [TIMEOUT][45] ([i915#5493]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4613]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-5/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#8289]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-10/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@basic-read: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4077]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-19/igt@gem_mmap_gtt@basic-read.html * igt@gem_mmap_gtt@big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4077]) +9 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-6/igt@gem_mmap_gtt@big-copy-odd.html * igt@gem_mmap_gtt@medium-copy: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4077]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-3/igt@gem_mmap_gtt@medium-copy.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4083]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4083]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-12/igt@gem_mmap_wc@read.html - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4083]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-4/igt@gem_mmap_wc@read.html * igt@gem_partial_pwrite_pread@reads-display: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3282]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-4/igt@gem_partial_pwrite_pread@reads-display.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][55] ([i915#2658]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-glk3/igt@gem_pread@exhaustion.html * igt@gem_pread@self: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#3282]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-7/igt@gem_pread@self.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4270]) +5 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4270]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-7/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4270]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-3/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4270]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-6/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +5 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-6/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8428]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-3/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#5190]) +5 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-1/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4079]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-rkl: NOTRUN -> [SKIP][65] ([i915#8411]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4885]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-1/igt@gem_softpin@evict-snoop-interruptible.html - shard-tglu: NOTRUN -> [SKIP][67] ([fdo#109312]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-9/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@dmabuf-sync: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3297]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-6/igt@gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3323]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@gem_userptr_blits@dmabuf-unsync.html - shard-tglu: NOTRUN -> [SKIP][71] ([i915#3297]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-5/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297] / [i915#4880]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gen3_render_tiledx_blits: - shard-mtlp: NOTRUN -> [SKIP][73] ([fdo#109289]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-2/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][74] ([fdo#109289]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@gen7_exec_parse@bitmasks.html * igt@gen7_exec_parse@chained-batch: - shard-tglu: NOTRUN -> [SKIP][75] ([fdo#109289]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-8/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#2527]) +4 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-4/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#2856]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-2/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#2856]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@gen9_exec_parse@valid-registers.html - shard-tglu: NOTRUN -> [SKIP][79] ([i915#2527] / [i915#2856]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-9/igt@gen9_exec_parse@valid-registers.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4881]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@i915_fb_tiling.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][81] -> [INCOMPLETE][82] ([i915#10137]) +1 other test incomplete [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#8399]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html - shard-tglu: NOTRUN -> [SKIP][84] ([i915#8399]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-3/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: NOTRUN -> [SKIP][85] ([fdo#109289]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [PASS][86] -> [FAIL][87] ([i915#3591]) +1 other test fail [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#8925]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#8925]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-1/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_pm_rps@thresholds-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3555] / [i915#8925]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-1/igt@i915_pm_rps@thresholds-park@gt1.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#6188]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-2/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@query-topology-known-pci-ids: - shard-dg2: NOTRUN -> [SKIP][92] ([fdo#109303]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@i915_query@query-topology-known-pci-ids.html * igt@intel_hwmon@hwmon-write: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#7707]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-6/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4212]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-10/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#1769]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#1769] / [i915#3555]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-glk: [PASS][97] -> [INCOMPLETE][98] ([i915#9878]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-glk7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#5286]) +4 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][100] ([fdo#111614]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-6/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][101] ([fdo#111615] / [i915#5286]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][102] -> [FAIL][103] ([i915#5138]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][104] ([fdo#111614] / [i915#3638]) +4 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][105] ([fdo#111614]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [FAIL][106] ([i915#3743]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][107] ([fdo#111615]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-4/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#3638]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#4538] / [i915#5190]) +11 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][110] -> [FAIL][111] ([i915#3743]) +1 other test fail [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][112] ([fdo#110723]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][113] ([fdo#111615]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4087]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2: NOTRUN -> [SKIP][115] ([fdo#111827]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-6/igt@kms_chamelium_color@ctm-0-25.html - shard-tglu: NOTRUN -> [SKIP][116] ([fdo#111827]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-2/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#7828]) +8 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-1/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#7828]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-17/igt@kms_chamelium_hpd@hdmi-hpd-fast.html - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#7828]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-3/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#7828]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-2/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#7828]) +8 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#3299]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#3116]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-1/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][124] ([fdo#109279] / [i915#3359]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#3359]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#3359]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#3359]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#8814]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][129] ([fdo#109274] / [i915#5354]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html - shard-tglu: NOTRUN -> [SKIP][130] ([fdo#109274]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][131] ([fdo#111825]) +9 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#9809]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][133] -> [FAIL][134] ([i915#2346]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#9067]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][136] ([i915#9067]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#4213]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#4103] / [i915#4213]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][139] ([i915#4103]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][140] ([fdo#110189] / [i915#9723]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][141] ([fdo#110189] / [i915#9723]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-19/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#9723]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg2: NOTRUN -> [SKIP][143] ([i915#9833]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#8588]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][145] ([i915#8588]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#3804]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#9337]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#658]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-10/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][149] ([fdo#109274] / [i915#3637]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-10/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][150] ([fdo#109274]) +6 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-6/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][151] ([fdo#111767] / [fdo#111825]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#3637]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-dg1: NOTRUN -> [SKIP][153] ([fdo#111825] / [i915#9934]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-17/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#2672]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][155] ([i915#2672]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#2587] / [i915#2672]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#2672] / [i915#3555]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#2672] / [i915#3555]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#8708]) +16 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#1825]) +6 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][161] ([fdo#111767] / [i915#5354]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][162] ([fdo#111825]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#5354]) +32 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-snb: [PASS][164] -> [SKIP][165] ([fdo#109271] / [fdo#111767]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-snb: [PASS][166] -> [SKIP][167] ([fdo#109271]) +12 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff: - shard-tglu: NOTRUN -> [SKIP][168] ([fdo#109280]) +11 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#8708]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][170] ([fdo#111767] / [i915#1825]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][171] ([fdo#111825] / [i915#1825]) +27 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][172] ([fdo#109280] / [fdo#111767]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3458]) +15 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3023]) +18 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][175] ([fdo#110189]) +11 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdr@bpc-switch: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#8228]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-7/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8228]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#4816]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#6301]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][180] ([i915#6301]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][181] ([fdo#109271]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-snb7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#8821]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8821]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#8806]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#3555]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-2/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8806]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-10/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#9423]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#9423]) +7 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#9423]) +15 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#5176] / [i915#9423]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#5176] / [i915#9423]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#5176] / [i915#9423]) +3 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#5235] / [i915#9423]) +3 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#5235] / [i915#9423] / [i915#9728]) +7 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#5235]) +15 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#5235]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#5235]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][198] ([fdo#109271]) +233 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-glk8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#5235]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#9812]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-2/igt@kms_pm_backlight@fade.html - shard-rkl: NOTRUN -> [SKIP][201] ([i915#5354]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-7/igt@kms_pm_backlight@fade.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [PASS][202] -> [SKIP][203] ([i915#9519]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#9519]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][205] ([i915#9519]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][206] -> [SKIP][207] ([i915#9519]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@pc8-residency: - shard-dg2: NOTRUN -> [SKIP][208] ([fdo#109293] / [fdo#109506]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@kms_pm_rpm@pc8-residency.html - shard-tglu: NOTRUN -> [SKIP][209] ([fdo#109293] / [fdo#109506]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-7/igt@kms_pm_rpm@pc8-residency.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#6524]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#6524]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#6524] / [i915#6805]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#9808]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-5/igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][214] ([fdo#110189]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-7/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][215] ([fdo#110189]) +3 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-glk: NOTRUN -> [SKIP][216] ([fdo#109271] / [fdo#110189]) +5 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-glk7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#9683]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-6/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][218] ([fdo#111068] / [i915#9683]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-5/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#9732]) +4 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-2/igt@kms_psr@fbc-psr-cursor-plane-onoff.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#9732]) +13 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#9732]) +15 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-cursor-plane-move: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#9688]) +4 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-8/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_psr@psr2-cursor-plane-move: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#9732]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-18/igt@kms_psr@psr2-cursor-plane-move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#9685]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-10/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#4235] / [i915#5190]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#3555]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555]) +4 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][228] ([IGT#2]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#8623]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-5/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][230] ([i915#8623]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][231] ([i915#8623]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-tglu: NOTRUN -> [SKIP][232] ([fdo#109309]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-9/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1: - shard-snb: [PASS][233] -> [FAIL][234] ([i915#9196]) +1 other test fail [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html - shard-rkl: NOTRUN -> [FAIL][235] ([i915#9196]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8808]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-3/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#2437]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-5/igt@kms_writeback@writeback-check-output.html - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2437]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][239] ([fdo#109271] / [i915#2437]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-glk4/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#7387]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-6/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#2434] / [i915#7387]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@perf@mi-rpc.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#8850]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-6/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#8516]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-7/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#3291] / [i915#3708]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#3708]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-1/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3708]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-3/igt@prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][247] ([fdo#109295] / [i915#3708]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-1/igt@prime_vgem@fence-read-hang.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#2575]) +10 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-10/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_perfmon@destroy-valid-perfmon: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#2575]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-2/igt@v3d/v3d_perfmon@destroy-valid-perfmon.html * igt@v3d/v3d_submit_cl@multisync-out-syncs: - shard-rkl: NOTRUN -> [SKIP][250] ([fdo#109315]) +8 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-7/igt@v3d/v3d_submit_cl@multisync-out-syncs.html * igt@v3d/v3d_submit_csd@single-in-sync: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#2575]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-18/igt@v3d/v3d_submit_csd@single-in-sync.html * igt@v3d/v3d_wait_bo@bad-bo: - shard-tglu: NOTRUN -> [SKIP][252] ([fdo#109315] / [i915#2575]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-9/igt@v3d/v3d_wait_bo@bad-bo.html * igt@vc4/vc4_create_bo@create-bo-4096: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#7711]) +3 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-4/igt@vc4/vc4_create_bo@create-bo-4096.html * igt@vc4/vc4_label_bo@set-label: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#7711]) +5 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-5/igt@vc4/vc4_label_bo@set-label.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#7711]) +5 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-5/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html - shard-tglu: NOTRUN -> [SKIP][256] ([i915#2575]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-7/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_tiling@set-bad-flags: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#7711]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-12/igt@vc4/vc4_tiling@set-bad-flags.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [FAIL][258] ([i915#7742]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-rkl-7/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_eio@hibernate: - shard-tglu: [ABORT][260] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-tglu-10/igt@gem_eio@hibernate.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-4/igt@gem_eio@hibernate.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [FAIL][262] ([i915#2842]) -> [PASS][263] +3 other tests pass [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-rkl-7/igt@gem_exec_fair@basic-none@vcs0.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: [FAIL][264] ([i915#2842]) -> [PASS][265] +1 other test pass [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-tglu-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [INCOMPLETE][266] ([i915#9275]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-dg2-10/igt@gem_exec_suspend@basic-s0@smem.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-1/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][268] ([i915#9697]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [WARN][270] ([i915#7356]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][272] ([i915#3743]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-snb: [SKIP][274] ([fdo#109271]) -> [PASS][275] +7 other tests pass [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-snb2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][276] ([i915#9519]) -> [PASS][277] +1 other test pass [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1: - shard-tglu: [ABORT][278] -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-tglu-2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-tglu-10/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][280] ([i915#9820]) -> [INCOMPLETE][281] ([i915#10137] / [i915#9820] / [i915#9849]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][282] ([i915#10131] / [i915#9697]) -> [ABORT][283] ([i915#10131] / [i915#9820]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_content_protection@content-type-change: - shard-snb: [SKIP][284] ([fdo#109271]) -> [INCOMPLETE][285] ([i915#8816]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-snb1/igt@kms_content_protection@content-type-change.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-snb7/igt@kms_content_protection@content-type-change.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][286] ([fdo#110189] / [i915#3955]) -> [SKIP][287] ([i915#3955]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-snb: [SKIP][288] ([fdo#109271]) -> [SKIP][289] ([fdo#109271] / [fdo#111767]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-snb4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [SKIP][290] ([i915#3361]) -> [FAIL][291] ([i915#9295]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14330/shard-rkl-7/igt@kms_pm_dc@dc6-dpms.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030 [i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278 [i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9878]: https://gitlab.freedesktop.org/drm/intel/issues/9878 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7729 -> IGTPW_10731 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_14330: 7291e2e67dff0ff573900266382c9c9248a7dea5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10731: 10731 IGT_7729: 7729 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10731/index.html [-- Attachment #2: Type: text/html, Size: 97582 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-02-24 17:09 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-02-23 23:04 [PATCH i-g-t 0/2] tests/xe_spin_batch: Miscellaneous preempter fixes Jonathan Cavitt 2024-02-23 23:04 ` [PATCH i-g-t 1/2] tests/xe_spin_batch: Correct xe_vm_bind_async usage Jonathan Cavitt 2024-02-24 3:40 ` Matthew Brost 2024-02-23 23:04 ` [PATCH i-g-t 2/2] tests/xe_spin_batch: Sync after vm_bind_async Jonathan Cavitt 2024-02-24 3:41 ` Matthew Brost 2024-02-23 23:46 ` ✓ CI.xeBAT: success for tests/xe_spin_batch: Miscellaneous preempter fixes Patchwork 2024-02-24 0:02 ` ✓ Fi.CI.BAT: " Patchwork 2024-02-24 17:09 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox