* [PATCH i-g-t 0/1] tests/intel/xe_eudebug_online: Improve writes-caching-* tests
@ 2024-12-05 14:03 Dominik Karol Piątkowski
2024-12-05 14:03 ` [PATCH i-g-t 1/1] " Dominik Karol Piątkowski
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Dominik Karol Piątkowski @ 2024-12-05 14:03 UTC (permalink / raw)
To: igt-dev; +Cc: mika.kuoppala, Dominik Karol Piątkowski
- Remove repeated calls to caching_get_instruction_count
- Limit surface checking to each breakpoint that is after write
instruction
- Fix the issue with sync between workload lifetime vs resume
Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com>
Dominik Karol Piątkowski (1):
tests/intel/xe_eudebug_online: Improve writes-caching-* tests
tests/intel/xe_eudebug_online.c | 39 +++++++++++++++++++++++----------
1 file changed, 28 insertions(+), 11 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH i-g-t 1/1] tests/intel/xe_eudebug_online: Improve writes-caching-* tests 2024-12-05 14:03 [PATCH i-g-t 0/1] tests/intel/xe_eudebug_online: Improve writes-caching-* tests Dominik Karol Piątkowski @ 2024-12-05 14:03 ` Dominik Karol Piątkowski 2024-12-12 17:04 ` Mika Kuoppala 2024-12-06 3:58 ` ✗ i915.CI.BAT: failure for " Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 9+ messages in thread From: Dominik Karol Piątkowski @ 2024-12-05 14:03 UTC (permalink / raw) To: igt-dev; +Cc: mika.kuoppala, Dominik Karol Piątkowski - Remove repeated calls to caching_get_instruction_count - Limit surface checking to each breakpoint that is after write instruction - Fix the issue with sync between workload lifetime vs resume Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com> --- tests/intel/xe_eudebug_online.c | 39 +++++++++++++++++++++++---------- 1 file changed, 28 insertions(+), 11 deletions(-) diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c index 750350556..c02e2b1f4 100644 --- a/tests/intel/xe_eudebug_online.c +++ b/tests/intel/xe_eudebug_online.c @@ -919,6 +919,10 @@ static void eu_attention_resume_caching_trigger(struct xe_eudebug_debugger *d, const uint32_t breakpoint_bit = 1 << 30; struct gpgpu_shader *shader_preamble; struct gpgpu_shader *shader_write_instr; + const unsigned int instruction_count = + caching_get_instruction_count(d->master_fd, s_dim.x, d->flags); + uint64_t seqno = 0; + int ret; shader_preamble = gpgpu_shader_create(d->master_fd); gpgpu_shader__write_dword(shader_preamble, SHADER_CANARY, 0); @@ -935,7 +939,7 @@ static void eu_attention_resume_caching_trigger(struct xe_eudebug_debugger *d, } /* set breakpoint on next write instruction */ - if (*counter < caching_get_instruction_count(d->master_fd, s_dim.x, d->flags)) { + if (*counter < instruction_count) { igt_assert_eq(pread(data->vm_fd, &instr_usdw, sizeof(instr_usdw), data->bb_offset + *kernel_offset + shader_preamble->size * 4 + shader_write_instr->size * 4 * *counter), @@ -949,7 +953,7 @@ static void eu_attention_resume_caching_trigger(struct xe_eudebug_debugger *d, } /* restore current instruction */ - if (*counter && *counter <= caching_get_instruction_count(d->master_fd, s_dim.x, d->flags)) + if (*counter && *counter <= instruction_count) overwrite_immediate_value_in_common_target_write(data->vm_fd, data->bb_offset + *kernel_offset + shader_preamble->size * 4 + @@ -958,7 +962,7 @@ static void eu_attention_resume_caching_trigger(struct xe_eudebug_debugger *d, CACHING_VALUE(*counter - 1)); /* poison next instruction */ - if (*counter < caching_get_instruction_count(d->master_fd, s_dim.x, d->flags)) + if (*counter < instruction_count) overwrite_immediate_value_in_common_target_write(data->vm_fd, data->bb_offset + *kernel_offset + shader_preamble->size * 4 + @@ -969,15 +973,28 @@ static void eu_attention_resume_caching_trigger(struct xe_eudebug_debugger *d, gpgpu_shader_destroy(shader_write_instr); gpgpu_shader_destroy(shader_preamble); - for (int i = 0; i < data->target_size; i += sizeof(uint32_t)) { - igt_assert_eq(pread(data->vm_fd, &val, sizeof(val), data->target_offset + i), - sizeof(val)); - igt_assert_f(val != CACHING_POISON_VALUE, "Poison value found at %04d!\n", i); - } + /* check surface at each breakpoint that is after write instruction */ + if (*counter > 1 && *counter <= instruction_count + 1) + for (int i = 0; i < data->target_size; i += sizeof(uint32_t)) { + igt_assert_eq(pread(data->vm_fd, &val, sizeof(val), + data->target_offset + i), sizeof(val)); + igt_assert_f(val != CACHING_POISON_VALUE, + "Poison value found at %04d!\n", i); + } - eu_ctl_resume(d->master_fd, d->fd, att->client_handle, - att->exec_queue_handle, att->lrc_handle, - att->bitmask, att->bitmask_size); + ret = __eu_ctl(d->fd, att->client_handle, att->exec_queue_handle, att->lrc_handle, + att->bitmask, &att->bitmask_size, DRM_XE_EUDEBUG_EU_CONTROL_CMD_RESUME, + &seqno); + + /* + * XXX: build a better sync between workload lifetime vs resume. + * + * Right now, it is possible to get attention after the workload has vanished - in result, + * eu_ctl above fails. Band-aid it by checking the eu_ctl return value only n times it is + * actually expected - that is, instruction_count of writes + 2 nops. + */ + if (*counter < instruction_count + 2) + igt_assert_eq(ret, 0); (*counter)++; } -- 2.34.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 1/1] tests/intel/xe_eudebug_online: Improve writes-caching-* tests 2024-12-05 14:03 ` [PATCH i-g-t 1/1] " Dominik Karol Piątkowski @ 2024-12-12 17:04 ` Mika Kuoppala 0 siblings, 0 replies; 9+ messages in thread From: Mika Kuoppala @ 2024-12-12 17:04 UTC (permalink / raw) To: Dominik Karol Piątkowski, igt-dev; +Cc: Dominik Karol Piątkowski Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com> writes: > - Remove repeated calls to caching_get_instruction_count > - Limit surface checking to each breakpoint that is after write > instruction > - Fix the issue with sync between workload lifetime vs resume > > Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com> > --- > tests/intel/xe_eudebug_online.c | 39 +++++++++++++++++++++++---------- > 1 file changed, 28 insertions(+), 11 deletions(-) > > diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c > index 750350556..c02e2b1f4 100644 > --- a/tests/intel/xe_eudebug_online.c > +++ b/tests/intel/xe_eudebug_online.c > @@ -919,6 +919,10 @@ static void eu_attention_resume_caching_trigger(struct xe_eudebug_debugger *d, > const uint32_t breakpoint_bit = 1 << 30; > struct gpgpu_shader *shader_preamble; > struct gpgpu_shader *shader_write_instr; > + const unsigned int instruction_count = > + caching_get_instruction_count(d->master_fd, s_dim.x, d->flags); > + uint64_t seqno = 0; > + int ret; > > shader_preamble = gpgpu_shader_create(d->master_fd); > gpgpu_shader__write_dword(shader_preamble, SHADER_CANARY, 0); > @@ -935,7 +939,7 @@ static void eu_attention_resume_caching_trigger(struct xe_eudebug_debugger *d, > } > > /* set breakpoint on next write instruction */ > - if (*counter < caching_get_instruction_count(d->master_fd, s_dim.x, d->flags)) { > + if (*counter < instruction_count) { > igt_assert_eq(pread(data->vm_fd, &instr_usdw, sizeof(instr_usdw), > data->bb_offset + *kernel_offset + shader_preamble->size * 4 + > shader_write_instr->size * 4 * *counter), > @@ -949,7 +953,7 @@ static void eu_attention_resume_caching_trigger(struct xe_eudebug_debugger *d, > } > > /* restore current instruction */ > - if (*counter && *counter <= caching_get_instruction_count(d->master_fd, s_dim.x, d->flags)) > + if (*counter && *counter <= instruction_count) > overwrite_immediate_value_in_common_target_write(data->vm_fd, > data->bb_offset + *kernel_offset + > shader_preamble->size * 4 + > @@ -958,7 +962,7 @@ static void eu_attention_resume_caching_trigger(struct xe_eudebug_debugger *d, > CACHING_VALUE(*counter - 1)); > > /* poison next instruction */ > - if (*counter < caching_get_instruction_count(d->master_fd, s_dim.x, d->flags)) > + if (*counter < instruction_count) > overwrite_immediate_value_in_common_target_write(data->vm_fd, > data->bb_offset + *kernel_offset + > shader_preamble->size * 4 + > @@ -969,15 +973,28 @@ static void eu_attention_resume_caching_trigger(struct xe_eudebug_debugger *d, > gpgpu_shader_destroy(shader_write_instr); > gpgpu_shader_destroy(shader_preamble); > > - for (int i = 0; i < data->target_size; i += sizeof(uint32_t)) { > - igt_assert_eq(pread(data->vm_fd, &val, sizeof(val), data->target_offset + i), > - sizeof(val)); > - igt_assert_f(val != CACHING_POISON_VALUE, "Poison value found at %04d!\n", i); > - } > + /* check surface at each breakpoint that is after write instruction */ > + if (*counter > 1 && *counter <= instruction_count + 1) > + for (int i = 0; i < data->target_size; i += sizeof(uint32_t)) { > + igt_assert_eq(pread(data->vm_fd, &val, sizeof(val), > + data->target_offset + i), sizeof(val)); > + igt_assert_f(val != CACHING_POISON_VALUE, > + "Poison value found at %04d!\n", i); > + } > > - eu_ctl_resume(d->master_fd, d->fd, att->client_handle, > - att->exec_queue_handle, att->lrc_handle, > - att->bitmask, att->bitmask_size); > + ret = __eu_ctl(d->fd, att->client_handle, att->exec_queue_handle, att->lrc_handle, > + att->bitmask, &att->bitmask_size, DRM_XE_EUDEBUG_EU_CONTROL_CMD_RESUME, > + &seqno); > + > + /* > + * XXX: build a better sync between workload lifetime vs resume. > + * > + * Right now, it is possible to get attention after the workload has vanished - in result, > + * eu_ctl above fails. Band-aid it by checking the eu_ctl return value only n times it is > + * actually expected - that is, instruction_count of writes + 2 nops. > + */ The eu_ctl seqno versus the attention seqno can be used to untangle the async. But this should be band aid to remove timing component that causes some fails atleast on slow setups. Thanks for fixing this, Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com> > + if (*counter < instruction_count + 2) > + igt_assert_eq(ret, 0); > > (*counter)++; > } > -- > 2.34.1 ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.BAT: failure for tests/intel/xe_eudebug_online: Improve writes-caching-* tests 2024-12-05 14:03 [PATCH i-g-t 0/1] tests/intel/xe_eudebug_online: Improve writes-caching-* tests Dominik Karol Piątkowski 2024-12-05 14:03 ` [PATCH i-g-t 1/1] " Dominik Karol Piątkowski @ 2024-12-06 3:58 ` Patchwork 2024-12-13 9:59 ` Piatkowski, Dominik Karol 2024-12-06 4:00 ` ✗ Xe.CI.BAT: " Patchwork 2024-12-06 7:18 ` ✗ Xe.CI.Full: " Patchwork 3 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2024-12-06 3:58 UTC (permalink / raw) To: Dominik Karol Piątkowski; +Cc: igt-dev == Series Details == Series: tests/intel/xe_eudebug_online: Improve writes-caching-* tests URL : https://patchwork.freedesktop.org/series/142179/ State : failure == Summary == CI Bug Log - changes from IGT_8139 -> IGTPW_12259 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12259 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12259, 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_12259/index.html Participating hosts (44 -> 43) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12259: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live: - bat-arls-5: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12259/bat-arls-5/igt@i915_selftest@live.html * igt@i915_selftest@live@gem_migrate: - bat-arlh-3: NOTRUN -> [INCOMPLETE][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12259/bat-arlh-3/igt@i915_selftest@live@gem_migrate.html Known issues ------------ Here are the changes found in IGTPW_12259 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests@dma_fence_chain: - fi-bsw-nick: [PASS][3] -> [INCOMPLETE][4] ([i915#12904]) +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12259/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html * igt@i915_pm_rpm@module-reload: - bat-dg1-7: [PASS][5] -> [FAIL][6] ([i915#12903]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-dg1-7/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12259/bat-dg1-7/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@slpc: - bat-arls-5: NOTRUN -> [ABORT][7] ([i915#13172]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12259/bat-arls-5/igt@i915_selftest@live@slpc.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][8] -> [ABORT][9] ([i915#12061]) +1 other test abort [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12259/bat-mtlp-6/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - bat-rpls-4: [FAIL][10] ([i915#12903]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12259/bat-rpls-4/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [ABORT][12] ([i915#12061]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-arlh-3/igt@i915_selftest@live@workarounds.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12259/bat-arlh-3/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_selftest@live: - bat-arlh-3: [ABORT][14] ([i915#12061]) -> [INCOMPLETE][15] ([i915#12435]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-arlh-3/igt@i915_selftest@live.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12259/bat-arlh-3/igt@i915_selftest@live.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13172 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8139 -> IGTPW_12259 * Linux: CI_DRM_15796 -> CI_DRM_15799 CI-20190529: 20190529 CI_DRM_15796: 1b7746f770882ce40dacae683e8e65657c40c2b7 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15799: e57b4b7cd137e0ae00d2601b4b55ab7f504da422 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12259: b473b39eae7dd7dad60bdc98099c9a0c20fab931 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12259/index.html ^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: ✗ i915.CI.BAT: failure for tests/intel/xe_eudebug_online: Improve writes-caching-* tests 2024-12-06 3:58 ` ✗ i915.CI.BAT: failure for " Patchwork @ 2024-12-13 9:59 ` Piatkowski, Dominik Karol 0 siblings, 0 replies; 9+ messages in thread From: Piatkowski, Dominik Karol @ 2024-12-13 9:59 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org Hi, > -----Original Message----- > From: Patchwork <patchwork@emeril.freedesktop.org> > Sent: Friday, December 6, 2024 4:58 AM > To: Piatkowski, Dominik Karol <dominik.karol.piatkowski@intel.com> > Cc: igt-dev@lists.freedesktop.org > Subject: ✗ i915.CI.BAT: failure for tests/intel/xe_eudebug_online: Improve > writes-caching-* tests > > == Series Details == > > Series: tests/intel/xe_eudebug_online: Improve writes-caching-* tests > URL : https://patchwork.freedesktop.org/series/142179/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_8139 -> IGTPW_12259 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12259 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12259, 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_12259/index.html > > Participating hosts (44 -> 43) > ------------------------------ > > Missing (1): fi-snb-2520m > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in > IGTPW_12259: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_selftest@live: > - bat-arls-5: NOTRUN -> [ABORT][1] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12259/bat-arls- > 5/igt@i915_selftest@live.html > > * igt@i915_selftest@live@gem_migrate: > - bat-arlh-3: NOTRUN -> [INCOMPLETE][2] > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12259/bat-arlh- > 3/igt@i915_selftest@live@gem_migrate.html > > > Known issues > ------------ <cut> These failures are not related to the series. Dominik Karol ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.BAT: failure for tests/intel/xe_eudebug_online: Improve writes-caching-* tests 2024-12-05 14:03 [PATCH i-g-t 0/1] tests/intel/xe_eudebug_online: Improve writes-caching-* tests Dominik Karol Piątkowski 2024-12-05 14:03 ` [PATCH i-g-t 1/1] " Dominik Karol Piątkowski 2024-12-06 3:58 ` ✗ i915.CI.BAT: failure for " Patchwork @ 2024-12-06 4:00 ` Patchwork 2024-12-13 9:59 ` Piatkowski, Dominik Karol 2024-12-06 7:18 ` ✗ Xe.CI.Full: " Patchwork 3 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2024-12-06 4:00 UTC (permalink / raw) To: Dominik Karol Piątkowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2016 bytes --] == Series Details == Series: tests/intel/xe_eudebug_online: Improve writes-caching-* tests URL : https://patchwork.freedesktop.org/series/142179/ State : failure == Summary == CI Bug Log - changes from XEIGT_8139_BAT -> XEIGTPW_12259_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12259_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12259_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12259_BAT: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@basic-flip-vs-dpms@a-edp1: - bat-lnl-1: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html Build changes ------------- * IGT: IGT_8139 -> IGTPW_12259 * Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb IGTPW_12259: b473b39eae7dd7dad60bdc98099c9a0c20fab931 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7 xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb: 784dd0b20e39add60971ccdd5d2f7f3c27cf37bb == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/index.html [-- Attachment #2: Type: text/html, Size: 2612 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: ✗ Xe.CI.BAT: failure for tests/intel/xe_eudebug_online: Improve writes-caching-* tests 2024-12-06 4:00 ` ✗ Xe.CI.BAT: " Patchwork @ 2024-12-13 9:59 ` Piatkowski, Dominik Karol 0 siblings, 0 replies; 9+ messages in thread From: Piatkowski, Dominik Karol @ 2024-12-13 9:59 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 2218 bytes --] Hi, These failures are not related to the series. Dominik Karol From: Patchwork <patchwork@emeril.freedesktop.org> Sent: Friday, December 6, 2024 5:01 AM To: Piatkowski, Dominik Karol <dominik.karol.piatkowski@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: ✗ Xe.CI.BAT: failure for tests/intel/xe_eudebug_online: Improve writes-caching-* tests Patch Details Series: tests/intel/xe_eudebug_online: Improve writes-caching-* tests URL: https://patchwork.freedesktop.org/series/142179/ State: failure Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/index.html CI Bug Log - changes from XEIGT_8139_BAT -> XEIGTPW_12259_BAT Summary FAILURE Serious unknown changes coming with XEIGTPW_12259_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12259_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (8 -> 8) No changes in participating hosts Possible new issues Here are the unknown changes that may have been introduced in XEIGTPW_12259_BAT: IGT changes Possible regressions * igt@kms_flip@basic-flip-vs-dpms@a-edp1: * bat-lnl-1: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html> +1 other test dmesg-warn Build changes * IGT: IGT_8139 -> IGTPW_12259 * Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb IGTPW_12259: b473b39eae7dd7dad60bdc98099c9a0c20fab931 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7 xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb: 784dd0b20e39add60971ccdd5d2f7f3c27cf37bb [-- Attachment #2: Type: text/html, Size: 19243 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_eudebug_online: Improve writes-caching-* tests 2024-12-05 14:03 [PATCH i-g-t 0/1] tests/intel/xe_eudebug_online: Improve writes-caching-* tests Dominik Karol Piątkowski ` (2 preceding siblings ...) 2024-12-06 4:00 ` ✗ Xe.CI.BAT: " Patchwork @ 2024-12-06 7:18 ` Patchwork 2024-12-13 10:00 ` Piatkowski, Dominik Karol 3 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2024-12-06 7:18 UTC (permalink / raw) To: Dominik Karol Piątkowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 77780 bytes --] == Series Details == Series: tests/intel/xe_eudebug_online: Improve writes-caching-* tests URL : https://patchwork.freedesktop.org/series/142179/ State : failure == Summary == CI Bug Log - changes from XEIGT_8139_full -> XEIGTPW_12259_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12259_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12259_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12259_full: ### IGT changes ### #### Possible regressions #### * igt@kms_async_flips@test-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_async_flips@test-cursor-atomic.html * igt@kms_flip_event_leak@basic: - shard-bmg: NOTRUN -> [DMESG-WARN][2] +4 other tests dmesg-warn [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_flip_event_leak@basic.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-edp-1: - shard-lnl: NOTRUN -> [ABORT][3] +4 other tests abort [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@kms_vblank@ts-continuation-suspend@pipe-a-edp-1.html * igt@xe_exec_basic@many-execqueues-basic-defer-bind: - shard-lnl: [PASS][4] -> [FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_exec_basic@many-execqueues-basic-defer-bind.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_exec_basic@many-execqueues-basic-defer-bind.html * igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate-race: - shard-bmg: [PASS][6] -> [DMESG-WARN][7] +4 other tests dmesg-warn [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate-race.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate-race.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: NOTRUN -> [ABORT][8] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html Known issues ------------ Here are the changes found in XEIGTPW_12259_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-read: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1125]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#3157]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#664]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_async_flips@test-cursor.html * igt@kms_atomic@plane-invalid-params: - shard-bmg: [PASS][12] -> [DMESG-WARN][13] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests dmesg-warn [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_atomic@plane-invalid-params.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_atomic@plane-invalid-params.html * igt@kms_atomic_interruptible@legacy-dpms@pipe-a-dp-2: - shard-bmg: NOTRUN -> [DMESG-WARN][14] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-warn [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_atomic_interruptible@legacy-dpms@pipe-a-dp-2.html * igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs: - shard-lnl: [PASS][15] -> [FAIL][16] ([Intel XE#1701]) +1 other test fail [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3279]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2370]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1407]) +6 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2327]) +4 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [PASS][21] -> [DMESG-WARN][22] ([Intel XE#2705] / [Intel XE#3468]) +2 other tests dmesg-warn [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +15 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +15 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1467]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1428]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#610]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][28] -> [SKIP][29] ([Intel XE#2314] / [Intel XE#2894]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2191]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1512]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#367]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#367]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +19 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2669]) +15 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: NOTRUN -> [INCOMPLETE][36] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests incomplete [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#3432]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#3432]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2: - shard-bmg: [PASS][39] -> [DMESG-WARN][40] ([Intel XE#3468]) +31 other tests dmesg-warn [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2887]) +19 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_cdclk@plane-scaling: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2724]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-0-50: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#306]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2252]) +8 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#373]) +16 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_content_protection@dp-mst-type-1: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#307]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_content_protection@dp-mst-type-1.html - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2390]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-1: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2341]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2320]) +5 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1424]) +7 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#2291]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#309]) +9 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2291]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][55] ([Intel XE#877]) +1 other test dmesg-warn [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#323]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2286]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_draw_crc@draw-method-render@rgb565-xtiled: - shard-bmg: [PASS][58] -> [DMESG-FAIL][59] ([Intel XE#2705] / [Intel XE#3468]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_draw_crc@draw-method-render@rgb565-xtiled.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_draw_crc@draw-method-render@rgb565-xtiled.html * igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled: - shard-bmg: [PASS][60] -> [DMESG-FAIL][61] ([Intel XE#2705]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#2244]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_feature_discovery@display-3x: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#703]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_feature_discovery@display-3x.html - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2373]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2316]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1421]) +10 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][67] ([Intel XE#2882]) +3 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][68] ([Intel XE#3321]) +1 other test fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-WARN][69] ([Intel XE#3468]) +33 other tests dmesg-warn [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#2316]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_flip@2x-modeset-vs-vblank-race.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2: - shard-bmg: NOTRUN -> [DMESG-FAIL][72] ([Intel XE#3468]) +9 other tests dmesg-fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html * igt@kms_flip@flip-vs-expired-vblank: - shard-bmg: [PASS][73] -> [FAIL][74] ([Intel XE#2882]) +1 other test fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1397] / [Intel XE#1745]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1397]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode: - shard-bmg: [PASS][77] -> [DMESG-WARN][78] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-warn [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1401] / [Intel XE#1745]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2293]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2380]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1401]) +7 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-edid: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#352]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][85] ([Intel XE#2333]) +7 other tests fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2311]) +27 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#651]) +19 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2312]) +14 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2350]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2313]) +28 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#656]) +59 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#605]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@kms_getfb@getfb-reject-ccs.html - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2502]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@brightness-with-hdr: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#3374] / [Intel XE#3544]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_hdr@brightness-with-hdr.html - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#3544]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [PASS][96] -> [SKIP][97] ([Intel XE#1503]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_hdr@invalid-hdr.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#346]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_joiner@basic-big-joiner.html - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#346]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2934]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2934]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#2927]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-bmg: NOTRUN -> [INCOMPLETE][103] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#3663]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [PASS][104] -> [INCOMPLETE][105] ([Intel XE#1035] / [Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_plane@plane-panning-bottom-right-suspend.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-bmg: [PASS][106] -> [DMESG-FAIL][107] ([Intel XE#3468]) +11 other tests dmesg-fail [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#599]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html * igt@kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2493]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_plane_multiple@tiling-yf.html - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2493]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2763]) +14 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#2763]) +15 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#870]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1131]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2392]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1439] / [Intel XE#3141]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@universal-planes: - shard-lnl: [PASS][118] -> [DMESG-WARN][119] ([Intel XE#2042]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_pm_rpm@universal-planes.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_pm_rpm@universal-planes.html * igt@kms_pm_rpm@universal-planes@plane-68: - shard-lnl: [PASS][120] -> [DMESG-WARN][121] ([Intel XE#3184]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_pm_rpm@universal-planes@plane-68.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_pm_rpm@universal-planes@plane-68.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2893]) +5 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#1489]) +9 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1128]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_psr2_su@page_flip-nv12.html - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2387]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1406]) +6 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr-basic: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2234] / [Intel XE#2850]) +12 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_psr@psr-basic.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2234]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_psr@psr2-primary-render.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2330]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#3414]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#3414]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1127]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#1435]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_setmode@invalid-clone-single-crtc.html - shard-bmg: [PASS][134] -> [SKIP][135] ([Intel XE#1435]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#362]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-lnl: [PASS][137] -> [FAIL][138] ([Intel XE#899]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#1499]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_vrr@flip-basic.html * igt@kms_vrr@lobf: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#1499]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-invalid-parameters: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#756]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_writeback@writeback-invalid-parameters.html - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#756]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_writeback@writeback-invalid-parameters.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1091] / [Intel XE#2849]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#1091] / [Intel XE#2849]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_eudebug@attach-debug-metadata: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#2905]) +11 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@xe_eudebug@attach-debug-metadata.html * igt@xe_eudebug@multigpu-basic-client: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2905]) +9 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@xe_eudebug@multigpu-basic-client.html * igt@xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#688]) +9 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@xe_evict@evict-large-multi-vm.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-bmg: NOTRUN -> [INCOMPLETE][148] ([Intel XE#1473] / [Intel XE#3468]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2322]) +12 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#1392]) +19 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@xe_exec_basic@multigpu-once-userptr.html * igt@xe_exec_reset@cm-gt-reset: - shard-bmg: NOTRUN -> [INCOMPLETE][151] ([Intel XE#3592]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@xe_exec_reset@cm-gt-reset.html * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early: - shard-bmg: [PASS][152] -> [DMESG-WARN][153] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-bmg: NOTRUN -> [DMESG-WARN][154] ([Intel XE#3467] / [Intel XE#3468]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-bmg: [PASS][155] -> [DMESG-WARN][156] ([Intel XE#3467]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#2229]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html - shard-bmg: NOTRUN -> [INCOMPLETE][158] ([Intel XE#2998]) +1 other test incomplete [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2229]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_live_ktest@xe_dma_buf: - shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#1192]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_module_load@load: - shard-lnl: ([PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185]) -> ([PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [SKIP][208], [PASS][209], [PASS][210], [PASS][211]) ([Intel XE#378]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@xe_module_load@load.html * igt@xe_pat@pat-index-xelp: - shard-bmg: NOTRUN -> [SKIP][212] ([Intel XE#2245]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@xe_pat@pat-index-xelp.html * igt@xe_pm@d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][213] ([Intel XE#2284]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@s2idle-basic-exec: - shard-lnl: NOTRUN -> [ABORT][214] ([Intel XE#1358] / [Intel XE#1616]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][215] ([Intel XE#584]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][216] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-bmg: NOTRUN -> [DMESG-WARN][217] ([Intel XE#2280] / [Intel XE#3468]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_pm_residency@gt-c6-freeze@gt0: - shard-lnl: NOTRUN -> [ABORT][218] ([Intel XE#3673]) +5 other tests abort [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@xe_pm_residency@gt-c6-freeze@gt0.html - shard-bmg: NOTRUN -> [ABORT][219] ([Intel XE#3673]) +1 other test abort [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt0.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: NOTRUN -> [FAIL][220] ([Intel XE#958]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-bmg: NOTRUN -> [SKIP][221] ([Intel XE#944]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][222] ([Intel XE#944]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@xe_query@multigpu-query-topology-l3-bank-mask.html #### Possible fixes #### * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][223] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic: - shard-bmg: [INCOMPLETE][225] -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-bmg: [SKIP][227] ([Intel XE#2291]) -> [PASS][228] +1 other test pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-bmg: [DMESG-FAIL][229] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-bmg: [SKIP][231] ([Intel XE#2316]) -> [PASS][232] +4 other tests pass [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@wf_vblank-ts-check: - shard-lnl: [FAIL][233] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_flip@wf_vblank-ts-check@c-edp1: - shard-lnl: [FAIL][235] ([Intel XE#886]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@c-edp1.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check@c-edp1.html * igt@kms_hdr@static-swap: - shard-bmg: [SKIP][237] ([Intel XE#1503]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_hdr@static-swap.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_hdr@static-swap.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][239] ([Intel XE#2571]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][241] ([Intel XE#718]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-lnl: [FAIL][243] ([Intel XE#2029]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_pm_dc@deep-pkgc.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html * igt@kms_rotation_crc@multiplane-rotation: - shard-bmg: [DMESG-FAIL][245] ([Intel XE#3468]) -> [PASS][246] +8 other tests pass [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_rotation_crc@multiplane-rotation.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_setmode@basic: - shard-bmg: [FAIL][247] ([Intel XE#2883]) -> [PASS][248] +1 other test pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_setmode@basic.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-7/igt@kms_setmode@basic.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [FAIL][249] ([Intel XE#899]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-3: - shard-bmg: [DMESG-WARN][251] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][252] +2 other tests pass [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-3.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-3.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen: - shard-bmg: [FAIL][253] -> [PASS][254] +1 other test pass [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html * igt@xe_exec_balancer@once-cm-parallel-rebind: - shard-bmg: [DMESG-WARN][255] -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_exec_balancer@once-cm-parallel-rebind.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@xe_exec_balancer@once-cm-parallel-rebind.html * igt@xe_exec_threads@threads-cm-userptr-invalidate-race: - shard-bmg: [DMESG-WARN][257] ([Intel XE#1727]) -> [PASS][258] +2 other tests pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html * igt@xe_exec_threads@threads-hang-userptr-rebind: - shard-bmg: [DMESG-WARN][259] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_exec_threads@threads-hang-userptr-rebind.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@xe_exec_threads@threads-hang-userptr-rebind.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: - shard-bmg: [DMESG-WARN][261] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: - shard-bmg: [DMESG-WARN][263] ([Intel XE#3467]) -> [PASS][264] +2 other tests pass [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html * igt@xe_live_ktest@xe_migrate: - shard-bmg: [SKIP][265] ([Intel XE#1192]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_live_ktest@xe_migrate.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html * igt@xe_pm@s3-mocs: - shard-bmg: [DMESG-FAIL][267] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s3-mocs.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@xe_pm@s3-mocs.html * igt@xe_pm@s4-vm-bind-userptr: - shard-bmg: [DMESG-WARN][269] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_pm_residency@idle-residency-on-exec: - shard-lnl: [FAIL][271] ([Intel XE#2564]) -> [PASS][272] +1 other test pass [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [DMESG-WARN][273] ([Intel XE#3468]) -> [PASS][274] +17 other tests pass [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Warnings #### * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: [FAIL][275] ([Intel XE#1178]) -> [INCOMPLETE][276] ([Intel XE#2715] / [Intel XE#3468]) +1 other test incomplete [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_content_protection@srm@pipe-a-dp-2.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2: - shard-bmg: [FAIL][277] ([Intel XE#2141]) -> [DMESG-FAIL][278] ([Intel XE#3468]) +1 other test dmesg-fail [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][279] ([Intel XE#2882]) -> [SKIP][280] ([Intel XE#2316]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-bmg: [SKIP][281] ([Intel XE#2316]) -> [DMESG-WARN][282] ([Intel XE#3468]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning-interruptible.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [ABORT][283] ([Intel XE#3468]) -> [SKIP][284] ([Intel XE#2316]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [DMESG-WARN][285] ([Intel XE#3468]) -> [SKIP][286] ([Intel XE#2316]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-panning-interruptible: - shard-bmg: [DMESG-WARN][287] ([Intel XE#2705] / [Intel XE#3468]) -> [DMESG-WARN][288] ([Intel XE#3468]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][289] ([Intel XE#2311]) -> [SKIP][290] ([Intel XE#2312]) +8 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][291] ([Intel XE#2312]) -> [SKIP][292] ([Intel XE#2311]) +10 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [DMESG-FAIL][293] ([Intel XE#3468]) -> [FAIL][294] ([Intel XE#2333]) +1 other test fail [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt: - shard-bmg: [FAIL][295] ([Intel XE#2333]) -> [DMESG-FAIL][296] ([Intel XE#3468]) +4 other tests dmesg-fail [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][297] ([Intel XE#2312]) -> [FAIL][298] ([Intel XE#2333]) +6 other tests fail [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][299] ([Intel XE#2333]) -> [SKIP][300] ([Intel XE#2312]) +2 other tests skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move: - shard-bmg: [DMESG-FAIL][301] ([Intel XE#3468]) -> [SKIP][302] ([Intel XE#2312]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][303] ([Intel XE#2313]) -> [SKIP][304] ([Intel XE#2312]) +10 other tests skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][305] ([Intel XE#2312]) -> [SKIP][306] ([Intel XE#2313]) +10 other tests skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][307] ([Intel XE#1729]) -> [SKIP][308] ([Intel XE#2426]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html * igt@xe_evict@evict-threads-large: - shard-bmg: [TIMEOUT][309] ([Intel XE#1473] / [Intel XE#2472]) -> [TIMEOUT][310] ([Intel XE#1473]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_evict@evict-threads-large.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@xe_evict@evict-threads-large.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-bmg: [DMESG-WARN][311] ([Intel XE#3343]) -> [DMESG-WARN][312] ([Intel XE#3343] / [Intel XE#3468]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_module_load@many-reload: - shard-bmg: [FAIL][313] ([Intel XE#3625]) -> [DMESG-WARN][314] ([Intel XE#3467]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_module_load@many-reload.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@xe_module_load@many-reload.html * igt@xe_pm@s2idle-multiple-execs: - shard-bmg: [ABORT][315] ([Intel XE#1616]) -> [ABORT][316] ([Intel XE#1616] / [Intel XE#3468]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_pm@s2idle-multiple-execs.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@xe_pm@s2idle-multiple-execs.html * igt@xe_pm@s2idle-vm-bind-prefetch: - shard-bmg: [ABORT][317] ([Intel XE#1616] / [Intel XE#3468]) -> [ABORT][318] ([Intel XE#1616]) +1 other test abort [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-prefetch.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-7/igt@xe_pm@s2idle-vm-bind-prefetch.html [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2564 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3592 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#3663]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3663 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 Build changes ------------- * IGT: IGT_8139 -> IGTPW_12259 * Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb IGTPW_12259: b473b39eae7dd7dad60bdc98099c9a0c20fab931 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7 xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb: 784dd0b20e39add60971ccdd5d2f7f3c27cf37bb == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/index.html [-- Attachment #2: Type: text/html, Size: 91924 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: ✗ Xe.CI.Full: failure for tests/intel/xe_eudebug_online: Improve writes-caching-* tests 2024-12-06 7:18 ` ✗ Xe.CI.Full: " Patchwork @ 2024-12-13 10:00 ` Piatkowski, Dominik Karol 0 siblings, 0 replies; 9+ messages in thread From: Piatkowski, Dominik Karol @ 2024-12-13 10:00 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 77469 bytes --] Hi, These failures are not related to the series. Dominik Karol From: Patchwork <patchwork@emeril.freedesktop.org> Sent: Friday, December 6, 2024 8:19 AM To: Piatkowski, Dominik Karol <dominik.karol.piatkowski@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: ✗ Xe.CI.Full: failure for tests/intel/xe_eudebug_online: Improve writes-caching-* tests Patch Details Series: tests/intel/xe_eudebug_online: Improve writes-caching-* tests URL: https://patchwork.freedesktop.org/series/142179/ State: failure Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/index.html CI Bug Log - changes from XEIGT_8139_full -> XEIGTPW_12259_full Summary FAILURE Serious unknown changes coming with XEIGTPW_12259_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12259_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) No changes in participating hosts Possible new issues Here are the unknown changes that may have been introduced in XEIGTPW_12259_full: IGT changes Possible regressions * igt@kms_async_flips@test-cursor-atomic: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_async_flips@test-cursor-atomic.html> * igt@kms_flip_event_leak@basic: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_flip_event_leak@basic.html> +4 other tests dmesg-warn * igt@kms_vblank@ts-continuation-suspend@pipe-a-edp-1: * shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@kms_vblank@ts-continuation-suspend@pipe-a-edp-1.html> +4 other tests abort * igt@xe_exec_basic@many-execqueues-basic-defer-bind: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_exec_basic@many-execqueues-basic-defer-bind.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_exec_basic@many-execqueues-basic-defer-bind.html> * igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate-race: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate-race.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate-race.html> +4 other tests dmesg-warn * igt@xe_wedged@wedged-at-any-timeout: * shard-bmg: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html> Known issues Here are the changes found in XEIGTPW_12259_full that come from known issues: IGT changes Issues hit * igt@intel_hwmon@hwmon-read: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@intel_hwmon@hwmon-read.html> (Intel XE#1125<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125>) +1 other test skip * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (Intel XE#3157<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157>) * igt@kms_async_flips@test-cursor: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_async_flips@test-cursor.html> (Intel XE#664<https://gitlab.freedesktop.org/drm/xe/kernel/issues/664>) * igt@kms_atomic@plane-invalid-params: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_atomic@plane-invalid-params.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_atomic@plane-invalid-params.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +3 other tests dmesg-warn * igt@kms_atomic_interruptible@legacy-dpms@pipe-a-dp-2: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_atomic_interruptible@legacy-dpms@pipe-a-dp-2.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +4 other tests dmesg-warn * igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html> (Intel XE#1701<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701>) +1 other test fail * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (Intel XE#3279<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279>) * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (Intel XE#2370<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370>) * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +6 other tests skip * igt@kms_big_fb@x-tiled-32bpp-rotate-90: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +4 other tests skip * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-warn * igt@kms_big_fb@y-tiled-32bpp-rotate-0: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +15 other tests skip * igt@kms_big_fb@y-tiled-8bpp-rotate-90: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +15 other tests skip * igt@kms_big_fb@y-tiled-addfb: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb.html> (Intel XE#1467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467>) * igt@kms_big_fb@yf-tiled-addfb-size-overflow: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#1428<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428>) * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>) * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html> (Intel XE#1512<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512>) +1 other test skip * igt@kms_bw@linear-tiling-2-displays-1920x1080p: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +2 other tests skip * igt@kms_bw@linear-tiling-2-displays-2560x1440p: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +3 other tests skip * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +19 other tests skip * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html> (Intel XE#2669<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669>) +15 other tests skip * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: * shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +4 other tests incomplete * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +2 other tests skip * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +31 other tests dmesg-warn * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +19 other tests skip * igt@kms_cdclk@plane-scaling: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_cdclk@plane-scaling.html> (Intel XE#2724<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724>) * igt@kms_chamelium_color@ctm-0-50: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@kms_chamelium_color@ctm-0-50.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) * igt@kms_chamelium_frames@hdmi-aspect-ratio: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +8 other tests skip * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +16 other tests skip * igt@kms_content_protection@dp-mst-type-1: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_content_protection@dp-mst-type-1.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>) +2 other tests skip * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html> (Intel XE#2390<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390>) * igt@kms_content_protection@lic-type-1: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_content_protection@lic-type-1.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) * igt@kms_cursor_crc@cursor-offscreen-128x42: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +5 other tests skip * igt@kms_cursor_crc@cursor-rapid-movement-max-size: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +7 other tests skip * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +1 other test skip * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +9 other tests skip * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +4 other tests skip * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>) +1 other test dmesg-warn * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) +1 other test skip * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (Intel XE#2286<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286>) * igt@kms_draw_crc@draw-method-render@rgb565-xtiled: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_draw_crc@draw-method-render@rgb565-xtiled.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_draw_crc@draw-method-render@rgb565-xtiled.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705>) * igt@kms_dsc@dsc-fractional-bpp-with-bpc: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) +1 other test skip * igt@kms_feature_discovery@display-3x: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_feature_discovery@display-3x.html> (Intel XE#703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/703>) * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_feature_discovery@display-3x.html> (Intel XE#2373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373>) * igt@kms_flip@2x-blocking-wf_vblank: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_flip@2x-blocking-wf_vblank.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +3 other tests skip * igt@kms_flip@2x-flip-vs-dpms: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_flip@2x-flip-vs-dpms.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +10 other tests skip * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: * shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) +3 other tests fail * igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3: * shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) +1 other test fail * igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +33 other tests dmesg-warn * igt@kms_flip@2x-modeset-vs-vblank-race: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_flip@2x-modeset-vs-vblank-race.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) * igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2: * shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +9 other tests dmesg-fail * igt@kms_flip@flip-vs-expired-vblank: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) +1 other test fail * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +3 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397>) +3 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-warn * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +7 other tests skip * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +2 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +2 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> (Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +1 other test skip * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) +7 other tests skip * igt@kms_force_connector_basic@force-edid: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_force_connector_basic@force-edid.html> (Intel XE#352<https://gitlab.freedesktop.org/drm/xe/kernel/issues/352>) * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: * shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +7 other tests fail * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +27 other tests skip * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +19 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +14 other tests skip * igt@kms_frontbuffer_tracking@plane-fbc-rte: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html> (Intel XE#2350<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350>) * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +28 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +59 other tests skip * igt@kms_getfb@getfb-reject-ccs: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@kms_getfb@getfb-reject-ccs.html> (Intel XE#605<https://gitlab.freedesktop.org/drm/xe/kernel/issues/605>) * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_getfb@getfb-reject-ccs.html> (Intel XE#2502<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502>) * igt@kms_hdr@brightness-with-hdr: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374> / Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>) * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>) * igt@kms_hdr@invalid-hdr: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_hdr@invalid-hdr.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_hdr@invalid-hdr.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>) * igt@kms_joiner@basic-big-joiner: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_joiner@basic-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>) +1 other test skip * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_joiner@basic-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>) +1 other test skip * igt@kms_joiner@basic-force-ultra-joiner: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>) * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_joiner@basic-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>) * igt@kms_joiner@invalid-modeset-ultra-joiner: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>) * igt@kms_pipe_crc_basic@suspend-read-crc: * shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_pipe_crc_basic@suspend-read-crc.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3663<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3663>) * igt@kms_plane@plane-panning-bottom-right-suspend: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_plane@plane-panning-bottom-right-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend.html> (Intel XE#1035<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035> / Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +11 other tests dmesg-fail * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html> (Intel XE#599<https://gitlab.freedesktop.org/drm/xe/kernel/issues/599>) +3 other tests skip * igt@kms_plane_multiple@tiling-yf: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_plane_multiple@tiling-yf.html> (Intel XE#2493<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493>) * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html> (Intel XE#2493<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493>) * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +14 other tests skip * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +15 other tests skip * igt@kms_pm_backlight@fade: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_pm_backlight@fade.html> (Intel XE#870<https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>) * igt@kms_pm_dc@dc5-dpms-negative: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@kms_pm_dc@dc5-dpms-negative.html> (Intel XE#1131<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131>) * igt@kms_pm_dc@dc5-psr: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_pm_dc@dc5-psr.html> (Intel XE#2392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392>) * igt@kms_pm_rpm@modeset-lpsp-stress: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141> / Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>) +1 other test skip * igt@kms_pm_rpm@modeset-non-lpsp: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_pm_rpm@modeset-non-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141>) +2 other tests skip * igt@kms_pm_rpm@universal-planes: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_pm_rpm@universal-planes.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_pm_rpm@universal-planes.html> (Intel XE#2042<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042>) * igt@kms_pm_rpm@universal-planes@plane-68: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_pm_rpm@universal-planes@plane-68.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_pm_rpm@universal-planes@plane-68.html> (Intel XE#3184<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184>) * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html> (Intel XE#2893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893>) +5 other tests skip * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +9 other tests skip * igt@kms_psr2_su@page_flip-nv12: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#1128<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128>) * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#2387<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387>) * igt@kms_psr@pr-no-drrs: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_psr@pr-no-drrs.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +6 other tests skip * igt@kms_psr@psr-basic: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_psr@psr-basic.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +12 other tests skip * igt@kms_psr@psr2-primary-render: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_psr@psr2-primary-render.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234>) * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html> (Intel XE#2330<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330>) +1 other test skip * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +3 other tests skip * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +1 other test skip * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>) +2 other tests skip * igt@kms_setmode@invalid-clone-single-crtc: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@kms_setmode@invalid-clone-single-crtc.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>) * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>) * igt@kms_tiled_display@basic-test-pattern-with-chamelium: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#362<https://gitlab.freedesktop.org/drm/xe/kernel/issues/362>) * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html> (Intel XE#899<https://gitlab.freedesktop.org/drm/xe/kernel/issues/899>) * igt@kms_vrr@flip-basic: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_vrr@flip-basic.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +2 other tests skip * igt@kms_vrr@lobf: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@kms_vrr@lobf.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) * igt@kms_writeback@writeback-invalid-parameters: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_writeback@writeback-invalid-parameters.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_writeback@writeback-invalid-parameters.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) * igt@sriov_basic@enable-vfs-autoprobe-off: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>) * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@sriov_basic@enable-vfs-autoprobe-off.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>) * igt@xe_eudebug@attach-debug-metadata: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@xe_eudebug@attach-debug-metadata.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +11 other tests skip * igt@xe_eudebug@multigpu-basic-client: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@xe_eudebug@multigpu-basic-client.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +9 other tests skip * igt@xe_evict@evict-large-multi-vm: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@xe_evict@evict-large-multi-vm.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +9 other tests skip * igt@xe_evict@evict-mixed-many-threads-large: * shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +12 other tests skip * igt@xe_exec_basic@multigpu-once-userptr: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@xe_exec_basic@multigpu-once-userptr.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +19 other tests skip * igt@xe_exec_reset@cm-gt-reset: * shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@xe_exec_reset@cm-gt-reset.html> (Intel XE#3592<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3592>) * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-warn * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_fault_injection@vm-create-fail-xe_pt_create: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>) +1 other test skip * shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> (Intel XE#2998<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998>) +1 other test incomplete * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>) * igt@xe_live_ktest@xe_dma_buf: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@xe_live_ktest@xe_dma_buf.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) * igt@xe_module_load@load: * shard-lnl: (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@xe_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@xe_module_load@load.html>) (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>) * igt@xe_pat@pat-index-xelp: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@xe_pat@pat-index-xelp.html> (Intel XE#2245<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245>) * igt@xe_pm@d3cold-basic-exec: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@xe_pm@d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>) * igt@xe_pm@s2idle-basic-exec: * shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_pm@s2idle-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>) * igt@xe_pm@s3-basic-exec: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@xe_pm@s3-basic-exec.html> (Intel XE#584<https://gitlab.freedesktop.org/drm/xe/kernel/issues/584>) * igt@xe_pm@s3-d3cold-basic-exec: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@xe_pm@s3-d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) +2 other tests skip * igt@xe_pm@s4-vm-bind-unbind-all: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@xe_pm@s4-vm-bind-unbind-all.html> (Intel XE#2280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_pm_residency@gt-c6-freeze@gt0: * shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@xe_pm_residency@gt-c6-freeze@gt0.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +5 other tests abort * shard-bmg: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt0.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +1 other test abort * igt@xe_pm_residency@toggle-gt-c6: * shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html> (Intel XE#958<https://gitlab.freedesktop.org/drm/xe/kernel/issues/958>) * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +1 other test skip * igt@xe_query@multigpu-query-topology-l3-bank-mask: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-5/igt@xe_query@multigpu-query-topology-l3-bank-mask.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +1 other test skip Possible fixes * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html> * igt@kms_cursor_legacy@cursor-vs-flip-atomic: * shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html> * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> +1 other test pass * igt@kms_cursor_legacy@flip-vs-cursor-toggle: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html> * igt@kms_flip@2x-wf_vblank-ts-check: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_flip@2x-wf_vblank-ts-check.html> +4 other tests pass * igt@kms_flip@wf_vblank-ts-check: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check.html> (Intel XE#3149<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149> / Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check.html> * igt@kms_flip@wf_vblank-ts-check@c-edp1: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@c-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check@c-edp1.html> * igt@kms_hdr@static-swap: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_hdr@static-swap.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_hdr@static-swap.html> * igt@kms_plane_scaling@2x-scaler-multi-pipe: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html> (Intel XE#2571<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html> * igt@kms_pm_dc@dc5-psr: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html> * igt@kms_pm_dc@deep-pkgc: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@kms_pm_dc@deep-pkgc.html> (Intel XE#2029<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html> * igt@kms_rotation_crc@multiplane-rotation: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_rotation_crc@multiplane-rotation.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_rotation_crc@multiplane-rotation.html> +8 other tests pass * igt@kms_setmode@basic: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_setmode@basic.html> (Intel XE#2883<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-7/igt@kms_setmode@basic.html> +1 other test pass * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html> (Intel XE#899<https://gitlab.freedesktop.org/drm/xe/kernel/issues/899>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html> * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-3: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-3.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-3.html> +2 other tests pass * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html> +1 other test pass * igt@xe_exec_balancer@once-cm-parallel-rebind: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_exec_balancer@once-cm-parallel-rebind.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@xe_exec_balancer@once-cm-parallel-rebind.html> * igt@xe_exec_threads@threads-cm-userptr-invalidate-race: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@xe_exec_threads@threads-cm-userptr-invalidate-race.html> +2 other tests pass * igt@xe_exec_threads@threads-hang-userptr-rebind: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_exec_threads@threads-hang-userptr-rebind.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@xe_exec_threads@threads-hang-userptr-rebind.html> * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html> * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html> +2 other tests pass * igt@xe_live_ktest@xe_migrate: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_live_ktest@xe_migrate.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html> * igt@xe_pm@s3-mocs: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s3-mocs.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@xe_pm@s3-mocs.html> * igt@xe_pm@s4-vm-bind-userptr: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@xe_pm@s4-vm-bind-userptr.html> * igt@xe_pm_residency@idle-residency-on-exec: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html> (Intel XE#2564<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2564>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html> +1 other test pass * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html> +17 other tests pass Warnings * igt@kms_content_protection@srm@pipe-a-dp-2: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_content_protection@srm@pipe-a-dp-2.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_content_protection@srm@pipe-a-dp-2.html> (Intel XE#2715<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html> (Intel XE#2141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-fail * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) * igt@kms_flip@2x-flip-vs-panning-interruptible: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@kms_flip@2x-flip-vs-panning-interruptible.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@kms_flip@2x-flip-vs-suspend-interruptible: * shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) * igt@kms_flip@2x-plain-flip-fb-recreate: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +1 other test skip * igt@kms_flip@flip-vs-panning-interruptible: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_flip@flip-vs-panning-interruptible.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +8 other tests skip * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +10 other tests skip * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +1 other test fail * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +4 other tests dmesg-fail * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +6 other tests fail * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +2 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +10 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +10 other tests skip * igt@kms_tiled_display@basic-test-pattern: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#1729<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426>) * igt@xe_evict@evict-threads-large: * shard-bmg: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_evict@evict-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#2472<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-3/igt@xe_evict@evict-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_module_load@many-reload: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_module_load@many-reload.html> (Intel XE#3625<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-5/igt@xe_module_load@many-reload.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) * igt@xe_pm@s2idle-multiple-execs: * shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_pm@s2idle-multiple-execs.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-4/igt@xe_pm@s2idle-multiple-execs.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_pm@s2idle-vm-bind-prefetch: * shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-prefetch.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12259/shard-bmg-7/igt@xe_pm@s2idle-vm-bind-prefetch.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>) +1 other test abort Build changes * IGT: IGT_8139 -> IGTPW_12259 * Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb IGTPW_12259: b473b39eae7dd7dad60bdc98099c9a0c20fab931 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7 xe-2330-784dd0b20e39add60971ccdd5d2f7f3c27cf37bb: 784dd0b20e39add60971ccdd5d2f7f3c27cf37bb [-- Attachment #2: Type: text/html, Size: 159685 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-12-13 10:00 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-12-05 14:03 [PATCH i-g-t 0/1] tests/intel/xe_eudebug_online: Improve writes-caching-* tests Dominik Karol Piątkowski 2024-12-05 14:03 ` [PATCH i-g-t 1/1] " Dominik Karol Piątkowski 2024-12-12 17:04 ` Mika Kuoppala 2024-12-06 3:58 ` ✗ i915.CI.BAT: failure for " Patchwork 2024-12-13 9:59 ` Piatkowski, Dominik Karol 2024-12-06 4:00 ` ✗ Xe.CI.BAT: " Patchwork 2024-12-13 9:59 ` Piatkowski, Dominik Karol 2024-12-06 7:18 ` ✗ Xe.CI.Full: " Patchwork 2024-12-13 10:00 ` Piatkowski, Dominik Karol
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox