* [PATCH i-g-t] xe_eudebug_online: Add default threads_per_eu value for platforms without hwconfig.
@ 2024-12-13 9:23 Dominik Grzegorzek
2024-12-13 11:49 ` Jan Maslak
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Dominik Grzegorzek @ 2024-12-13 9:23 UTC (permalink / raw)
To: igt-dev; +Cc: jan.maslak, Dominik Grzegorzek
There are hardware platforms which are not supporting
hwconfig table, for example ADLS. Since [1] queried number of threads per eu
can be NULL, accept it and use 8 as default.
Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
[1] https://patchwork.freedesktop.org/series/142282/
---
tests/intel/xe_eudebug_online.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c
index bf53b44ce..8fdd071a5 100644
--- a/tests/intel/xe_eudebug_online.c
+++ b/tests/intel/xe_eudebug_online.c
@@ -1155,7 +1155,7 @@ static int query_attention_bitmask_size(int fd, int gt)
{
uint32_t thread_count_len;
uint32_t *thread_count_ptr;
- uint32_t thread_count;
+ uint32_t threads_per_eu = 8;
struct drm_xe_query_topology_mask *c_dss = NULL, *g_dss = NULL, *eu_per_dss = NULL;
struct drm_xe_query_topology_mask *topology;
struct drm_xe_device_query query = {
@@ -1169,9 +1169,10 @@ static int query_attention_bitmask_size(int fd, int gt)
thread_count_ptr = xe_hwconfig_lookup_value(fd, INTEL_HWCONFIG_NUM_THREADS_PER_EU,
&thread_count_len);
- igt_assert(thread_count_ptr);
- igt_assert(thread_count_len == 1);
- thread_count = *thread_count_ptr;
+ if (thread_count_ptr) {
+ igt_assert(thread_count_len == 1);
+ threads_per_eu = *thread_count_ptr;
+ }
igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0);
igt_assert_neq(query.size, 0);
@@ -1222,7 +1223,7 @@ static int query_attention_bitmask_size(int fd, int gt)
free(any_dss);
free(topology);
- return eus * DIV_ROUND_UP(thread_count, 8);
+ return eus * DIV_ROUND_UP(threads_per_eu, 8);
}
static struct drm_xe_eudebug_event_exec_queue *
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH i-g-t] xe_eudebug_online: Add default threads_per_eu value for platforms without hwconfig. 2024-12-13 9:23 [PATCH i-g-t] xe_eudebug_online: Add default threads_per_eu value for platforms without hwconfig Dominik Grzegorzek @ 2024-12-13 11:49 ` Jan Maslak 2024-12-13 14:32 ` ✓ Xe.CI.BAT: success for " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Jan Maslak @ 2024-12-13 11:49 UTC (permalink / raw) To: Dominik Grzegorzek, igt-dev On Fri, Dec 13, 2024 at 10:23:39AM +0100, Dominik Grzegorzek wrote: > There are hardware platforms which are not supporting > hwconfig table, for example ADLS. Since [1] queried number of threads per eu > can be NULL, accept it and use 8 as default. > > Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com> LGTM, Reviewed-by: Jan Maslak <jan.maslak@intel.com> > > [1] https://patchwork.freedesktop.org/series/142282/ > > --- > tests/intel/xe_eudebug_online.c | 11 ++++++----- > 1 file changed, 6 insertions(+), 5 deletions(-) > > diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c > index bf53b44ce..8fdd071a5 100644 > --- a/tests/intel/xe_eudebug_online.c > +++ b/tests/intel/xe_eudebug_online.c > @@ -1155,7 +1155,7 @@ static int query_attention_bitmask_size(int fd, int gt) > { > uint32_t thread_count_len; > uint32_t *thread_count_ptr; > - uint32_t thread_count; > + uint32_t threads_per_eu = 8; > struct drm_xe_query_topology_mask *c_dss = NULL, *g_dss = NULL, *eu_per_dss = NULL; > struct drm_xe_query_topology_mask *topology; > struct drm_xe_device_query query = { > @@ -1169,9 +1169,10 @@ static int query_attention_bitmask_size(int fd, int gt) > > thread_count_ptr = xe_hwconfig_lookup_value(fd, INTEL_HWCONFIG_NUM_THREADS_PER_EU, > &thread_count_len); > - igt_assert(thread_count_ptr); > - igt_assert(thread_count_len == 1); > - thread_count = *thread_count_ptr; > + if (thread_count_ptr) { > + igt_assert(thread_count_len == 1); > + threads_per_eu = *thread_count_ptr; > + } > > igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0); > igt_assert_neq(query.size, 0); > @@ -1222,7 +1223,7 @@ static int query_attention_bitmask_size(int fd, int gt) > free(any_dss); > free(topology); > > - return eus * DIV_ROUND_UP(thread_count, 8); > + return eus * DIV_ROUND_UP(threads_per_eu, 8); > } > > static struct drm_xe_eudebug_event_exec_queue * > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ Xe.CI.BAT: success for xe_eudebug_online: Add default threads_per_eu value for platforms without hwconfig. 2024-12-13 9:23 [PATCH i-g-t] xe_eudebug_online: Add default threads_per_eu value for platforms without hwconfig Dominik Grzegorzek 2024-12-13 11:49 ` Jan Maslak @ 2024-12-13 14:32 ` Patchwork 2024-12-13 14:33 ` ✗ i915.CI.BAT: failure " Patchwork 2024-12-14 0:25 ` ✗ Xe.CI.Full: " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-12-13 14:32 UTC (permalink / raw) To: Dominik Grzegorzek; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4937 bytes --] == Series Details == Series: xe_eudebug_online: Add default threads_per_eu value for platforms without hwconfig. URL : https://patchwork.freedesktop.org/series/142536/ State : success == Summary == CI Bug Log - changes from XEIGT_8155_BAT -> XEIGTPW_12312_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 9) ------------------------------ Additional (1): bat-lnl-1 Known issues ------------ Here are the changes found in XEIGTPW_12312_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-lnl-1: NOTRUN -> [SKIP][1] ([Intel XE#1466]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/bat-lnl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_dsc@dsc-basic: - bat-lnl-1: NOTRUN -> [SKIP][2] ([Intel XE#2244]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/bat-lnl-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-connector-state: - bat-lnl-1: NOTRUN -> [SKIP][3] ([Intel XE#352]) +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/bat-lnl-1/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_hdmi_inject@inject-audio: - bat-lnl-1: NOTRUN -> [SKIP][4] ([Intel XE#1470] / [Intel XE#2853]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/bat-lnl-1/igt@kms_hdmi_inject@inject-audio.html * igt@sriov_basic@enable-vfs-autoprobe-off: - bat-lnl-1: NOTRUN -> [SKIP][5] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/bat-lnl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_evict@evict-beng-mixed-threads-small-multi-vm: - bat-lnl-1: NOTRUN -> [SKIP][6] ([Intel XE#688]) +17 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/bat-lnl-1/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html * igt@xe_live_ktest@xe_bo: - bat-lnl-1: NOTRUN -> [SKIP][7] ([Intel XE#1192]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/bat-lnl-1/igt@xe_live_ktest@xe_bo.html * igt@xe_mmap@vram: - bat-lnl-1: NOTRUN -> [SKIP][8] ([Intel XE#1416]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/bat-lnl-1/igt@xe_mmap@vram.html * igt@xe_pat@pat-index-xehpc: - bat-lnl-1: NOTRUN -> [SKIP][9] ([Intel XE#1420] / [Intel XE#2838]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/bat-lnl-1/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - bat-lnl-1: NOTRUN -> [SKIP][10] ([Intel XE#977]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/bat-lnl-1/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - bat-lnl-1: NOTRUN -> [SKIP][11] ([Intel XE#979]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/bat-lnl-1/igt@xe_pat@pat-index-xelpg.html * igt@xe_sriov_flr@flr-vf1-clear: - bat-lnl-1: NOTRUN -> [SKIP][12] ([Intel XE#3342]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/bat-lnl-1/igt@xe_sriov_flr@flr-vf1-clear.html [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_8155 -> IGTPW_12312 IGTPW_12312: 979524f04ca87c93239b5438fce280bcdc9c3c88 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8155: f33cf6456706ad5d454a87a773104b4fca7d81e3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2369-8f7b64e137723da601f3c07d0cda22566cf994d5: 8f7b64e137723da601f3c07d0cda22566cf994d5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/index.html [-- Attachment #2: Type: text/html, Size: 5748 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ i915.CI.BAT: failure for xe_eudebug_online: Add default threads_per_eu value for platforms without hwconfig. 2024-12-13 9:23 [PATCH i-g-t] xe_eudebug_online: Add default threads_per_eu value for platforms without hwconfig Dominik Grzegorzek 2024-12-13 11:49 ` Jan Maslak 2024-12-13 14:32 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2024-12-13 14:33 ` Patchwork 2024-12-14 0:25 ` ✗ Xe.CI.Full: " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-12-13 14:33 UTC (permalink / raw) To: Dominik Grzegorzek; +Cc: igt-dev == Series Details == Series: xe_eudebug_online: Add default threads_per_eu value for platforms without hwconfig. URL : https://patchwork.freedesktop.org/series/142536/ State : failure == Summary == CI Bug Log - changes from IGT_8155 -> IGTPW_12312 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12312 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12312, 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_12312/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12312: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@evict: - fi-skl-6600u: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8155/fi-skl-6600u/igt@i915_selftest@live@evict.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12312/fi-skl-6600u/igt@i915_selftest@live@evict.html Known issues ------------ Here are the changes found in IGTPW_12312 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-jsl-1: [PASS][3] -> [DMESG-FAIL][4] ([i915#13132]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8155/bat-jsl-1/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12312/bat-jsl-1/igt@i915_selftest@live.html - bat-arls-5: NOTRUN -> [ABORT][5] ([i915#12061]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12312/bat-arls-5/igt@i915_selftest@live.html - fi-skl-6600u: [PASS][6] -> [INCOMPLETE][7] ([i915#13050]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8155/fi-skl-6600u/igt@i915_selftest@live.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12312/fi-skl-6600u/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [PASS][8] -> [ABORT][9] ([i915#12061]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8155/bat-arls-5/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12312/bat-arls-5/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - bat-dg2-11: [FAIL][10] ([i915#12903]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8155/bat-dg2-11/igt@i915_pm_rpm@module-reload.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12312/bat-dg2-11/igt@i915_pm_rpm@module-reload.html - bat-rpls-4: [FAIL][12] ([i915#12903]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8155/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12312/bat-rpls-4/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@workarounds: - {bat-arls-6}: [ABORT][14] ([i915#12061]) -> [PASS][15] +1 other test pass [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8155/bat-arls-6/igt@i915_selftest@live@workarounds.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12312/bat-arls-6/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#13050]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13050 [i915#13132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13132 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8155 -> IGTPW_12312 CI-20190529: 20190529 CI_DRM_15837: 8f7b64e137723da601f3c07d0cda22566cf994d5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12312: 979524f04ca87c93239b5438fce280bcdc9c3c88 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8155: f33cf6456706ad5d454a87a773104b4fca7d81e3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12312/index.html ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Xe.CI.Full: failure for xe_eudebug_online: Add default threads_per_eu value for platforms without hwconfig. 2024-12-13 9:23 [PATCH i-g-t] xe_eudebug_online: Add default threads_per_eu value for platforms without hwconfig Dominik Grzegorzek ` (2 preceding siblings ...) 2024-12-13 14:33 ` ✗ i915.CI.BAT: failure " Patchwork @ 2024-12-14 0:25 ` Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-12-14 0:25 UTC (permalink / raw) To: Dominik Grzegorzek; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 87334 bytes --] == Series Details == Series: xe_eudebug_online: Add default threads_per_eu value for platforms without hwconfig. URL : https://patchwork.freedesktop.org/series/142536/ State : failure == Summary == CI Bug Log - changes from XEIGT_8155_full -> XEIGTPW_12312_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12312_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12312_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_12312_full: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@ad-dp2-hdmi-a3: - shard-bmg: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@ad-dp2-hdmi-a3.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@ad-dp2-hdmi-a3.html * igt@xe_exec_basic@twice-null-rebind: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@xe_exec_basic@twice-null-rebind.html * igt@xe_exec_threads@threads-hang-rebind: - shard-dg2-set2: [PASS][5] -> [DMESG-WARN][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-436/igt@xe_exec_threads@threads-hang-rebind.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@xe_exec_threads@threads-hang-rebind.html #### Warnings #### * igt@kms_cursor_edge_walk@128x128-right-edge@pipe-d-hdmi-a-3: - shard-bmg: [DMESG-WARN][7] ([Intel XE#3468]) -> [INCOMPLETE][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@kms_cursor_edge_walk@128x128-right-edge@pipe-d-hdmi-a-3.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_cursor_edge_walk@128x128-right-edge@pipe-d-hdmi-a-3.html Known issues ------------ Here are the changes found in XEIGTPW_12312_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unplug-rescan: - shard-dg2-set2: [PASS][9] -> [DMESG-WARN][10] ([Intel XE#3468]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-433/igt@core_hotunplug@unplug-rescan.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-434/igt@core_hotunplug@unplug-rescan.html * igt@kms_addfb_basic@unused-modifier: - shard-bmg: [PASS][11] -> [DMESG-WARN][12] ([Intel XE#1727]) +8 other tests dmesg-warn [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-7/igt@kms_addfb_basic@unused-modifier.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@kms_addfb_basic@unused-modifier.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [PASS][13] -> [FAIL][14] ([Intel XE#911]) +3 other tests fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#316]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-435/igt@kms_big_fb@linear-16bpp-rotate-270.html - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2327]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1407]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +8 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-433/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2328]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][22] -> [INCOMPLETE][23] ([Intel XE#1727]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#367]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2191]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-4-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#367]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2887]) +6 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#787]) +147 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2669]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2907]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#3442]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#455] / [Intel XE#787]) +43 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][33] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2724]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_cdclk@mode-transition-all-outputs.html - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#314]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#306]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@kms_chamelium_color@ctm-limited-range.html - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2325]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-8/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#373]) +6 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-435/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2252]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_edid@vga-edid-read: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#373]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-4/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#307]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2390]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-dg2-set2: NOTRUN -> [FAIL][44] ([Intel XE#1178]) +3 other tests fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][45] ([Intel XE#3304]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1424]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-2/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#308]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-64x64: - shard-bmg: [PASS][48] -> [DMESG-FAIL][49] ([Intel XE#3468]) +16 other tests dmesg-fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-2/igt@kms_cursor_crc@cursor-random-64x64.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_cursor_crc@cursor-random-64x64.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2320]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2321]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#455]) +10 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#309]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-bmg: [PASS][54] -> [SKIP][55] ([Intel XE#2291]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#323]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#307]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-2/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_draw_crc@draw-method-blt@xrgb2101010-xtiled: - shard-bmg: [PASS][58] -> [DMESG-FAIL][59] ([Intel XE#2705]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-2/igt@kms_draw_crc@draw-method-blt@xrgb2101010-xtiled.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-8/igt@kms_draw_crc@draw-method-blt@xrgb2101010-xtiled.html * igt@kms_fbcon_fbt@psr-suspend: - shard-lnl: [PASS][60] -> [FAIL][61] ([Intel XE#2958]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-lnl-4/igt@kms_fbcon_fbt@psr-suspend.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#1138]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-5/igt@kms_feature_discovery@display-4x.html - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1138]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-modeset: - shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2316]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-2/igt@kms_flip@2x-flip-vs-modeset.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-bmg: [PASS][66] -> [INCOMPLETE][67] ([Intel XE#2635]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2316]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#2882]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2: - shard-bmg: [PASS][71] -> [FAIL][72] ([Intel XE#3321]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][73] ([Intel XE#301]) +2 other tests fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6: - shard-dg2-set2: [PASS][74] -> [FAIL][75] ([Intel XE#301]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: [PASS][76] -> [DMESG-FAIL][77] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-fail [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@kms_flip@flip-vs-suspend.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][78] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][79] ([Intel XE#3468]) +1 other test dmesg-fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6.html * igt@kms_flip@flip-vs-suspend@c-dp2: - shard-bmg: NOTRUN -> [DMESG-FAIL][80] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@kms_flip@flip-vs-suspend@c-dp2.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1397] / [Intel XE#1745]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1397]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([i915#5274]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#656]) +6 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#651]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2312]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][87] ([Intel XE#2333]) +4 other tests fail [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][88] ([Intel XE#1727] / [Intel XE#3468]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#651]) +23 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-suspend: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2311]) +10 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2313]) +9 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#653]) +20 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [PASS][93] -> [SKIP][94] ([Intel XE#3012]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@kms_joiner@basic-force-big-joiner.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2925]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-433/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][96] ([Intel XE#361]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2763]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2763]) +4 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-dg2-set2: [PASS][100] -> [INCOMPLETE][101] ([Intel XE#1727] / [Intel XE#2566]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-5.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-bmg: NOTRUN -> [DMESG-WARN][102] ([Intel XE#2566]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#2763]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#1129]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][105] -> [FAIL][106] ([Intel XE#1430]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2505]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_pm_dc@deep-pkgc.html - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#908]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-433/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-dg2-set2: NOTRUN -> [ABORT][109] ([Intel XE#3468]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-435/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_pm_rpm@cursor: - shard-bmg: [PASS][110] -> [DMESG-WARN][111] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests dmesg-warn [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-5/igt@kms_pm_rpm@cursor.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@kms_pm_rpm@cursor.html - shard-dg2-set2: [PASS][112] -> [INCOMPLETE][113] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests incomplete [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-466/igt@kms_pm_rpm@cursor.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-433/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@i2c: - shard-dg2-set2: [PASS][114] -> [DMESG-FAIL][115] ([Intel XE#1727] / [Intel XE#3468]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-466/igt@kms_pm_rpm@i2c.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-434/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2-set2: [PASS][116] -> [INCOMPLETE][117] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-435/igt@kms_pm_rpm@modeset-lpsp-stress.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1489]) +9 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#2893]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-5/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#1489]) +4 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#1122]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-435/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr-primary-render: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@psr2-basic: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2850] / [Intel XE#929]) +9 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-434/igt@kms_psr@psr2-basic.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#3414]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1127]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][126] ([Intel XE#1727] / [Intel XE#2870]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-180.html * igt@kms_sequence@queue-busy@pipe-c-dp-2: - shard-bmg: NOTRUN -> [DMESG-WARN][127] ([Intel XE#3468]) +11 other tests dmesg-warn [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-8/igt@kms_sequence@queue-busy@pipe-c-dp-2.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][128] -> [SKIP][129] ([Intel XE#1435]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_vblank@query-busy: - shard-bmg: NOTRUN -> [DMESG-FAIL][130] ([Intel XE#3468]) +6 other tests dmesg-fail [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_vblank@query-busy.html * igt@kms_vblank@query-idle-hang@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][131] -> [INCOMPLETE][132] ([Intel XE#1727]) +6 other tests incomplete [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-434/igt@kms_vblank@query-idle-hang@pipe-a-hdmi-a-6.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-433/igt@kms_vblank@query-idle-hang@pipe-a-hdmi-a-6.html * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][133] ([Intel XE#3468]) +5 other tests dmesg-warn [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-435/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-6.html * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][134] ([Intel XE#1727] / [Intel XE#3468]) +5 other tests dmesg-warn [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-435/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-6.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][135] -> [FAIL][136] ([Intel XE#2159]) +1 other test fail [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#1499]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1123]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#1126]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0x369.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2905]) +10 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@xe_eudebug@basic-close.html * igt@xe_eudebug_online@breakpoint-many-sessions-single-tile: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#2905]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-2/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html * igt@xe_eudebug_online@interrupt-other: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2905]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@xe_eudebug_online@interrupt-other.html * igt@xe_evict@evict-beng-large-external: - shard-bmg: [PASS][143] -> [DMESG-WARN][144] ([Intel XE#1473]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-5/igt@xe_evict@evict-beng-large-external.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@xe_evict@evict-beng-large-external.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][145] ([Intel XE#1473]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: NOTRUN -> [TIMEOUT][146] ([Intel XE#1473] / [Intel XE#402]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-bmg: NOTRUN -> [FAIL][147] ([Intel XE#1000]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-large-multi-vm: - shard-bmg: [PASS][148] -> [DMESG-WARN][149] ([Intel XE#1473] / [Intel XE#3468]) +1 other test dmesg-warn [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@xe_evict@evict-large-multi-vm.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@xe_evict@evict-large-multi-vm.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: [PASS][150] -> [FAIL][151] ([Intel XE#1600]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-466/igt@xe_evict@evict-large-multi-vm-cm.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-435/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-threads-small: - shard-dg2-set2: [PASS][152] -> [DMESG-WARN][153] ([Intel XE#1473] / [Intel XE#1727]) +1 other test dmesg-warn [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-433/igt@xe_evict@evict-threads-small.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@xe_evict@evict-threads-small.html * igt@xe_exec_basic@many-execqueues-many-vm-null: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][154] ([Intel XE#1727]) +1 other test dmesg-warn [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-433/igt@xe_exec_basic@many-execqueues-many-vm-null.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2322]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#288]) +23 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-433/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init: - shard-bmg: [PASS][157] -> [DMESG-WARN][158] ([Intel XE#3343] / [Intel XE#3468]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init: - shard-bmg: [PASS][159] -> [DMESG-WARN][160] ([Intel XE#3343]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html - shard-dg2-set2: [PASS][161] -> [DMESG-WARN][162] ([Intel XE#3343]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: - shard-bmg: [PASS][163] -> [DMESG-WARN][164] ([Intel XE#3467] / [Intel XE#3468]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc: - shard-bmg: [PASS][165] -> [DMESG-WARN][166] ([Intel XE#3467]) +1 other test dmesg-warn [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][167] ([Intel XE#3467]) +3 other tests dmesg-warn [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-434/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt@xe_gt_freq@freq_suspend: - shard-dg2-set2: [PASS][168] -> [DMESG-WARN][169] ([Intel XE#1727] / [Intel XE#3468]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-435/igt@xe_gt_freq@freq_suspend.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@xe_gt_freq@freq_suspend.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-dg2-set2: NOTRUN -> [TIMEOUT][170] ([Intel XE#2961] / [Intel XE#2998]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_noexec_ping_pong: - shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#379]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-4/igt@xe_noexec_ping_pong.html * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-435/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#2284]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#2284] / [Intel XE#366]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-435/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-bmg: NOTRUN -> [DMESG-WARN][175] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@xe_pm@s2idle-d3hot-basic-exec.html * igt@xe_pm@s3-exec-after: - shard-bmg: [PASS][176] -> [DMESG-WARN][177] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-4/igt@xe_pm@s3-exec-after.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@xe_pm@s3-exec-after.html * igt@xe_pm@s4-d3hot-basic-exec: - shard-lnl: [PASS][178] -> [ABORT][179] ([Intel XE#1358] / [Intel XE#1607]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-lnl-7/igt@xe_pm@s4-d3hot-basic-exec.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html * igt@xe_pm@s4-vm-bind-prefetch: - shard-bmg: NOTRUN -> [DMESG-WARN][180] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-2/igt@xe_pm@s4-vm-bind-prefetch.html * igt@xe_pm@s4-vm-bind-userptr: - shard-dg2-set2: [PASS][181] -> [DMESG-WARN][182] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-434/igt@xe_pm@s4-vm-bind-userptr.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-434/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-bmg: NOTRUN -> [SKIP][183] ([Intel XE#944]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt@xe_query@multigpu-query-mem-usage: - shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#944]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-434/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_vm@bind-no-array-conflict: - shard-bmg: [PASS][185] -> [DMESG-WARN][186] ([Intel XE#3468]) +69 other tests dmesg-warn [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-7/igt@xe_vm@bind-no-array-conflict.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@xe_vm@bind-no-array-conflict.html * igt@xe_vm@large-userptr-misaligned-binds-2097152: - shard-dg2-set2: [PASS][187] -> [DMESG-WARN][188] ([Intel XE#1727]) +16 other tests dmesg-warn [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-466/igt@xe_vm@large-userptr-misaligned-binds-2097152.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-433/igt@xe_vm@large-userptr-misaligned-binds-2097152.html #### Possible fixes #### * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-lnl: [FAIL][189] ([Intel XE#1426]) -> [PASS][190] +1 other test pass [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-bmg: [DMESG-FAIL][191] ([Intel XE#3468]) -> [PASS][192] +25 other tests pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@kms_big_fb@linear-8bpp-rotate-180.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg2-set2: [INCOMPLETE][193] ([Intel XE#1727] / [Intel XE#402]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-463/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][195] -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][197] ([Intel XE#1727]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4: - shard-dg2-set2: [INCOMPLETE][199] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-a-dp-2: - shard-bmg: [DMESG-FAIL][201] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][202] +1 other test pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-a-dp-2.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-a-dp-2.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][203] ([Intel XE#2291]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][205] ([Intel XE#3070]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-2/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg2-set2: [DMESG-WARN][207] ([Intel XE#1727] / [Intel XE#2955]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-466/igt@kms_flip@2x-flip-vs-dpms.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-435/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms@ab-dp2-hdmi-a3: - shard-bmg: [DMESG-WARN][209] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][210] +9 other tests pass [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms@ab-dp2-hdmi-a3.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3: - shard-bmg: [DMESG-WARN][211] ([Intel XE#3468]) -> [PASS][212] +113 other tests pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-7/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [SKIP][213] ([Intel XE#2316]) -> [PASS][214] +1 other test pass [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@blocking-wf_vblank@b-hdmi-a3: - shard-bmg: [FAIL][215] ([Intel XE#2882]) -> [PASS][216] +7 other tests pass [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@kms_flip@blocking-wf_vblank@b-hdmi-a3.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@kms_flip@blocking-wf_vblank@b-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6: - shard-dg2-set2: [FAIL][217] -> [PASS][218] [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: [FAIL][219] ([Intel XE#886]) -> [PASS][220] +4 other tests pass [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-lnl-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-6/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a3: - shard-bmg: [DMESG-WARN][221] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][222] +1 other test pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-5/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a3.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-bmg: [INCOMPLETE][223] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][224] +2 other tests pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-bmg: [INCOMPLETE][225] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) -> [PASS][226] +1 other test pass [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_plane@pixel-format: - shard-bmg: [INCOMPLETE][227] ([Intel XE#1035] / [Intel XE#3468]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-7/igt@kms_plane@pixel-format.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-5/igt@kms_plane@pixel-format.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [FAIL][229] ([Intel XE#616]) -> [PASS][230] +1 other test pass [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-466/igt@kms_plane_cursor@viewport.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@kms_plane_cursor@viewport.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][231] ([Intel XE#361]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-dg2-set2: [DMESG-WARN][233] ([Intel XE#1727]) -> [PASS][234] +6 other tests pass [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d: - shard-bmg: [DMESG-WARN][235] -> [PASS][236] +1 other test pass [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2-set2: [INCOMPLETE][237] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][238] +1 other test pass [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-433/igt@kms_pm_rpm@cursor-dpms.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-434/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@drm-resources-equal: - shard-dg2-set2: [DMESG-FAIL][239] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-434/igt@kms_pm_rpm@drm-resources-equal.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-435/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_pm_rpm@legacy-planes@plane-50: - shard-dg2-set2: [DMESG-WARN][241] ([Intel XE#3468]) -> [PASS][242] +1 other test pass [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-435/igt@kms_pm_rpm@legacy-planes@plane-50.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-433/igt@kms_pm_rpm@legacy-planes@plane-50.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-bmg: [INCOMPLETE][243] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@kms_pm_rpm@modeset-stress-extra-wait.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-5/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [ABORT][245] ([Intel XE#3468]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-433/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_psr@fbc-psr2-primary-page-flip@edp-1: - shard-lnl: [FAIL][247] -> [PASS][248] +1 other test pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-lnl-7/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-4/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-lnl: [FAIL][249] ([Intel XE#899]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_universal_plane@universal-plane-functional@pipe-a-dp-2: - shard-bmg: [DMESG-FAIL][251] -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-4/igt@kms_universal_plane@universal-plane-functional@pipe-a-dp-2.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-2/igt@kms_universal_plane@universal-plane-functional@pipe-a-dp-2.html * igt@xe_evict@evict-beng-large-cm: - shard-bmg: [DMESG-WARN][253] ([Intel XE#1473] / [Intel XE#3468]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-7/igt@xe_evict@evict-beng-large-cm.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@xe_evict@evict-beng-large-cm.html * igt@xe_exec_basic@twice-rebind: - shard-bmg: [DMESG-WARN][255] ([Intel XE#1727]) -> [PASS][256] +7 other tests pass [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-7/igt@xe_exec_basic@twice-rebind.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@xe_exec_basic@twice-rebind.html * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: - shard-bmg: [DMESG-WARN][257] ([Intel XE#3467]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init: - shard-bmg: [DMESG-WARN][259] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-bmg: [DMESG-WARN][261] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][262] +1 other test pass [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-5/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_live_ktest@xe_dma_buf: - shard-dg2-set2: [SKIP][263] ([Intel XE#1192]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-435/igt@xe_live_ktest@xe_dma_buf.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-434/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_module_load@unload: - shard-dg2-set2: [DMESG-WARN][265] ([Intel XE#3467]) -> [PASS][266] +1 other test pass [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-436/igt@xe_module_load@unload.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@xe_module_load@unload.html * igt@xe_pm@s2idle-exec-after: - shard-dg2-set2: [DMESG-WARN][267] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][268] +8 other tests pass [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-466/igt@xe_pm@s2idle-exec-after.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@xe_pm@s2idle-exec-after.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-bmg: [DMESG-WARN][269] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-unbind-all.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm@s3-mocs: - shard-bmg: [DMESG-FAIL][271] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@xe_pm@s3-mocs.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-5/igt@xe_pm@s3-mocs.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][273] ([Intel XE#1794]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-4/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][275] ([Intel XE#958]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt@kms_content_protection@legacy: - shard-bmg: [FAIL][277] ([Intel XE#1178]) -> [SKIP][278] ([Intel XE#2341]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-4/igt@kms_content_protection@legacy.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-bmg: [INCOMPLETE][279] ([Intel XE#2715] / [Intel XE#3468]) -> [FAIL][280] ([Intel XE#1178]) +3 other tests fail [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-7/igt@kms_content_protection@srm.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_content_protection@srm.html * igt@kms_cursor_edge_walk@128x128-right-edge: - shard-bmg: [DMESG-WARN][281] ([Intel XE#3468]) -> [INCOMPLETE][282] ([Intel XE#3468]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@kms_cursor_edge_walk@128x128-right-edge.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_cursor_edge_walk@128x128-right-edge.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][283] ([Intel XE#877]) -> [SKIP][284] ([Intel XE#2291]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [DMESG-WARN][285] ([Intel XE#877]) -> [DMESG-WARN][286] ([Intel XE#3468] / [Intel XE#877]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: [FAIL][287] ([Intel XE#2141]) -> [DMESG-FAIL][288] ([Intel XE#3468]) +2 other tests dmesg-fail [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: [FAIL][289] ([Intel XE#1695]) -> [DMESG-FAIL][290] ([Intel XE#3468]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-4/igt@kms_fbcon_fbt@fbc.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][291] ([Intel XE#2882]) -> [SKIP][292] ([Intel XE#2316]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [DMESG-FAIL][293] ([Intel XE#3468]) -> [SKIP][294] ([Intel XE#2316]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-bmg: [DMESG-WARN][295] ([Intel XE#3468]) -> [SKIP][296] ([Intel XE#2316]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-2/igt@kms_flip@2x-wf_vblank-ts-check.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][297] ([Intel XE#2312]) -> [SKIP][298] ([Intel XE#2311]) +10 other tests skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][299] ([Intel XE#2311]) -> [SKIP][300] ([Intel XE#2312]) +12 other tests skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][301] ([Intel XE#2333]) -> [DMESG-FAIL][302] ([Intel XE#3468]) +8 other tests dmesg-fail [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [DMESG-FAIL][303] ([Intel XE#3468]) -> [FAIL][304] ([Intel XE#2333]) +7 other tests fail [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][305] ([Intel XE#2312]) -> [DMESG-FAIL][306] ([Intel XE#3468]) +1 other test dmesg-fail [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: - shard-bmg: [INCOMPLETE][307] ([Intel XE#1727] / [Intel XE#2050] / [Intel XE#3468]) -> [FAIL][308] ([Intel XE#2333]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][309] ([Intel XE#2312]) -> [FAIL][310] ([Intel XE#2333]) +3 other tests fail [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][311] ([Intel XE#2333]) -> [SKIP][312] ([Intel XE#2312]) +7 other tests skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][313] ([Intel XE#2313]) -> [SKIP][314] ([Intel XE#2312]) +16 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][315] ([Intel XE#2312]) -> [SKIP][316] ([Intel XE#2313]) +8 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_pm_dc@dc6-dpms: - shard-bmg: [FAIL][317] ([Intel XE#1430]) -> [DMESG-FAIL][318] ([Intel XE#3468]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-7/igt@kms_pm_dc@dc6-dpms.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2-set2: [ABORT][319] ([Intel XE#3468]) -> [DMESG-WARN][320] ([Intel XE#1727] / [Intel XE#3468]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][321] ([Intel XE#362]) -> [FAIL][322] ([Intel XE#1729]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][323] ([Intel XE#1500]) -> [SKIP][324] ([Intel XE#362]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@wait-busy-hang: - shard-bmg: [DMESG-FAIL][325] ([Intel XE#3468]) -> [DMESG-WARN][326] ([Intel XE#3468]) +2 other tests dmesg-warn [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@kms_vblank@wait-busy-hang.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@kms_vblank@wait-busy-hang.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][327] ([Intel XE#1473]) -> [TIMEOUT][328] ([Intel XE#1473]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-beng-threads-large: - shard-bmg: [TIMEOUT][329] ([Intel XE#1473]) -> [FAIL][330] ([Intel XE#1000]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@xe_evict@evict-beng-threads-large.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@xe_evict@evict-beng-threads-large.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-bmg: [INCOMPLETE][331] ([Intel XE#1473] / [Intel XE#3468]) -> [TIMEOUT][332] ([Intel XE#1473]) +1 other test timeout [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-large.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][333] ([Intel XE#1473]) -> [TIMEOUT][334] ([Intel XE#1473] / [Intel XE#2472]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-mixed-threads-large: - shard-bmg: [TIMEOUT][335] ([Intel XE#1473] / [Intel XE#2472]) -> [INCOMPLETE][336] ([Intel XE#1473]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-2/igt@xe_evict@evict-mixed-threads-large.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@xe_evict@evict-mixed-threads-large.html * igt@xe_evict@evict-threads-large: - shard-bmg: [FAIL][337] ([Intel XE#1000]) -> [TIMEOUT][338] ([Intel XE#1473] / [Intel XE#2472]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-5/igt@xe_evict@evict-threads-large.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-5/igt@xe_evict@evict-threads-large.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-bmg: [DMESG-WARN][339] -> [DMESG-WARN][340] ([Intel XE#3467] / [Intel XE#3468]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: - shard-bmg: [DMESG-WARN][341] ([Intel XE#3467]) -> [DMESG-WARN][342] ([Intel XE#3468]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: [SKIP][343] ([Intel XE#1192]) -> [TIMEOUT][344] ([Intel XE#2961] / [Intel XE#2998]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-dg2-433/igt@xe_live_ktest@xe_bo.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-dg2-436/igt@xe_live_ktest@xe_bo.html * igt@xe_pm@d3hot-mocs: - shard-bmg: [DMESG-WARN][345] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-WARN][346] ([Intel XE#3468]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-7/igt@xe_pm@d3hot-mocs.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@xe_pm@d3hot-mocs.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-bmg: [DMESG-WARN][347] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [DMESG-WARN][348] ([Intel XE#3468] / [Intel XE#569]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-8/igt@xe_pm@s3-vm-bind-prefetch.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-6/igt@xe_pm@s3-vm-bind-prefetch.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-bmg: [DMESG-WARN][349] ([Intel XE#3468] / [Intel XE#569]) -> [DMESG-WARN][350] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@xe_pm@s3-vm-bind-unbind-all.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-4/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: [ABORT][351] ([Intel XE#3765]) -> [ABORT][352] ([Intel XE#3421]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8155/shard-bmg-6/igt@xe_wedged@wedged-at-any-timeout.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/shard-bmg-8/igt@xe_wedged@wedged-at-any-timeout.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#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#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [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#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#2870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2870 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955 [Intel XE#2958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2958 [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961 [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [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#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3765]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3765 [Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [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#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8155 -> IGTPW_12312 IGTPW_12312: 979524f04ca87c93239b5438fce280bcdc9c3c88 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8155: f33cf6456706ad5d454a87a773104b4fca7d81e3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2369-8f7b64e137723da601f3c07d0cda22566cf994d5: 8f7b64e137723da601f3c07d0cda22566cf994d5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12312/index.html [-- Attachment #2: Type: text/html, Size: 107443 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-12-14 0:25 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-12-13 9:23 [PATCH i-g-t] xe_eudebug_online: Add default threads_per_eu value for platforms without hwconfig Dominik Grzegorzek 2024-12-13 11:49 ` Jan Maslak 2024-12-13 14:32 ` ✓ Xe.CI.BAT: success for " Patchwork 2024-12-13 14:33 ` ✗ i915.CI.BAT: failure " Patchwork 2024-12-14 0:25 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox