* [PATCH] tests/intel/xe_fault_injection: Use valid pat index
@ 2024-11-21 20:29 Jonathan Cavitt
2024-11-21 23:42 ` ✓ Xe.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Jonathan Cavitt @ 2024-11-21 20:29 UTC (permalink / raw)
To: igt-dev
Cc: jonathan.cavitt, saurabhg.gupta, alex.zuo, francois.dugast,
nirmoy.das
As a part of vm_bind_ioctl_check_args, all vm binds that use the
DRM_XE_VM_BIND_OP_MAP_USERPTR operation must have a coherency mode of
XE_COH_AT_LEAST_1WAY. This is determined by the pat_index set in the
bind operation before the bind is performed.
The value is usually set by intel_get_pat_idx_wb, as this is the
default used in the various xe_vm_bind helper functions (or, more
specifically, the pat index value DEFAULT_PAT_INDEX is passed, which
translates to using intel_get_pat_idx_wb to generate the true value sent
to the ioctl). However, when the ioctl is called manually (through
igt_ioctl, for example), it is up to the calling test to ensure the pat
index value is correctly set, and in xe_vm, for example,
intel_get_pat_idx_wb is used as well to set the pat index.
This step was not done in the simple_vm_bind function in
xe_fault_injection, so use intel_get_pat_idx_wb to set the pat index.
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3499
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
CC: Francois Dugast <francois.dugast@intel.com>
CC: Nirmoy Das <nirmoy.das@intel.com>
---
tests/intel/xe_fault_injection.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
index 1b29041745..f8d7278caa 100644
--- a/tests/intel/xe_fault_injection.c
+++ b/tests/intel/xe_fault_injection.c
@@ -17,6 +17,7 @@
#include "igt_device.h"
#include "igt_kmod.h"
#include "igt_sysfs.h"
+#include "intel_pat.h"
#include "lib/igt_syncobj.h"
#include "xe/xe_ioctl.h"
#include "xe/xe_query.h"
@@ -213,6 +214,7 @@ simple_vm_bind(int fd, uint32_t vm)
.bind.addr = BO_ADDR,
.bind.op = DRM_XE_VM_BIND_OP_MAP_USERPTR,
.bind.flags = 0,
+ .bind.pat_index = intel_get_pat_idx_wb(fd),
.num_syncs = 1,
.syncs = (uintptr_t)&syncobj,
.exec_queue_id = 0,
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* ✓ Xe.CI.BAT: success for tests/intel/xe_fault_injection: Use valid pat index 2024-11-21 20:29 [PATCH] tests/intel/xe_fault_injection: Use valid pat index Jonathan Cavitt @ 2024-11-21 23:42 ` Patchwork 2024-11-21 23:54 ` ✗ i915.CI.BAT: failure " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-11-21 23:42 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1967 bytes --] == Series Details == Series: tests/intel/xe_fault_injection: Use valid pat index URL : https://patchwork.freedesktop.org/series/141676/ State : success == Summary == CI Bug Log - changes from XEIGT_8121_BAT -> XEIGTPW_12167_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12167_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@bad-pitch-0: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3429]) +31 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html #### Possible fixes #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [FAIL][3] ([Intel XE#1861]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [Intel XE#3429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3429 Build changes ------------- * IGT: IGT_8121 -> IGTPW_12167 * Linux: xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380 -> xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199 IGTPW_12167: 12167 IGT_8121: 8121 xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380: e46649e7764a9f6868ccbcba7b8b23b413303380 xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199: bb17c42521f57b592e9ad49daca1f9f9045d3199 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/index.html [-- Attachment #2: Type: text/html, Size: 2565 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ i915.CI.BAT: failure for tests/intel/xe_fault_injection: Use valid pat index 2024-11-21 20:29 [PATCH] tests/intel/xe_fault_injection: Use valid pat index Jonathan Cavitt 2024-11-21 23:42 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2024-11-21 23:54 ` Patchwork 2024-11-22 14:46 ` [PATCH] " Francois Dugast 2024-11-22 15:04 ` ✗ Xe.CI.Full: failure for " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-11-21 23:54 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev == Series Details == Series: tests/intel/xe_fault_injection: Use valid pat index URL : https://patchwork.freedesktop.org/series/141676/ State : failure == Summary == CI Bug Log - changes from IGT_8121 -> IGTPW_12167 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12167 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12167, 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_12167/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_12167: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live: - bat-arls-5: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-arls-5/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12167/bat-arls-5/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_tlb: - bat-arlh-2: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-arlh-2/igt@i915_selftest@live@gt_tlb.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12167/bat-arlh-2/igt@i915_selftest@live@gt_tlb.html Known issues ------------ Here are the changes found in IGTPW_12167 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_tiled_blits@basic: - fi-pnv-d510: [PASS][5] -> [SKIP][6] +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/fi-pnv-d510/igt@gem_tiled_blits@basic.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12167/fi-pnv-d510/igt@gem_tiled_blits@basic.html * igt@i915_pm_rpm@module-reload: - bat-rpls-4: [PASS][7] -> [FAIL][8] ([i915#12903]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12167/bat-rpls-4/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [PASS][9] -> [ABORT][10] ([i915#12061]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-arls-5/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12167/bat-arls-5/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_module_load@load: - {bat-mtlp-9}: [INCOMPLETE][11] -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-mtlp-9/igt@i915_module_load@load.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12167/bat-mtlp-9/igt@i915_module_load@load.html * igt@i915_pm_rpm@module-reload: - bat-dg2-11: [FAIL][13] ([i915#12903]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-dg2-11/igt@i915_pm_rpm@module-reload.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12167/bat-dg2-11/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live: - bat-arlh-3: [ABORT][15] -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-arlh-3/igt@i915_selftest@live.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12167/bat-arlh-3/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [ABORT][17] ([i915#12061]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-arlh-3/igt@i915_selftest@live@workarounds.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12167/bat-arlh-3/igt@i915_selftest@live@workarounds.html * igt@kms_chamelium_edid@hdmi-edid-read: - bat-dg2-13: [DMESG-WARN][19] ([i915#12253]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12167/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-dg2-11: [SKIP][21] ([i915#9197]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12167/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1: - bat-apl-1: [DMESG-WARN][23] -> [PASS][24] +1 other test pass [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12167/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8121 -> IGTPW_12167 * Linux: CI_DRM_15725 -> CI_DRM_15727 CI-20190529: 20190529 CI_DRM_15725: e46649e7764a9f6868ccbcba7b8b23b413303380 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15727: bb17c42521f57b592e9ad49daca1f9f9045d3199 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12167: 12167 IGT_8121: 8121 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12167/index.html ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] tests/intel/xe_fault_injection: Use valid pat index 2024-11-21 20:29 [PATCH] tests/intel/xe_fault_injection: Use valid pat index Jonathan Cavitt 2024-11-21 23:42 ` ✓ Xe.CI.BAT: success for " Patchwork 2024-11-21 23:54 ` ✗ i915.CI.BAT: failure " Patchwork @ 2024-11-22 14:46 ` Francois Dugast 2024-11-22 15:04 ` ✗ Xe.CI.Full: failure for " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Francois Dugast @ 2024-11-22 14:46 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev, saurabhg.gupta, alex.zuo, nirmoy.das On Thu, Nov 21, 2024 at 08:29:42PM +0000, Jonathan Cavitt wrote: > As a part of vm_bind_ioctl_check_args, all vm binds that use the > DRM_XE_VM_BIND_OP_MAP_USERPTR operation must have a coherency mode of > XE_COH_AT_LEAST_1WAY. This is determined by the pat_index set in the > bind operation before the bind is performed. > > The value is usually set by intel_get_pat_idx_wb, as this is the > default used in the various xe_vm_bind helper functions (or, more > specifically, the pat index value DEFAULT_PAT_INDEX is passed, which > translates to using intel_get_pat_idx_wb to generate the true value sent > to the ioctl). However, when the ioctl is called manually (through > igt_ioctl, for example), it is up to the calling test to ensure the pat > index value is correctly set, and in xe_vm, for example, > intel_get_pat_idx_wb is used as well to set the pat index. > > This step was not done in the simple_vm_bind function in > xe_fault_injection, so use intel_get_pat_idx_wb to set the pat index. > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3499 > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> > CC: Francois Dugast <francois.dugast@intel.com> > CC: Nirmoy Das <nirmoy.das@intel.com> Reviewed-by: Francois Dugast <francois.dugast@intel.com> > --- > tests/intel/xe_fault_injection.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c > index 1b29041745..f8d7278caa 100644 > --- a/tests/intel/xe_fault_injection.c > +++ b/tests/intel/xe_fault_injection.c > @@ -17,6 +17,7 @@ > #include "igt_device.h" > #include "igt_kmod.h" > #include "igt_sysfs.h" > +#include "intel_pat.h" > #include "lib/igt_syncobj.h" > #include "xe/xe_ioctl.h" > #include "xe/xe_query.h" > @@ -213,6 +214,7 @@ simple_vm_bind(int fd, uint32_t vm) > .bind.addr = BO_ADDR, > .bind.op = DRM_XE_VM_BIND_OP_MAP_USERPTR, > .bind.flags = 0, > + .bind.pat_index = intel_get_pat_idx_wb(fd), > .num_syncs = 1, > .syncs = (uintptr_t)&syncobj, > .exec_queue_id = 0, > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_fault_injection: Use valid pat index 2024-11-21 20:29 [PATCH] tests/intel/xe_fault_injection: Use valid pat index Jonathan Cavitt ` (2 preceding siblings ...) 2024-11-22 14:46 ` [PATCH] " Francois Dugast @ 2024-11-22 15:04 ` Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-11-22 15:04 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 135757 bytes --] == Series Details == Series: tests/intel/xe_fault_injection: Use valid pat index URL : https://patchwork.freedesktop.org/series/141676/ State : failure == Summary == CI Bug Log - changes from XEIGT_8121_full -> XEIGTPW_12167_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12167_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12167_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_12167_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_plane@plane-panning-bottom-right-suspend.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b: - shard-bmg: NOTRUN -> [DMESG-WARN][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html * igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race: - shard-bmg: [PASS][6] -> [DMESG-WARN][7] +3 other tests dmesg-warn [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html #### Warnings #### * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: [TIMEOUT][8] ([Intel XE#2961] / [Intel XE#3191]) -> [INCOMPLETE][9] +1 other test incomplete [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_live_ktest@xe_bo.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@xe_live_ktest@xe_bo.html Known issues ------------ Here are the changes found in XEIGTPW_12167_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getclient: - shard-dg2-set2: [PASS][10] -> [SKIP][11] ([Intel XE#2423]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@core_getclient.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@core_getclient.html * igt@core_getversion@all-cards: - shard-dg2-set2: [PASS][12] -> [FAIL][13] ([Intel XE#3440]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@core_getversion@all-cards.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@core_getversion@all-cards.html * igt@core_hotunplug@hotreplug: - shard-bmg: [PASS][14] -> [DMESG-WARN][15] ([Intel XE#3468] / [Intel XE#3521]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@core_hotunplug@hotreplug.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@core_hotunplug@hotreplug.html * igt@core_hotunplug@hotunbind-rebind: - shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#1885]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@core_hotunplug@hotunbind-rebind.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@core_hotunplug@hotunbind-rebind.html * igt@core_setmaster@master-drop-set-root: - shard-dg2-set2: [PASS][18] -> [FAIL][19] ([Intel XE#3249]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@core_setmaster@master-drop-set-root.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][20] -> [SKIP][21] ([Intel XE#3453]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@core_setmaster@master-drop-set-shared-fd.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html * igt@core_setmaster@master-drop-set-user: - shard-dg2-set2: [PASS][22] -> [FAIL][23] ([Intel XE#3339]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@core_setmaster@master-drop-set-user.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@core_setmaster@master-drop-set-user.html * igt@fbdev@info: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#2134]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@fbdev@info.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2550]) +23 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-edp-1: - shard-lnl: [PASS][26] -> [FAIL][27] ([Intel XE#1426]) +1 other test fail [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-edp-1.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-edp-1.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-bmg: [PASS][28] -> [DMESG-FAIL][29] ([Intel XE#3468]) +23 other tests dmesg-fail [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg2-set2: [PASS][30] -> [SKIP][31] ([Intel XE#2136]) +36 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_big_fb@4-tiled-addfb-size-overflow.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [FAIL][32] ([Intel XE#3162]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2327]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1407]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#1124]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#1124]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1124]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#367]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#2314] / [Intel XE#2894]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#787]) +174 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2887]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#2887]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][44] ([Intel XE#1727]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#2907]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#455] / [Intel XE#787]) +24 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#1152]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#373]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-2/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_hpd@dp-hpd-after-hibernate: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2252]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#373]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2390]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#307]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-4/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: NOTRUN -> [INCOMPLETE][53] ([Intel XE#1727] / [Intel XE#2715] / [Intel XE#3468]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][54] ([Intel XE#1188]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][55] ([Intel XE#1188]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#2321]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2321]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-a-dp-2: - shard-bmg: NOTRUN -> [DMESG-FAIL][58] ([Intel XE#3468]) +4 other tests dmesg-fail [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2320]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@kms_cursor_crc@cursor-random-64x21.html - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1424]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-5/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-suspend: - shard-bmg: [PASS][61] -> [INCOMPLETE][62] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests incomplete [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_cursor_crc@cursor-suspend.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#2291]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#2423] / [i915#2575]) +15 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [PASS][66] -> [DMESG-WARN][67] ([Intel XE#877]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#309]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-bmg: [PASS][69] -> [DMESG-FAIL][70] ([Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1340]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#2244]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-8/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#455]) +7 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][74] ([Intel XE#3486]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][75] ([Intel XE#3321] / [Intel XE#3486]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][76] ([Intel XE#301]) +3 other tests fail [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-bmg: [PASS][77] -> [SKIP][78] ([Intel XE#2316]) +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-flip-vs-suspend: - shard-bmg: [PASS][79] -> [INCOMPLETE][80] ([Intel XE#1727] / [Intel XE#2597] / [Intel XE#3468] / [Intel XE#3561]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3: - shard-bmg: [PASS][81] -> [INCOMPLETE][82] ([Intel XE#1727] / [Intel XE#2635] / [Intel XE#3468]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3.html * igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-WARN][83] ([Intel XE#3468]) +20 other tests dmesg-warn [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a3.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-edp1: - shard-lnl: [PASS][84] -> [FAIL][85] ([Intel XE#886]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-edp1.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-edp1.html * igt@kms_flip@flip-vs-panning-vs-hang: - shard-bmg: NOTRUN -> [DMESG-WARN][86] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-warn [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_flip@flip-vs-panning-vs-hang.html * igt@kms_flip@flip-vs-panning-vs-hang@a-hdmi-a6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][87] ([Intel XE#1727]) +1 other test dmesg-warn [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_flip@flip-vs-panning-vs-hang@a-hdmi-a6.html * igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3: - shard-bmg: [PASS][88] -> [DMESG-WARN][89] ([Intel XE#3468]) +105 other tests dmesg-warn [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2312]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#651]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#2136] / [Intel XE#2351]) +14 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#656]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#651]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2311]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#658]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#653]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-hdmi-a-3: - shard-bmg: NOTRUN -> [FAIL][100] ([Intel XE#2333]) +4 other tests fail [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-hdmi-a-3.html * igt@kms_hdr@bpc-switch-dpms: - shard-bmg: [PASS][101] -> [DMESG-WARN][102] ([Intel XE#2705]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_hdr@bpc-switch-dpms.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2934]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2927]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2486]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][106] ([Intel XE#1727] / [Intel XE#3468]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][107] ([Intel XE#361]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2763]) +5 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20: - shard-bmg: [PASS][110] -> [DMESG-WARN][111] ([Intel XE#2566] / [Intel XE#3468]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2392]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2-set2: [PASS][113] -> [SKIP][114] ([Intel XE#2446]) +4 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_pm_rpm@cursor-dpms.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@legacy-planes-dpms@plane-59: - shard-bmg: [PASS][115] -> [DMESG-WARN][116] ([Intel XE#1727] / [Intel XE#3468]) +6 other tests dmesg-warn [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2-set2: [PASS][117] -> [DMESG-WARN][118] ([Intel XE#3468]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_properties@invalid-properties-atomic: - shard-dg2-set2: [PASS][119] -> [DMESG-WARN][120] ([Intel XE#1727]) +3 other tests dmesg-warn [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_properties@invalid-properties-atomic.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_properties@invalid-properties-atomic.html - shard-bmg: [PASS][121] -> [DMESG-WARN][122] ([Intel XE#1727]) +1 other test dmesg-warn [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_properties@invalid-properties-atomic.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_properties@invalid-properties-atomic.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#2893]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#1489]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1489]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2136]) +13 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@psr-sprite-render: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2850] / [Intel XE#929]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_psr@psr-sprite-render.html * igt@kms_psr@psr2-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_psr@psr2-cursor-blt.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#3414]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [PASS][130] -> [SKIP][131] ([Intel XE#2423] / [i915#2575]) +105 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-180.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-180.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#3414]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#2413] / [Intel XE#374]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-4/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#374]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-4/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-lnl: [PASS][135] -> [FAIL][136] ([Intel XE#899]) +1 other test fail [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][137] -> [FAIL][138] ([Intel XE#2159]) +1 other test fail [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@max-min: - shard-lnl: [PASS][139] -> [FAIL][140] ([Intel XE#1522]) +1 other test fail [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-6/igt@kms_vrr@max-min.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-7/igt@kms_vrr@max-min.html * igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1280] / [Intel XE#455]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute.html * igt@xe_eudebug@attach-debug-metadata: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2905]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@xe_eudebug@attach-debug-metadata.html * igt@xe_eudebug@multigpu-basic-client-many: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#2905]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-5/igt@xe_eudebug@multigpu-basic-client-many.html * igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#2905]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html * igt@xe_evict@evict-small-cm: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#688]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-7/igt@xe_evict@evict-small-cm.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-dg2-set2: [PASS][146] -> [SKIP][147] ([Intel XE#1130]) +204 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt@xe_exec_balancer@once-parallel-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#1130]) +20 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@xe_exec_balancer@once-parallel-userptr.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2322]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#288]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html * igt@xe_fault_injection@inject-fault-probe-function-xe_device_create: - shard-bmg: [PASS][151] -> [DMESG-WARN][152] ([Intel XE#3521]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: - shard-bmg: [PASS][153] -> [DMESG-WARN][154] ([Intel XE#3343]) +1 other test dmesg-warn [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early: - shard-bmg: [PASS][155] -> [DMESG-WARN][156] ([Intel XE#3467] / [Intel XE#3468]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_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_8121/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][159] ([Intel XE#3467]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch: - shard-bmg: [PASS][160] -> [DMESG-WARN][161] ([Intel XE#3467]) +3 other tests dmesg-warn [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-dg2-set2: [PASS][162] -> [SKIP][163] ([Intel XE#2229]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_mocs: - shard-bmg: [PASS][164] -> [SKIP][165] ([Intel XE#1192]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_live_ktest@xe_mocs.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@xe_live_ktest@xe_mocs.html * igt@xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#2457]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@xe_module_load@force-load.html * igt@xe_module_load@many-reload: - shard-dg2-set2: [PASS][167] -> [FAIL][168] ([Intel XE#3546]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_module_load@many-reload.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@xe_module_load@many-reload.html * igt@xe_oa@syncs-ufence-wait-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#3573]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@xe_oa@syncs-ufence-wait-cfg.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#2248]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pm@s2idle-basic-exec: - shard-bmg: [PASS][171] -> [DMESG-FAIL][172] ([Intel XE#1727] / [Intel XE#3468]) +6 other tests dmesg-fail [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_pm@s2idle-basic-exec.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-bmg: [PASS][173] -> [DMESG-WARN][174] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-unbind-all.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html - shard-dg2-set2: [PASS][175] -> [DMESG-WARN][176] ([Intel XE#1727] / [Intel XE#3468]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_pm@s2idle-vm-bind-unbind-all.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm@s3-basic: - shard-bmg: [PASS][177] -> [DMESG-WARN][178] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_pm@s3-basic.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@xe_pm@s3-basic.html * igt@xe_pm@s4-d3hot-basic-exec: - shard-lnl: [PASS][179] -> [ABORT][180] ([Intel XE#1358] / [Intel XE#1607]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-4/igt@xe_pm@s4-d3hot-basic-exec.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#3342]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-4/igt@xe_sriov_flr@flr-vf1-clear.html - shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#3342]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt@core_getstats: - shard-dg2-set2: [SKIP][183] ([Intel XE#2423]) -> [PASS][184] +3 other tests pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@core_getstats.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@core_getstats.html * igt@core_hotunplug@hotrebind-lateclose: - shard-dg2-set2: [DMESG-WARN][185] ([Intel XE#3468]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@core_hotunplug@hotrebind-lateclose.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@core_hotunplug@hotrebind-lateclose.html - shard-lnl: [DMESG-WARN][187] -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-3/igt@core_hotunplug@hotrebind-lateclose.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-7/igt@core_hotunplug@hotrebind-lateclose.html * igt@core_hotunplug@unbind-rebind: - shard-dg2-set2: [SKIP][189] ([Intel XE#1885]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@core_hotunplug@unbind-rebind.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@core_hotunplug@unbind-rebind.html - shard-bmg: [INCOMPLETE][191] ([Intel XE#3468]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@core_hotunplug@unbind-rebind.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@core_hotunplug@unbind-rebind.html * igt@fbdev@write: - shard-dg2-set2: [SKIP][193] ([Intel XE#2134]) -> [PASS][194] +1 other test pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@fbdev@write.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@fbdev@write.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][195] ([Intel XE#827]) -> [PASS][196] +1 other test pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_cursor_edge_walk@128x128-right-edge: - shard-dg2-set2: [SKIP][197] ([Intel XE#2423] / [i915#2575]) -> [PASS][198] +118 other tests pass [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_cursor_edge_walk@128x128-right-edge.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_cursor_edge_walk@128x128-right-edge.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-bmg: [DMESG-WARN][199] -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][201] ([Intel XE#877]) -> [PASS][202] +2 other tests pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-bmg: [SKIP][203] ([Intel XE#2291]) -> [PASS][204] +4 other tests pass [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.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_8121/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [FAIL][207] ([Intel XE#3486]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-bmg: [SKIP][209] ([Intel XE#2316]) -> [PASS][210] +4 other tests pass [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1: - shard-lnl: [FAIL][211] ([Intel XE#886]) -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-bmg: [INCOMPLETE][213] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][214] +3 other tests pass [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling: - shard-dg2-set2: [SKIP][215] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][216] +13 other tests pass [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][217] ([Intel XE#2136]) -> [PASS][218] +30 other tests pass [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-dg2-set2: [INCOMPLETE][219] ([Intel XE#1727]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][221] ([Intel XE#718]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][223] ([Intel XE#1430]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@i2c: - shard-dg2-set2: [SKIP][225] ([Intel XE#2446]) -> [PASS][226] +3 other tests pass [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_pm_rpm@i2c.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@legacy-planes-dpms@plane-59: - shard-lnl: [DMESG-WARN][227] ([Intel XE#3184]) -> [PASS][228] +2 other tests pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-1/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-6/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html * igt@kms_setmode@basic: - shard-bmg: [DMESG-FAIL][229] ([Intel XE#3468]) -> [PASS][230] +6 other tests pass [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_setmode@basic.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-a-hdmi-a-3: - shard-bmg: [FAIL][231] ([Intel XE#3559]) -> [PASS][232] +4 other tests pass [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_setmode@basic@pipe-a-hdmi-a-3.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@kms_setmode@basic@pipe-a-hdmi-a-3.html * igt@kms_vblank@ts-continuation-dpms-rpm: - shard-bmg: [DMESG-WARN][233] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][234] +1 other test pass [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_vblank@ts-continuation-dpms-rpm.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_vblank@ts-continuation-dpms-rpm.html * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3: - shard-bmg: [DMESG-WARN][235] ([Intel XE#3468]) -> [PASS][236] +37 other tests pass [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][237] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][238] +5 other tests pass [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-6.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-6.html * igt@xe_compute@ccs-mode-basic: - shard-bmg: [INCOMPLETE][239] ([Intel XE#1727]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@xe_compute@ccs-mode-basic.html * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate: - shard-bmg: [DMESG-WARN][241] ([Intel XE#3371] / [Intel XE#3515]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html * igt@xe_exercise_blt@fast-copy: - shard-bmg: [INCOMPLETE][243] -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_exercise_blt@fast-copy.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@xe_exercise_blt@fast-copy.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-dg2-set2: [DMESG-WARN][245] ([Intel XE#1727] / [Intel XE#3343]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early: - shard-bmg: [DMESG-WARN][247] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-bmg: [DMESG-WARN][249] ([Intel XE#3343]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: - shard-bmg: [FAIL][251] ([Intel XE#3499]) -> [PASS][252] +2 other tests pass [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: - shard-lnl: [FAIL][253] ([Intel XE#3499]) -> [PASS][254] +3 other tests pass [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-7/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-8/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc: - shard-bmg: [DMESG-FAIL][255] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-bmg: [DMESG-WARN][257] ([Intel XE#3467]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_module_load@unload: - shard-dg2-set2: [DMESG-WARN][259] ([Intel XE#3467]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_module_load@unload.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@xe_module_load@unload.html * igt@xe_oa@oa-regs-whitelisted: - shard-lnl: [FAIL][261] ([Intel XE#2514]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-7/igt@xe_oa@oa-regs-whitelisted.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-3/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_oa@oa-regs-whitelisted@ccs-0: - shard-bmg: [FAIL][263] ([Intel XE#2514]) -> [PASS][264] +1 other test pass [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_oa@oa-regs-whitelisted@ccs-0.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@xe_oa@oa-regs-whitelisted@ccs-0.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-bmg: [DMESG-WARN][265] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][266] +1 other test pass [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@xe_pm@s3-vm-bind-prefetch.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@xe_pm@s3-vm-bind-prefetch.html * igt@xe_pm@s4-basic: - shard-lnl: [ABORT][267] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-2/igt@xe_pm@s4-basic.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-3/igt@xe_pm@s4-basic.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][269] ([Intel XE#958]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-4/igt@xe_pm_residency@toggle-gt-c6.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_vm@large-split-binds-536870912: - shard-dg2-set2: [SKIP][271] ([Intel XE#1130]) -> [PASS][272] +213 other tests pass [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_vm@large-split-binds-536870912.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@xe_vm@large-split-binds-536870912.html #### Warnings #### * igt@core_hotunplug@hotreplug: - shard-dg2-set2: [SKIP][273] ([Intel XE#1885]) -> [DMESG-WARN][274] ([Intel XE#3468] / [Intel XE#3521]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@core_hotunplug@hotreplug.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@core_hotunplug@hotreplug.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: [SKIP][275] ([Intel XE#2423] / [i915#2575]) -> [SKIP][276] ([Intel XE#623]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][277] ([Intel XE#2136]) -> [SKIP][278] ([Intel XE#316]) +3 other tests skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][279] ([Intel XE#316]) -> [SKIP][280] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][281] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][282] ([Intel XE#316]) +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-180: - shard-dg2-set2: [SKIP][283] ([Intel XE#2136]) -> [INCOMPLETE][284] ([Intel XE#1727] / [Intel XE#3225] / [Intel XE#402]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][285] ([Intel XE#316]) -> [SKIP][286] ([Intel XE#2136]) +5 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: [DMESG-WARN][287] ([Intel XE#2705] / [Intel XE#3468]) -> [DMESG-FAIL][288] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][289] ([Intel XE#1124]) -> [SKIP][290] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][291] ([Intel XE#607]) -> [SKIP][292] ([Intel XE#2136]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg2-set2: [SKIP][293] ([Intel XE#1124]) -> [SKIP][294] ([Intel XE#2136]) +4 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][295] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][296] ([Intel XE#1124]) +6 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][297] ([Intel XE#2136]) -> [SKIP][298] ([Intel XE#1124]) +7 other tests skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][299] ([Intel XE#2423] / [i915#2575]) -> [SKIP][300] ([Intel XE#367]) +7 other tests skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][301] ([Intel XE#2423] / [i915#2575]) -> [SKIP][302] ([Intel XE#2191]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: [SKIP][303] ([Intel XE#2191]) -> [SKIP][304] ([Intel XE#2423] / [i915#2575]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][305] ([Intel XE#367]) -> [SKIP][306] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][307] ([Intel XE#2136]) -> [SKIP][308] ([Intel XE#2907]) +3 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][309] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][310] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs: - shard-dg2-set2: [SKIP][311] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][312] ([Intel XE#455] / [Intel XE#787]) +6 other tests skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][313] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][314] ([Intel XE#2136]) +13 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [SKIP][315] ([Intel XE#2136]) -> [INCOMPLETE][316] ([Intel XE#1727]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [FAIL][317] ([Intel XE#616]) -> [SKIP][318] ([Intel XE#2136]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][319] ([Intel XE#2136]) -> [SKIP][320] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][321] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][322] ([Intel XE#314]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][323] ([Intel XE#2423] / [i915#2575]) -> [SKIP][324] ([Intel XE#306]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2-set2: [SKIP][325] ([Intel XE#306]) -> [SKIP][326] ([Intel XE#2423] / [i915#2575]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_chamelium_color@ctm-negative.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-dg2-set2: [SKIP][327] ([Intel XE#2423] / [i915#2575]) -> [SKIP][328] ([Intel XE#373]) +8 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: [SKIP][329] ([Intel XE#373]) -> [SKIP][330] ([Intel XE#2423] / [i915#2575]) +11 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_content_protection@atomic: - shard-bmg: [FAIL][331] ([Intel XE#1178]) -> [INCOMPLETE][332] ([Intel XE#2715] / [Intel XE#3468]) +1 other test incomplete [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_content_protection@atomic.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][333] ([Intel XE#2423] / [i915#2575]) -> [SKIP][334] ([Intel XE#307]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][335] ([Intel XE#2341]) -> [INCOMPLETE][336] ([Intel XE#1727] / [Intel XE#2715] / [Intel XE#3468]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_content_protection@srm.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@kms_content_protection@srm.html - shard-dg2-set2: [FAIL][337] ([Intel XE#1178]) -> [SKIP][338] ([Intel XE#2423] / [i915#2575]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_content_protection@srm.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg2-set2: [SKIP][339] ([Intel XE#2423] / [i915#2575]) -> [FAIL][340] ([Intel XE#1188]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_content_protection@uevent.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_content_protection@uevent.html - shard-bmg: [SKIP][341] ([Intel XE#2341]) -> [FAIL][342] ([Intel XE#1188]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_content_protection@uevent.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: [SKIP][343] ([Intel XE#2423] / [i915#2575]) -> [SKIP][344] ([Intel XE#308]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x170.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2-set2: [SKIP][345] ([Intel XE#308]) -> [SKIP][346] ([Intel XE#2423] / [i915#2575]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-bmg: [DMESG-WARN][347] ([Intel XE#3468]) -> [SKIP][348] ([Intel XE#2291]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2-set2: [SKIP][349] ([Intel XE#323]) -> [SKIP][350] ([Intel XE#2423] / [i915#2575]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: [SKIP][351] ([Intel XE#2423] / [i915#2575]) -> [SKIP][352] ([Intel XE#323]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: [FAIL][353] ([Intel XE#2141]) -> [DMESG-FAIL][354] ([Intel XE#3468]) +2 other tests dmesg-fail [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dsc@dsc-basic: - shard-dg2-set2: [SKIP][355] ([Intel XE#2351]) -> [SKIP][356] ([Intel XE#455]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_dsc@dsc-basic.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: [SKIP][357] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][358] ([Intel XE#455]) +3 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_dsc@dsc-with-bpc-formats.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][359] ([Intel XE#2136]) -> [SKIP][360] ([Intel XE#776]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_fbcon_fbt@psr.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][361] ([Intel XE#776]) -> [SKIP][362] ([Intel XE#2136]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_fbcon_fbt@psr-suspend.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][363] ([Intel XE#1135]) -> [SKIP][364] ([Intel XE#2423] / [i915#2575]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_feature_discovery@psr1.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][365] ([Intel XE#2882]) -> [SKIP][366] ([Intel XE#2316]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [SKIP][367] ([Intel XE#2423] / [i915#2575]) -> [FAIL][368] ([Intel XE#301]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank: - shard-dg2-set2: [FAIL][369] ([Intel XE#301]) -> [SKIP][370] ([Intel XE#2423] / [i915#2575]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg2-set2: [DMESG-WARN][371] ([Intel XE#1727]) -> [SKIP][372] ([Intel XE#2136]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-dg2-set2: [INCOMPLETE][373] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][374] ([Intel XE#2136] / [Intel XE#2351]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg2-set2: [SKIP][375] ([Intel XE#455]) -> [SKIP][376] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-dg2-set2: [SKIP][377] ([Intel XE#455]) -> [SKIP][378] ([Intel XE#2136]) +5 other tests skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][379] ([Intel XE#2136]) -> [SKIP][380] ([Intel XE#455]) +4 other tests skip [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_force_connector_basic@force-edid: - shard-dg2-set2: [DMESG-WARN][381] ([Intel XE#1727]) -> [SKIP][382] ([Intel XE#2423] / [i915#2575]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_force_connector_basic@force-edid.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][383] ([Intel XE#2311]) -> [SKIP][384] ([Intel XE#2312]) +19 other tests skip [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][385] ([Intel XE#2312]) -> [SKIP][386] ([Intel XE#2311]) +9 other tests skip [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][387] ([Intel XE#2136]) -> [SKIP][388] ([Intel XE#651]) +24 other tests skip [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][389] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][390] ([Intel XE#651]) +17 other tests skip [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: [FAIL][391] ([Intel XE#2333]) -> [DMESG-FAIL][392] ([Intel XE#3468]) +11 other tests dmesg-fail [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [FAIL][393] ([Intel XE#2333]) -> [SKIP][394] ([Intel XE#2312]) +5 other tests skip [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][395] ([Intel XE#2312]) -> [FAIL][396] ([Intel XE#2333]) +3 other tests fail [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [DMESG-FAIL][397] ([Intel XE#3468]) -> [SKIP][398] ([Intel XE#2312]) +1 other test skip [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-rte.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][399] ([Intel XE#2312]) -> [DMESG-FAIL][400] ([Intel XE#3468]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [DMESG-FAIL][401] ([Intel XE#3468]) -> [FAIL][402] ([Intel XE#2333]) +3 other tests fail [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][403] ([Intel XE#651]) -> [SKIP][404] ([Intel XE#2136]) +22 other tests skip [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: [SKIP][405] ([Intel XE#651]) -> [SKIP][406] ([Intel XE#2136] / [Intel XE#2351]) +16 other tests skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][407] ([Intel XE#653]) -> [SKIP][408] ([Intel XE#2136]) +29 other tests skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][409] ([Intel XE#2313]) -> [SKIP][410] ([Intel XE#2312]) +19 other tests skip [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: [SKIP][411] ([Intel XE#653]) -> [SKIP][412] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][413] ([Intel XE#2136]) -> [SKIP][414] ([Intel XE#1158]) [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][415] ([Intel XE#2136]) -> [SKIP][416] ([Intel XE#653]) +30 other tests skip [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][417] ([Intel XE#2312]) -> [SKIP][418] ([Intel XE#2313]) +9 other tests skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][419] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][420] ([Intel XE#653]) +10 other tests skip [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][421] ([Intel XE#2423] / [i915#2575]) -> [SKIP][422] ([Intel XE#605]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][423] ([Intel XE#3544]) -> [SKIP][424] ([Intel XE#3374] / [Intel XE#3544]) [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][425] ([Intel XE#346]) -> [SKIP][426] ([Intel XE#2136]) +1 other test skip [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_joiner@basic-big-joiner.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: [SKIP][427] ([Intel XE#2136]) -> [SKIP][428] ([Intel XE#2925]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: [SKIP][429] ([Intel XE#2423] / [i915#2575]) -> [SKIP][430] ([Intel XE#356]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-dg2-set2: [SKIP][431] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][432] ([Intel XE#1727] / [Intel XE#3468]) [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_pipe_crc_basic@suspend-read-crc.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_plane_cursor@overlay: - shard-dg2-set2: [FAIL][433] ([Intel XE#616]) -> [SKIP][434] ([Intel XE#2423] / [i915#2575]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_plane_cursor@overlay.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_plane_cursor@overlay.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [SKIP][435] ([Intel XE#2423] / [i915#2575]) -> [FAIL][436] ([Intel XE#361]) [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-set2: [SKIP][437] ([Intel XE#2423] / [i915#2575]) -> [SKIP][438] ([Intel XE#2763] / [Intel XE#455]) [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2-set2: [SKIP][439] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][440] ([Intel XE#2423] / [i915#2575]) +1 other test skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2-set2: [SKIP][441] ([Intel XE#2136]) -> [SKIP][442] ([Intel XE#870]) [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_pm_backlight@basic-brightness.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][443] ([Intel XE#2938]) -> [SKIP][444] ([Intel XE#2136]) [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_pm_backlight@brightness-with-dpms.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: [SKIP][445] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][446] ([Intel XE#1122]) [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_pm_dc@dc3co-vpb-simulation.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: [SKIP][447] ([Intel XE#2136]) -> [SKIP][448] ([Intel XE#1129]) [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: [SKIP][449] ([Intel XE#908]) -> [SKIP][450] ([Intel XE#2136] / [Intel XE#2351]) [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_pm_dc@dc6-dpms.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [ABORT][451] ([Intel XE#3468]) -> [SKIP][452] ([Intel XE#2446]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_pm_rpm@system-suspend-modeset.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prop_blob@blob-multiple: - shard-dg2-set2: [SKIP][453] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][454] ([Intel XE#1727]) +2 other tests dmesg-warn [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_prop_blob@blob-multiple.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_prop_blob@blob-multiple.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][455] ([Intel XE#1489]) -> [SKIP][456] ([Intel XE#2136]) +10 other tests skip [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: [SKIP][457] ([Intel XE#2136]) -> [SKIP][458] ([Intel XE#1489]) +11 other tests skip [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2-set2: [SKIP][459] ([Intel XE#1122]) -> [SKIP][460] ([Intel XE#2136]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_psr2_su@page_flip-p010.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: [SKIP][461] ([Intel XE#2136]) -> [SKIP][462] ([Intel XE#1122]) +1 other test skip [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_psr2_su@page_flip-xrgb8888.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-sprite-plane-move: - shard-dg2-set2: [SKIP][463] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][464] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-move.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-plane-move.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-dg2-set2: [SKIP][465] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][466] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_psr@fbc-psr2-cursor-blt.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: [SKIP][467] ([Intel XE#2136]) -> [SKIP][468] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@pr-basic: - shard-dg2-set2: [SKIP][469] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][470] ([Intel XE#2136]) +10 other tests skip [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_psr@pr-basic.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_psr@pr-basic.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][471] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][472] ([Intel XE#2351]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_psr@psr-sprite-plane-onoff.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][473] ([Intel XE#2136]) -> [SKIP][474] ([Intel XE#2939]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][475] ([Intel XE#1127]) -> [SKIP][476] ([Intel XE#2423] / [i915#2575]) [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][477] ([Intel XE#2423] / [i915#2575]) -> [SKIP][478] ([Intel XE#1127]) +1 other test skip [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2-set2: [SKIP][479] ([Intel XE#3414]) -> [SKIP][480] ([Intel XE#2423] / [i915#2575]) [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-90.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2-set2: [SKIP][481] ([Intel XE#2423] / [i915#2575]) -> [SKIP][482] ([Intel XE#3414]) +1 other test skip [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-dg2-set2: [SKIP][483] ([Intel XE#455]) -> [SKIP][484] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_scaling_modes@scaling-mode-full-aspect.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][485] ([Intel XE#2426]) -> [FAIL][486] ([Intel XE#1729]) [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [SKIP][487] ([Intel XE#362]) -> [FAIL][488] ([Intel XE#1729]) [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][489] ([Intel XE#2423] / [i915#2575]) -> [SKIP][490] ([Intel XE#330]) [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flipline: - shard-dg2-set2: [SKIP][491] ([Intel XE#2423] / [i915#2575]) -> [SKIP][492] ([Intel XE#455]) +10 other tests skip [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_vrr@flipline.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-dg2-set2: [SKIP][493] ([Intel XE#2168]) -> [SKIP][494] ([Intel XE#2423] / [i915#2575]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_vrr@lobf.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: [SKIP][495] ([Intel XE#756]) -> [SKIP][496] ([Intel XE#2423] / [i915#2575]) [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_writeback@writeback-fb-id-xrgb2101010.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][497] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][498] ([Intel XE#1130]) [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@xe_compute_preempt@compute-preempt.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][499] ([Intel XE#1130]) -> [SKIP][500] ([Intel XE#1280] / [Intel XE#455]) [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: [SKIP][501] ([Intel XE#1130]) -> [SKIP][502] ([Intel XE#1123]) [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: [SKIP][503] ([Intel XE#1123]) -> [SKIP][504] ([Intel XE#1130]) [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfffe.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][505] ([Intel XE#1130]) -> [SKIP][506] ([Intel XE#1126]) +1 other test skip [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: [SKIP][507] ([Intel XE#2905]) -> [SKIP][508] ([Intel XE#1130]) +9 other tests skip [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_eudebug@basic-close.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@xe_eudebug@basic-close.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [FAIL][509] ([Intel XE#1600]) -> [SKIP][510] ([Intel XE#1130]) +1 other test skip [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_evict@evict-beng-large-multi-vm-cm.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [SKIP][511] ([Intel XE#1130]) -> [INCOMPLETE][512] ([Intel XE#1473]) [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-large.html - shard-bmg: [TIMEOUT][513] ([Intel XE#1473]) -> [INCOMPLETE][514] ([Intel XE#1473]) [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-large.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate: - shard-dg2-set2: [DMESG-WARN][515] ([Intel XE#1727]) -> [SKIP][516] ([Intel XE#1130]) [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm: - shard-dg2-set2: [SKIP][517] ([Intel XE#288]) -> [SKIP][518] ([Intel XE#1130]) +32 other tests skip [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: - shard-dg2-set2: [SKIP][519] ([Intel XE#1130]) -> [SKIP][520] ([Intel XE#288]) +38 other tests skip [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html * igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence: - shard-dg2-set2: [SKIP][521] ([Intel XE#1130]) -> [SKIP][522] ([Intel XE#2360]) [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: [SKIP][523] ([Intel XE#2360]) -> [SKIP][524] ([Intel XE#1130]) +1 other test skip [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: [SKIP][525] ([Intel XE#1130]) -> [SKIP][526] ([Intel XE#2905]) +14 other tests skip [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-writesip.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [DMESG-WARN][527] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][528] ([Intel XE#3468]) [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init: - shard-bmg: [DMESG-WARN][529] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][530] ([Intel XE#3343]) [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html - shard-dg2-set2: [SKIP][531] ([Intel XE#1130]) -> [DMESG-WARN][532] ([Intel XE#3343]) [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/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-dg2-set2: [DMESG-WARN][533] ([Intel XE#3343]) -> [SKIP][534] ([Intel XE#1130]) [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-bmg: [DMESG-WARN][535] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][536] ([Intel XE#3467]) [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: - shard-dg2-set2: [DMESG-WARN][537] ([Intel XE#3467]) -> [SKIP][538] ([Intel XE#1130]) [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-bmg: [DMESG-WARN][539] ([Intel XE#3521]) -> [DMESG-WARN][540] ([Intel XE#3467] / [Intel XE#3468]) [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch: - shard-dg2-set2: [SKIP][541] ([Intel XE#1130]) -> [DMESG-WARN][542] ([Intel XE#3467]) +1 other test dmesg-warn [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][543] ([Intel XE#1130]) -> [SKIP][544] ([Intel XE#255]) [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_huc_copy@huc_copy.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][545] ([Intel XE#1192]) -> [SKIP][546] ([Intel XE#2833]) [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html * igt@xe_live_ktest@xe_mocs: - shard-dg2-set2: [FAIL][547] ([Intel XE#1999]) -> [SKIP][548] ([Intel XE#1192]) [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html * igt@xe_module_load@reload: - shard-dg2-set2: [FAIL][549] ([Intel XE#3546]) -> [DMESG-WARN][550] ([Intel XE#3467]) [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_module_load@reload.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@xe_module_load@reload.html * igt@xe_oa@invalid-create-userspace-config: - shard-dg2-set2: [SKIP][551] ([Intel XE#1130]) -> [SKIP][552] ([Intel XE#3573]) +12 other tests skip [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_oa@invalid-create-userspace-config.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@xe_oa@invalid-create-userspace-config.html * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: [SKIP][553] ([Intel XE#3573]) -> [SKIP][554] ([Intel XE#1130]) +7 other tests skip [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][555] ([Intel XE#1337]) -> [SKIP][556] ([Intel XE#1130]) [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_pat@display-vs-wb-transient.html [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pm@d3cold-mmap-system: - shard-dg2-set2: [SKIP][557] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][558] ([Intel XE#1130]) +1 other test skip [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_pm@d3cold-mmap-system.html [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: [SKIP][559] ([Intel XE#1130]) -> [SKIP][560] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_pm@d3cold-mmap-vram.html [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-436/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][561] ([Intel XE#1130]) -> [SKIP][562] ([Intel XE#2284]) [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_pm@d3cold-mocs.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@d3hot-mmap-vram: - shard-dg2-set2: [DMESG-WARN][563] ([Intel XE#3468]) -> [SKIP][564] ([Intel XE#1130]) [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_pm@d3hot-mmap-vram.html [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@xe_pm@d3hot-mmap-vram.html * igt@xe_pm@s2idle-basic-exec: - shard-dg2-set2: [DMESG-WARN][565] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-FAIL][566] ([Intel XE#1727] / [Intel XE#3468]) [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_pm@s2idle-basic-exec.html [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s3-basic: - shard-dg2-set2: [SKIP][567] ([Intel XE#1130]) -> [DMESG-WARN][568] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_pm@s3-basic.html [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-435/igt@xe_pm@s3-basic.html * igt@xe_pm@s4-mocs: - shard-dg2-set2: [DMESG-WARN][569] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [SKIP][570] ([Intel XE#1130]) [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_pm@s4-mocs.html [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@xe_pm@s4-mocs.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][571] ([Intel XE#1130]) -> [SKIP][572] ([Intel XE#944]) +3 other tests skip [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_query@multigpu-query-engines.html [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-433/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][573] ([Intel XE#944]) -> [SKIP][574] ([Intel XE#1130]) +3 other tests skip [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_query@multigpu-query-uc-fw-version-guc.html [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: [SKIP][575] ([Intel XE#3342]) -> [SKIP][576] ([Intel XE#1130]) [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_sriov_flr@flr-each-isolation.html [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][577] ([Intel XE#1130]) -> [SKIP][578] ([Intel XE#3342]) [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-463/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_tlb@basic-tlb: - shard-dg2-set2: [FAIL][579] ([Intel XE#2922]) -> [SKIP][580] ([Intel XE#1130]) [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_tlb@basic-tlb.html [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-434/igt@xe_tlb@basic-tlb.html * igt@xe_wedged@basic-wedged: - shard-dg2-set2: [DMESG-WARN][581] ([Intel XE#2919]) -> [SKIP][582] ([Intel XE#1130]) [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_wedged@basic-wedged.html [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/shard-dg2-466/igt@xe_wedged@basic-wedged.html [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#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#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#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [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#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [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#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [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#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3162 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191 [Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#3515]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3515 [Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#3559]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3559 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3561 [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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [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#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [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#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8121 -> IGTPW_12167 * Linux: xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380 -> xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199 IGTPW_12167: 12167 IGT_8121: 8121 xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380: e46649e7764a9f6868ccbcba7b8b23b413303380 xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199: bb17c42521f57b592e9ad49daca1f9f9045d3199 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12167/index.html [-- Attachment #2: Type: text/html, Size: 175147 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-11-22 15:04 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-21 20:29 [PATCH] tests/intel/xe_fault_injection: Use valid pat index Jonathan Cavitt 2024-11-21 23:42 ` ✓ Xe.CI.BAT: success for " Patchwork 2024-11-21 23:54 ` ✗ i915.CI.BAT: failure " Patchwork 2024-11-22 14:46 ` [PATCH] " Francois Dugast 2024-11-22 15:04 ` ✗ Xe.CI.Full: failure for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox