* [igt-dev] [PATCH] tests/xe_huc_copy: Handle multiple GTs
@ 2023-10-05 10:32 Daniele Ceraolo Spurio
2023-10-05 14:28 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Daniele Ceraolo Spurio @ 2023-10-05 10:32 UTC (permalink / raw)
To: igt-dev
The test currently only looks for video engines on GT0, which is a
problem because newer platforms (like MTL) have their video engines on
the media GT. ALso, it is technically possible to have 1 HuC per-GT,
though we don't currently have any platform that supports this.
To handle the media GT use-case and to future proof against multiple
HuCs, we can just loop and repeat the test on any GT that has video
engines.
Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
---
tests/intel/xe_huc_copy.c | 26 ++++++++++++++++++++++----
1 file changed, 22 insertions(+), 4 deletions(-)
diff --git a/tests/intel/xe_huc_copy.c b/tests/intel/xe_huc_copy.c
index c9891a729..1c1b9d72c 100644
--- a/tests/intel/xe_huc_copy.c
+++ b/tests/intel/xe_huc_copy.c
@@ -104,9 +104,9 @@ gen12_create_batch_huc_copy(uint32_t *batch,
*/
static void
-test_huc_copy(int fd)
+__test_huc_copy(int fd, uint32_t vm, struct drm_xe_engine_class_instance *hwe)
{
- uint32_t vm, exec_queue;
+ uint32_t exec_queue;
char *dinput;
struct drm_xe_sync sync = { 0 };
@@ -117,8 +117,7 @@ test_huc_copy(int fd)
{ .addr = ADDR_BATCH, .size = SIZE_BATCH }, // batch
};
- vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0);
- exec_queue = xe_exec_queue_create_class(fd, vm, DRM_XE_ENGINE_CLASS_VIDEO_DECODE);
+ exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
sync.flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL;
sync.handle = syncobj_create(fd, 0);
@@ -148,6 +147,25 @@ test_huc_copy(int fd)
syncobj_destroy(fd, sync.handle);
xe_exec_queue_destroy(fd, exec_queue);
+}
+
+static void
+test_huc_copy(int fd)
+{
+ struct drm_xe_engine_class_instance *hwe;
+ uint32_t vm;
+ uint32_t tested_gts = 0;
+
+ vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0);
+
+ xe_for_each_hw_engine(fd, hwe) {
+ if (hwe->engine_class == DRM_XE_ENGINE_CLASS_VIDEO_DECODE &&
+ !(tested_gts & BIT(hwe->gt_id))) {
+ tested_gts |= BIT(hwe->gt_id);
+ __test_huc_copy(fd, vm, hwe);
+ }
+ }
+
xe_vm_destroy(fd, vm);
}
--
2.41.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* [igt-dev] ✓ CI.xeBAT: success for tests/xe_huc_copy: Handle multiple GTs 2023-10-05 10:32 [igt-dev] [PATCH] tests/xe_huc_copy: Handle multiple GTs Daniele Ceraolo Spurio @ 2023-10-05 14:28 ` Patchwork 2023-10-05 14:29 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-10-05 14:28 UTC (permalink / raw) To: Daniele Ceraolo Spurio; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2370 bytes --] == Series Details == Series: tests/xe_huc_copy: Handle multiple GTs URL : https://patchwork.freedesktop.org/series/124654/ State : success == Summary == CI Bug Log - changes from XEIGT_7516_BAT -> XEIGTPW_9924_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9924_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-dg2-oem2: [PASS][1] -> [FAIL][2] ([Intel XE#480]) +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7516/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9924/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1: - bat-adlp-7: [FAIL][3] ([Intel XE#480]) -> [PASS][4] +2 other tests pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7516/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9924/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html * {igt@xe_create@create-execqueues-noleak}: - bat-adlp-7: [FAIL][5] ([Intel XE#524]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7516/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9924/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 Build changes ------------- * IGT: IGT_7516 -> IGTPW_9924 IGTPW_9924: 9924 IGT_7516: 40b5a184f6da0a3295ee429947696d254522bb22 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-415-3d2b298aaf52e74d4e90470cd65de047362e4875: 3d2b298aaf52e74d4e90470cd65de047362e4875 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9924/index.html [-- Attachment #2: Type: text/html, Size: 3074 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/xe_huc_copy: Handle multiple GTs 2023-10-05 10:32 [igt-dev] [PATCH] tests/xe_huc_copy: Handle multiple GTs Daniele Ceraolo Spurio 2023-10-05 14:28 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork @ 2023-10-05 14:29 ` Patchwork 2023-10-05 20:09 ` [igt-dev] [PATCH] " Kamil Konieczny 2023-10-06 3:49 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-10-05 14:29 UTC (permalink / raw) To: Daniele Ceraolo Spurio; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4140 bytes --] == Series Details == Series: tests/xe_huc_copy: Handle multiple GTs URL : https://patchwork.freedesktop.org/series/124654/ State : success == Summary == CI Bug Log - changes from CI_DRM_13717 -> IGTPW_9924 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/index.html Participating hosts (41 -> 37) ------------------------------ Missing (4): fi-kbl-soraka fi-hsw-4770 bat-dg2-9 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9924 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-dpms@d-dp1: - bat-adlp-9: [PASS][1] -> [FAIL][2] ([i915#7655]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/bat-adlp-9/igt@kms_flip@basic-flip-vs-dpms@d-dp1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/bat-adlp-9/igt@kms_flip@basic-flip-vs-dpms@d-dp1.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5: - bat-adlp-11: NOTRUN -> [ABORT][3] ([i915#8668] / [i915#9451]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5.html #### Possible fixes #### * igt@i915_selftest@live@gt_mocs: - bat-dg2-11: [INCOMPLETE][4] ([i915#9253]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/bat-dg2-11/igt@i915_selftest@live@gt_mocs.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/bat-dg2-11/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@workarounds: - bat-dg2-11: [DMESG-FAIL][6] ([i915#7913]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/bat-dg2-11/igt@i915_selftest@live@workarounds.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/bat-dg2-11/igt@i915_selftest@live@workarounds.html * igt@kms_chamelium_edid@hdmi-edid-read: - {bat-dg2-13}: [DMESG-WARN][8] ([i915#7952]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-5: - bat-adlp-11: [DMESG-FAIL][10] ([i915#6868]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/bat-adlp-11/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-5.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/bat-adlp-11/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-5.html * igt@kms_pipe_crc_basic@read-crc@pipe-b-dp-6: - bat-adlp-11: [ABORT][12] ([i915#8668]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc@pipe-b-dp-6.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc@pipe-b-dp-6.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868 [i915#7655]: https://gitlab.freedesktop.org/drm/intel/issues/7655 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#9253]: https://gitlab.freedesktop.org/drm/intel/issues/9253 [i915#9451]: https://gitlab.freedesktop.org/drm/intel/issues/9451 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7516 -> IGTPW_9924 CI-20190529: 20190529 CI_DRM_13717: ba043ea3baa7d6cd98262e865f903bf9016a8a5e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9924: 9924 IGT_7516: 40b5a184f6da0a3295ee429947696d254522bb22 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/index.html [-- Attachment #2: Type: text/html, Size: 4981 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH] tests/xe_huc_copy: Handle multiple GTs 2023-10-05 10:32 [igt-dev] [PATCH] tests/xe_huc_copy: Handle multiple GTs Daniele Ceraolo Spurio 2023-10-05 14:28 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork 2023-10-05 14:29 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-10-05 20:09 ` Kamil Konieczny 2023-10-06 10:43 ` Daniele Ceraolo Spurio 2023-10-06 3:49 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 3 siblings, 1 reply; 6+ messages in thread From: Kamil Konieczny @ 2023-10-05 20:09 UTC (permalink / raw) To: igt-dev Hi Daniele, On 2023-10-05 at 03:32:44 -0700, Daniele Ceraolo Spurio wrote: > The test currently only looks for video engines on GT0, which is a > problem because newer platforms (like MTL) have their video engines on > the media GT. ALso, it is technically possible to have 1 HuC per-GT, > though we don't currently have any platform that supports this. > To handle the media GT use-case and to future proof against multiple > HuCs, we can just loop and repeat the test on any GT that has video > engines. > > Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> > --- > tests/intel/xe_huc_copy.c | 26 ++++++++++++++++++++++---- > 1 file changed, 22 insertions(+), 4 deletions(-) > > diff --git a/tests/intel/xe_huc_copy.c b/tests/intel/xe_huc_copy.c > index c9891a729..1c1b9d72c 100644 > --- a/tests/intel/xe_huc_copy.c > +++ b/tests/intel/xe_huc_copy.c > @@ -104,9 +104,9 @@ gen12_create_batch_huc_copy(uint32_t *batch, > */ > > static void > -test_huc_copy(int fd) > +__test_huc_copy(int fd, uint32_t vm, struct drm_xe_engine_class_instance *hwe) > { > - uint32_t vm, exec_queue; > + uint32_t exec_queue; > char *dinput; > struct drm_xe_sync sync = { 0 }; > > @@ -117,8 +117,7 @@ test_huc_copy(int fd) > { .addr = ADDR_BATCH, .size = SIZE_BATCH }, // batch > }; > > - vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0); > - exec_queue = xe_exec_queue_create_class(fd, vm, DRM_XE_ENGINE_CLASS_VIDEO_DECODE); > + exec_queue = xe_exec_queue_create(fd, vm, hwe, 0); > sync.flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL; > sync.handle = syncobj_create(fd, 0); > > @@ -148,6 +147,25 @@ test_huc_copy(int fd) > > syncobj_destroy(fd, sync.handle); > xe_exec_queue_destroy(fd, exec_queue); > +} > + > +static void > +test_huc_copy(int fd) > +{ > + struct drm_xe_engine_class_instance *hwe; > + uint32_t vm; > + uint32_t tested_gts = 0; > + > + vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0); > + > + xe_for_each_hw_engine(fd, hwe) { > + if (hwe->engine_class == DRM_XE_ENGINE_CLASS_VIDEO_DECODE && > + !(tested_gts & BIT(hwe->gt_id))) { > + tested_gts |= BIT(hwe->gt_id); > + __test_huc_copy(fd, vm, hwe); > + } > + } > + Please add here check if any huc was tested, maybe something like: igt_require_f(tested_gts, "No video class engines found\n"); With that: Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > xe_vm_destroy(fd, vm); > } > > -- > 2.41.0 > ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH] tests/xe_huc_copy: Handle multiple GTs 2023-10-05 20:09 ` [igt-dev] [PATCH] " Kamil Konieczny @ 2023-10-06 10:43 ` Daniele Ceraolo Spurio 0 siblings, 0 replies; 6+ messages in thread From: Daniele Ceraolo Spurio @ 2023-10-06 10:43 UTC (permalink / raw) To: Kamil Konieczny, igt-dev On 10/5/2023 1:09 PM, Kamil Konieczny wrote: > Hi Daniele, > > On 2023-10-05 at 03:32:44 -0700, Daniele Ceraolo Spurio wrote: >> The test currently only looks for video engines on GT0, which is a >> problem because newer platforms (like MTL) have their video engines on >> the media GT. ALso, it is technically possible to have 1 HuC per-GT, >> though we don't currently have any platform that supports this. >> To handle the media GT use-case and to future proof against multiple >> HuCs, we can just loop and repeat the test on any GT that has video >> engines. >> >> Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> >> --- >> tests/intel/xe_huc_copy.c | 26 ++++++++++++++++++++++---- >> 1 file changed, 22 insertions(+), 4 deletions(-) >> >> diff --git a/tests/intel/xe_huc_copy.c b/tests/intel/xe_huc_copy.c >> index c9891a729..1c1b9d72c 100644 >> --- a/tests/intel/xe_huc_copy.c >> +++ b/tests/intel/xe_huc_copy.c >> @@ -104,9 +104,9 @@ gen12_create_batch_huc_copy(uint32_t *batch, >> */ >> >> static void >> -test_huc_copy(int fd) >> +__test_huc_copy(int fd, uint32_t vm, struct drm_xe_engine_class_instance *hwe) >> { >> - uint32_t vm, exec_queue; >> + uint32_t exec_queue; >> char *dinput; >> struct drm_xe_sync sync = { 0 }; >> >> @@ -117,8 +117,7 @@ test_huc_copy(int fd) >> { .addr = ADDR_BATCH, .size = SIZE_BATCH }, // batch >> }; >> >> - vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0); >> - exec_queue = xe_exec_queue_create_class(fd, vm, DRM_XE_ENGINE_CLASS_VIDEO_DECODE); >> + exec_queue = xe_exec_queue_create(fd, vm, hwe, 0); >> sync.flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL; >> sync.handle = syncobj_create(fd, 0); >> >> @@ -148,6 +147,25 @@ test_huc_copy(int fd) >> >> syncobj_destroy(fd, sync.handle); >> xe_exec_queue_destroy(fd, exec_queue); >> +} >> + >> +static void >> +test_huc_copy(int fd) >> +{ >> + struct drm_xe_engine_class_instance *hwe; >> + uint32_t vm; >> + uint32_t tested_gts = 0; >> + >> + vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0); >> + >> + xe_for_each_hw_engine(fd, hwe) { >> + if (hwe->engine_class == DRM_XE_ENGINE_CLASS_VIDEO_DECODE && >> + !(tested_gts & BIT(hwe->gt_id))) { >> + tested_gts |= BIT(hwe->gt_id); >> + __test_huc_copy(fd, vm, hwe); >> + } >> + } >> + > Please add here check if any huc was tested, maybe something like: > igt_require_f(tested_gts, "No video class engines found\n"); Note that there is already a check in the igt_main below that ensures that at least 1 GT has a running HuC, which can only happen if that GT has video engines. However, it's probably still worth to add this second check you suggested to protect against mismatches in the queries. Will respin. > > With that: > > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Thanks! Daniele > >> xe_vm_destroy(fd, vm); >> } >> >> -- >> 2.41.0 >> ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/xe_huc_copy: Handle multiple GTs 2023-10-05 10:32 [igt-dev] [PATCH] tests/xe_huc_copy: Handle multiple GTs Daniele Ceraolo Spurio ` (2 preceding siblings ...) 2023-10-05 20:09 ` [igt-dev] [PATCH] " Kamil Konieczny @ 2023-10-06 3:49 ` Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-10-06 3:49 UTC (permalink / raw) To: Daniele Ceraolo Spurio; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 73792 bytes --] == Series Details == Series: tests/xe_huc_copy: Handle multiple GTs URL : https://patchwork.freedesktop.org/series/124654/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13717_full -> IGTPW_9924_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9924_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9924_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9924/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9924_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@dmabuf: - shard-apl: [PASS][1] -> [DMESG-FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-apl1/igt@i915_selftest@live@dmabuf.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-apl4/igt@i915_selftest@live@dmabuf.html * igt@i915_selftest@perf@request: - shard-mtlp: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-mtlp-4/igt@i915_selftest@perf@request.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-8/igt@i915_selftest@perf@request.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1: - shard-mtlp: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-mtlp-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-2/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-rkl: [PASS][7] -> [INCOMPLETE][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-rkl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@intel_hwmon@hwmon-read}: - shard-rkl: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-1/igt@intel_hwmon@hwmon-read.html New tests --------- New tests have been introduced between CI_DRM_13717_full and IGTPW_9924_full: ### New IGT tests (5) ### * igt@kms_plane_alpha_blend@coverage-7efc@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@coverage-7efc@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_cursor@primary@pipe-b-hdmi-a-3-size-128: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_cursor@primary@pipe-b-hdmi-a-3-size-256: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_cursor@primary@pipe-b-hdmi-a-3-size-64: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9924_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32@vcs0-smem0: - shard-mtlp: [PASS][10] -> [ABORT][11] ([i915#9262]) +1 other test abort [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-mtlp-7/igt@api_intel_bb@crc32@vcs0-smem0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-4/igt@api_intel_bb@crc32@vcs0-smem0.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +4 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-16/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@busy-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +20 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-3/igt@drm_fdinfo@busy-check-all@vecs1.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-4/igt@gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-12/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-mtlp: [PASS][16] -> [FAIL][17] ([i915#6268]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-mtlp-7/igt@gem_ctx_exec@basic-nohangcheck.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-2/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@hang: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#8555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-12/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#8555]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][20] ([i915#7975] / [i915#8213]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-2/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][21] -> [FAIL][22] ([i915#5784]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-dg1-14/igt@gem_eio@reset-stress.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-16/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#4812]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-17/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4812]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-11/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][25] -> [FAIL][26] ([i915#2846]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4473] / [i915#4771]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-4/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-rkl: [PASS][28] -> [FAIL][29] ([i915#2842]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-rkl-6/igt@gem_exec_fair@basic-none-share@rcs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][30] ([i915#2842]) +3 other tests fail [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][31] -> [FAIL][32] ([i915#2842]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-uc: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-17/igt@gem_exec_flush@basic-batch-kernel-default-uc.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-7/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-11/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#7697]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-6/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-17/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-softpin: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3281]) +10 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-11/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-2/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4860]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-6/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4860]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-1/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_lmem_swapping@massive-random: - shard-tglu: NOTRUN -> [SKIP][42] ([i915#4613]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-8/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#4613]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4613]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-7/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][45] -> [DMESG-WARN][46] ([i915#4936] / [i915#5493]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap@big-bo: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4083]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-12/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4077]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-16/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4077]) +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-3/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4083]) +7 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-11/igt@gem_mmap_wc@copy.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#3282]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3282]) +8 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-7/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pxp@create-protected-buffer: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4270]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-7/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4270]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-10/igt@gem_pxp@display-protected-crc.html - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4270]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-7/igt@gem_pxp@display-protected-crc.html * igt@gem_render_copy@yf-tiled-ccs-to-linear: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#8428]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-3/igt@gem_render_copy@yf-tiled-ccs-to-linear.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4079]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4885]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-1/igt@gem_softpin@evict-snoop.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][59] ([i915#5889]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-3/igt@gem_spin_batch@spin-all-new.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4879]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-7/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3297]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-10/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [PASS][62] -> [FAIL][63] ([i915#9353]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-mtlp-7/igt@gem_userptr_blits@nohangcheck.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-5/igt@gem_userptr_blits@nohangcheck.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#3297]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-7/igt@gem_userptr_blits@readonly-unsync.html - shard-dg1: NOTRUN -> [SKIP][65] ([i915#3297]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-16/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3281]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-6/igt@gem_userptr_blits@relocations.html * igt@gen7_exec_parse@basic-offset: - shard-dg2: NOTRUN -> [SKIP][67] ([fdo#109289]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-2/igt@gen7_exec_parse@basic-offset.html * igt@gen7_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][68] ([fdo#109289]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-3/igt@gen7_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#2856]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-11/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#2527]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-1/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@bb-start-param: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#2856]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-6/igt@gen9_exec_parse@bb-start-param.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [PASS][72] -> [FAIL][73] ([i915#7069]) +1 other test fail [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-mtlp-1/igt@i915_hangman@engine-engine-error@vcs0.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-7/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][74] -> [DMESG-WARN][75] ([i915#8617]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-apl: [PASS][76] -> [FAIL][77] ([i915#7036]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-apl4/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-apl3/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][78] -> [SKIP][79] ([i915#1397]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-rkl-1/igt@i915_pm_rpm@dpms-non-lpsp.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-rkl: NOTRUN -> [SKIP][80] ([fdo#109506]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg1: [PASS][81] -> [SKIP][82] ([i915#1397]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-18/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@pc8-residency: - shard-dg2: NOTRUN -> [SKIP][83] ([fdo#109506]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-10/igt@i915_pm_rpm@pc8-residency.html * igt@i915_pm_rpm@system-suspend-modeset: - shard-dg2: [PASS][84] -> [FAIL][85] ([fdo#103375]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-dg2-3/igt@i915_pm_rpm@system-suspend-modeset.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-11/igt@i915_pm_rpm@system-suspend-modeset.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#6621]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-3/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#6621]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-18/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#8925]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#7984]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-1/igt@i915_power@sanity.html * igt@i915_query@query-topology-known-pci-ids: - shard-dg2: NOTRUN -> [SKIP][90] ([fdo#109303]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-10/igt@i915_query@query-topology-known-pci-ids.html - shard-rkl: NOTRUN -> [SKIP][91] ([fdo#109303]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-7/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][92] ([i915#9311]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-7/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#4212]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-6/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@crc@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][94] ([i915#8247]) +3 other tests fail [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-19/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#404]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#1769] / [i915#3555]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#1769] / [i915#3555]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][98] ([i915#1769] / [i915#3555]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][99] -> [FAIL][100] ([i915#5138]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][101] ([fdo#111614]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][102] ([i915#4538] / [i915#5286]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-14/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#5286]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-4/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]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][105] ([fdo#111614]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#5190]) +11 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][107] -> [FAIL][108] ([i915#3743]) +1 other test fail [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#4538] / [i915#5190]) +7 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-10/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [SKIP][111] ([fdo#111615]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][112] ([fdo#110723]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#2705]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-10/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#3734] / [i915#5354] / [i915#6095]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-6/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#3689] / [i915#5354]) +21 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-5/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html - shard-tglu: NOTRUN -> [SKIP][117] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#5354] / [i915#6095]) +4 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-7/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-bad-aux-stride-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][119] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-10/igt@kms_ccs@pipe-c-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#3689] / [i915#3886] / [i915#5354]) +10 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-2/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#3689] / [i915#5354] / [i915#6095]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-8/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#5354] / [i915#6095]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-2/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#5354] / [i915#6095]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-5/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3689] / [i915#5354] / [i915#6095]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-17/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#5354]) +12 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-2/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_rc_ccs_cc: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#5354] / [i915#6095]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-15/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#5354]) +50 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-7/igt@kms_ccs@pipe-d-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4087] / [i915#7213]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4087]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#7828]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-2/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2: NOTRUN -> [SKIP][131] ([fdo#111827]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-7/igt@kms_chamelium_color@ctm-0-25.html - shard-rkl: NOTRUN -> [SKIP][132] ([fdo#111827]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-4/igt@kms_chamelium_color@ctm-0-25.html - shard-dg1: NOTRUN -> [SKIP][133] ([fdo#111827]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-17/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-negative: - shard-mtlp: NOTRUN -> [SKIP][134] ([fdo#111827]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-5/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@dp-crc-single: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#7828]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-5/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#7828]) +10 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-7/igt@kms_chamelium_frames@hdmi-crc-fast.html - shard-rkl: NOTRUN -> [SKIP][137] ([i915#7828]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-4/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#7828]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-17/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#3555]) +5 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-3/igt@kms_color@deep-color.html - shard-rkl: NOTRUN -> [SKIP][140] ([i915#3555]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-1/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#3116] / [i915#3299]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#7118]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-2/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][143] ([i915#1339]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3546]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-tglu: NOTRUN -> [SKIP][145] ([fdo#109274]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][146] ([fdo#109274] / [i915#5354]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][147] -> [FAIL][148] ([i915#2346]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#4103] / [i915#4213]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#9226] / [i915#9261]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#9227]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#9227]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#9226] / [i915#9261]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#3804]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#3840]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-1/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][156] ([fdo#109274]) +7 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-rkl: NOTRUN -> [SKIP][157] ([fdo#111825]) +5 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [DMESG-WARN][158] ([i915#8841]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-nonexisting-fb: - shard-snb: NOTRUN -> [SKIP][159] ([fdo#109271]) +20 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-snb7/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3637]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-4/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#2672]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][162] ([i915#2587] / [i915#2672]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#2672]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#2587] / [i915#2672]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#2672]) +4 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][166] ([fdo#109285]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-3/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3458]) +20 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#3458]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#3023]) +12 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#8708]) +19 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][171] ([i915#8708]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][172] ([fdo#111825] / [i915#1825]) +17 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html - shard-dg1: NOTRUN -> [SKIP][173] ([fdo#111825]) +7 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][174] ([fdo#109280]) +8 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#8708]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#1825]) +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#6118]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-11/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8228]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-2/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#8228]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-6/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#6953]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#5235]) +19 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html - shard-rkl: NOTRUN -> [SKIP][182] ([i915#5235]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#5235]) +11 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#6524] / [i915#6805]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#658]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu: NOTRUN -> [SKIP][186] ([fdo#109642] / [fdo#111068] / [i915#658]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-2/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#658]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-3/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][188] ([fdo#111068] / [i915#658]) +2 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][189] ([fdo#111068] / [i915#658]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-16/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@cursor_mmap_gtt: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#4077]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-1/igt@kms_psr@cursor_mmap_gtt.html * igt@kms_psr@cursor_plane_move: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#1072] / [i915#4078]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-16/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@primary_blt: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#1072]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-4/igt@kms_psr@primary_blt.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#1072]) +9 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-3/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_psr@psr2_sprite_render: - shard-tglu: NOTRUN -> [SKIP][194] ([fdo#110189]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-4/igt@kms_psr@psr2_sprite_render.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#5461] / [i915#658]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-12/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-rkl: NOTRUN -> [SKIP][196] ([i915#5461] / [i915#658]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#4235]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#4235] / [i915#5190]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#4098]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-7/igt@kms_setmode@basic-clone-single-crtc.html - shard-dg1: NOTRUN -> [SKIP][200] ([i915#3555]) +2 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-19/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#8809]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-8/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-mtlp: [PASS][202] -> [FAIL][203] ([i915#9196]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#4070] / [i915#6768]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-4/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-d-query-idle: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#4070] / [i915#533] / [i915#6768]) +3 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-4/igt@kms_vblank@pipe-d-query-idle.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#2436]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-3/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][207] ([i915#2436]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-1/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#7387]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-11/igt@perf@global-sseu-config.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][209] -> [FAIL][210] ([i915#4349]) +3 other tests fail [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@busy-idle@vcs0: - shard-dg2: NOTRUN -> [FAIL][211] ([i915#4349]) +14 other tests fail [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-10/igt@perf_pmu@busy-idle@vcs0.html - shard-dg1: [PASS][212] -> [FAIL][213] ([i915#4349]) +4 other tests fail [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-dg1-18/igt@perf_pmu@busy-idle@vcs0.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-14/igt@perf_pmu@busy-idle@vcs0.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][214] ([i915#5793]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-7/igt@perf_pmu@module-unload.html * igt@perf_pmu@render-node-busy-idle@ccs0: - shard-mtlp: [PASS][215] -> [FAIL][216] ([i915#4349]) +6 other tests fail [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-mtlp-7/igt@perf_pmu@render-node-busy-idle@ccs0.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle@ccs0.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3291] / [i915#3708]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-6/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#3708] / [i915#4077]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-5/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3708]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-11/igt@prime_vgem@fence-write-hang.html * igt@v3d/v3d_create_bo@create-bo-zeroed: - shard-rkl: NOTRUN -> [SKIP][220] ([fdo#109315]) +5 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-1/igt@v3d/v3d_create_bo@create-bo-zeroed.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#2575]) +14 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-6/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_perfmon@create-single-perfmon: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#2575]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-2/igt@v3d/v3d_perfmon@create-single-perfmon.html * igt@v3d/v3d_perfmon@create-two-perfmon: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#2575]) +2 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-15/igt@v3d/v3d_perfmon@create-two-perfmon.html * igt@v3d/v3d_submit_cl@bad-multisync-out-sync: - shard-tglu: NOTRUN -> [SKIP][224] ([fdo#109315] / [i915#2575]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-6/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html * igt@vc4/vc4_perfmon@destroy-invalid-perfmon: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#2575]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-4/igt@vc4/vc4_perfmon@destroy-invalid-perfmon.html * igt@vc4/vc4_purgeable_bo@mark-purgeable: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#7711]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-7/igt@vc4/vc4_purgeable_bo@mark-purgeable.html * igt@vc4/vc4_purgeable_bo@mark-willneed: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#7711]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-19/igt@vc4/vc4_purgeable_bo@mark-willneed.html * igt@vc4/vc4_tiling@get-after-free: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#7711]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-8/igt@vc4/vc4_tiling@get-after-free.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#7711]) +9 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-3/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][230] ([i915#6268]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: [FAIL][232] ([i915#2410]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-mtlp-2/igt@gem_ctx_persistence@engines-hang@vcs0.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-1/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][234] ([i915#5784]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-dg1-14/igt@gem_eio@unwedge-stress.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-15/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][236] ([i915#2842]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-glk5/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][238] ([i915#2842]) -> [PASS][239] +3 other tests pass [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-rkl-7/igt@gem_exec_fair@basic-pace@vecs0.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [FAIL][240] ([i915#3591]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [SKIP][242] ([i915#1397]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-dg2-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [SKIP][244] ([i915#1397]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg1-18/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][246] ([i915#1397]) -> [PASS][247] +2 other tests pass [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@system-suspend-devices: - shard-dg2: [INCOMPLETE][248] -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-dg2-11/igt@i915_pm_rpm@system-suspend-devices.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-11/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][250] ([fdo#103375]) -> [PASS][251] +1 other test pass [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][252] ([i915#5138]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][254] ([i915#3743]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@single-move@all-pipes: - shard-mtlp: [DMESG-WARN][256] ([i915#2017]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-2/igt@kms_cursor_legacy@single-move@all-pipes.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg2: [FAIL][258] ([i915#6880]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-4.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_rotation_crc@multiplane-rotation: - shard-rkl: [INCOMPLETE][260] ([i915#8875]) -> [PASS][261] +1 other test pass [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-rkl-6/igt@kms_rotation_crc@multiplane-rotation.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_scaling_modes@scaling-mode-full@edp-1-pipe-d: - shard-mtlp: [ABORT][262] ([i915#9414]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-mtlp-7/igt@kms_scaling_modes@scaling-mode-full@edp-1-pipe-d.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-1/igt@kms_scaling_modes@scaling-mode-full@edp-1-pipe-d.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-snb: [FAIL][264] ([i915#9196]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-snb6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-snb2/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html - shard-tglu: [FAIL][266] ([i915#9196]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: [FAIL][268] ([i915#4349]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-mtlp-4/igt@perf_pmu@busy-double-start@rcs0.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: [FAIL][270] ([i915#1731]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@vecs0.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-mtlp-3/igt@sysfs_heartbeat_interval@mixed@vecs0.html #### Warnings #### * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][272] ([i915#3955]) -> [SKIP][273] ([fdo#110189] / [i915#3955]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][274] ([fdo#109285]) -> [SKIP][275] ([fdo#109285] / [i915#4098]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][276] ([i915#9351]) -> [INCOMPLETE][277] ([i915#5493]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13717/shard-dg2-7/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [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#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [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#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [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#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [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#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [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#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [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#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [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#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9353]: https://gitlab.freedesktop.org/drm/intel/issues/9353 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7516 -> IGTPW_9924 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13717: ba043ea3baa7d6cd98262e865f903bf9016a8a5e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9924: 9924 IGT_7516: 40b5a184f6da0a3295ee429947696d254522bb22 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9924/index.html [-- Attachment #2: Type: text/html, Size: 89668 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-10-06 10:43 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-10-05 10:32 [igt-dev] [PATCH] tests/xe_huc_copy: Handle multiple GTs Daniele Ceraolo Spurio 2023-10-05 14:28 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork 2023-10-05 14:29 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-10-05 20:09 ` [igt-dev] [PATCH] " Kamil Konieczny 2023-10-06 10:43 ` Daniele Ceraolo Spurio 2023-10-06 3:49 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox