* [PATCH i-g-t] scripts/generate_iga64_codes: prevent objcopy from modifying the input file
@ 2024-10-30 18:40 Jeff Dagenais
2024-10-31 16:51 ` Kamil Konieczny
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Jeff Dagenais @ 2024-10-30 18:40 UTC (permalink / raw)
To: igt-dev; +Cc: Jeff Dagenais, Jeff Dagenais
This script uses objcopy in order to dump a section. Objcopy is meant
for copying and expects a second argument. Failing that, it uses the
input file as output. Even though there's no intented change to the
file, this operation still re-writes the file completely.
In most cases, this re-writes the file as it was before. But in
cross-compilation cases, the "objcopy" program in the PATH used here
might be different than the toolchain which generated the ELF file.
In all cases, this causes a racy re-build of the .a, and in the worst
case, the objcopy re-written .o and .a files are actually incompatible
with the cross-linker used downstream in the ninja build causing failure
to find all symbols from the libs passed to this script.
```
../lib/intel_batchbuffer.c:763: undefined reference to
`gen8_gpgpu_fillfunc'
../lib/intel_batchbuffer.c:762: undefined reference to
`xehp_gpgpu_fillfunc'
[...]
```
The intent of the command was just to extract info from the LIBS, not
modify them. Using /dev/null as output file ensures the input files will
not be modified.
Signed-off-by: Jeff Dagenais <jeff.dagenais@gmail.com>
---
scripts/generate_iga64_codes | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/generate_iga64_codes b/scripts/generate_iga64_codes
index d1e40b600..bbf1f7008 100755
--- a/scripts/generate_iga64_codes
+++ b/scripts/generate_iga64_codes
@@ -37,7 +37,7 @@ ASMS=()
while read -d $'\0' asm; do
test -z "$asm" && continue
ASMS+=( "$asm" )
-done < <(for f in $LIBS; do objcopy --dump-section .iga64_assembly=/dev/stdout $f.p/*.o; done)
+done < <(for f in $LIBS; do objcopy --dump-section .iga64_assembly=/dev/stdout $f.p/*.o /dev/null; done)
# check if we need to recompile - checksum difference and compiler present
MD5_ASMS="$(md5sum <<< "${ASMS[@]}" | cut -b1-32)"
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH i-g-t] scripts/generate_iga64_codes: prevent objcopy from modifying the input file 2024-10-30 18:40 [PATCH i-g-t] scripts/generate_iga64_codes: prevent objcopy from modifying the input file Jeff Dagenais @ 2024-10-31 16:51 ` Kamil Konieczny 2024-11-04 6:29 ` ✓ CI.xeBAT: success for " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Kamil Konieczny @ 2024-10-31 16:51 UTC (permalink / raw) To: igt-dev; +Cc: Jeff Dagenais, Jeff Dagenais, Andrzej Hajda Hi Jeff, On 2024-10-30 at 11:40:54 -0700, Jeff Dagenais wrote: > This script uses objcopy in order to dump a section. Objcopy is meant > for copying and expects a second argument. Failing that, it uses the > input file as output. Even though there's no intented change to the > file, this operation still re-writes the file completely. > > In most cases, this re-writes the file as it was before. But in > cross-compilation cases, the "objcopy" program in the PATH used here > might be different than the toolchain which generated the ELF file. > > In all cases, this causes a racy re-build of the .a, and in the worst > case, the objcopy re-written .o and .a files are actually incompatible > with the cross-linker used downstream in the ninja build causing failure > to find all symbols from the libs passed to this script. > > ``` > ../lib/intel_batchbuffer.c:763: undefined reference to > `gen8_gpgpu_fillfunc' > ../lib/intel_batchbuffer.c:762: undefined reference to > `xehp_gpgpu_fillfunc' > [...] > ``` > > The intent of the command was just to extract info from the LIBS, not > modify them. Using /dev/null as output file ensures the input files will > not be modified. > Thank you for a patch, if possible please subscribe to ML or expect some delay between sending e-mail and delivering it to mailing list. +cc Andrzej Hajda <andrzej.hajda@intel.com> > Signed-off-by: Jeff Dagenais <jeff.dagenais@gmail.com> > --- > scripts/generate_iga64_codes | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/generate_iga64_codes b/scripts/generate_iga64_codes > index d1e40b600..bbf1f7008 100755 > --- a/scripts/generate_iga64_codes > +++ b/scripts/generate_iga64_codes > @@ -37,7 +37,7 @@ ASMS=() > while read -d $'\0' asm; do > test -z "$asm" && continue > ASMS+=( "$asm" ) > -done < <(for f in $LIBS; do objcopy --dump-section .iga64_assembly=/dev/stdout $f.p/*.o; done) > +done < <(for f in $LIBS; do objcopy --dump-section .iga64_assembly=/dev/stdout $f.p/*.o /dev/null; done) > > # check if we need to recompile - checksum difference and compiler present > MD5_ASMS="$(md5sum <<< "${ASMS[@]}" | cut -b1-32)" > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ CI.xeBAT: success for scripts/generate_iga64_codes: prevent objcopy from modifying the input file 2024-10-30 18:40 [PATCH i-g-t] scripts/generate_iga64_codes: prevent objcopy from modifying the input file Jeff Dagenais 2024-10-31 16:51 ` Kamil Konieczny @ 2024-11-04 6:29 ` Patchwork 2024-11-04 6:39 ` ✗ Fi.CI.BAT: failure " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-11-04 6:29 UTC (permalink / raw) To: Jeff Dagenais; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1574 bytes --] == Series Details == Series: scripts/generate_iga64_codes: prevent objcopy from modifying the input file URL : https://patchwork.freedesktop.org/series/140771/ State : success == Summary == CI Bug Log - changes from XEIGT_8091_BAT -> XEIGTPW_12015_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12015_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_exec_compute_mode@twice-userptr-invalidate: - bat-lnl-1: [PASS][1] -> [FAIL][2] ([Intel XE#2754]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/bat-lnl-1/igt@xe_exec_compute_mode@twice-userptr-invalidate.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/bat-lnl-1/igt@xe_exec_compute_mode@twice-userptr-invalidate.html [Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754 Build changes ------------- * IGT: IGT_8091 -> IGTPW_12015 * Linux: xe-2149-54ceaf112b111612f3a7430132b2395fcce62414 -> xe-2152-9c4962db90300e1d8daca8ed54195bc31d0ee932 IGTPW_12015: 12015 IGT_8091: 8091 xe-2149-54ceaf112b111612f3a7430132b2395fcce62414: 54ceaf112b111612f3a7430132b2395fcce62414 xe-2152-9c4962db90300e1d8daca8ed54195bc31d0ee932: 9c4962db90300e1d8daca8ed54195bc31d0ee932 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/index.html [-- Attachment #2: Type: text/html, Size: 2150 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.BAT: failure for scripts/generate_iga64_codes: prevent objcopy from modifying the input file 2024-10-30 18:40 [PATCH i-g-t] scripts/generate_iga64_codes: prevent objcopy from modifying the input file Jeff Dagenais 2024-10-31 16:51 ` Kamil Konieczny 2024-11-04 6:29 ` ✓ CI.xeBAT: success for " Patchwork @ 2024-11-04 6:39 ` Patchwork 2024-11-05 16:32 ` Kamil Konieczny 2024-11-04 8:11 ` ✗ CI.xeFULL: " Patchwork 2024-11-04 9:44 ` [PATCH i-g-t] " Hajda, Andrzej 4 siblings, 1 reply; 8+ messages in thread From: Patchwork @ 2024-11-04 6:39 UTC (permalink / raw) To: Jeff Dagenais; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5024 bytes --] == Series Details == Series: scripts/generate_iga64_codes: prevent objcopy from modifying the input file URL : https://patchwork.freedesktop.org/series/140771/ State : failure == Summary == CI Bug Log - changes from IGT_8091 -> IGTPW_12015 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12015 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12015, 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_12015/index.html Participating hosts (46 -> 44) ------------------------------ Missing (2): fi-snb-2520m bat-adls-6 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12015: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_fence@nb-await@vecs0: - bat-rpls-4: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-rpls-4/igt@gem_exec_fence@nb-await@vecs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/bat-rpls-4/igt@gem_exec_fence@nb-await@vecs0.html New tests --------- New tests have been introduced between IGT_8091 and IGTPW_12015: ### New IGT tests (1) ### * igt@debugfs_test@basic-hwmon: - Statuses : 7 pass(s) 36 skip(s) - Exec time: [0.0, 0.00] s Known issues ------------ Here are the changes found in IGTPW_12015 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-twl-1: [PASS][3] -> [INCOMPLETE][4] ([i915#12133] / [i915#9413]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-twl-1/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/bat-twl-1/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_lrc: - bat-twl-1: [PASS][5] -> [INCOMPLETE][6] ([i915#9413]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-twl-1/igt@i915_selftest@live@gt_lrc.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/bat-twl-1/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@reset: - bat-atsm-1: [PASS][7] -> [ABORT][8] ([i915#12133]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-atsm-1/igt@i915_selftest@live@reset.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/bat-atsm-1/igt@i915_selftest@live@reset.html * igt@kms_chamelium_edid@hdmi-edid-read: - bat-dg2-13: [PASS][9] -> [DMESG-WARN][10] ([i915#12253]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html #### Possible fixes #### * igt@gem_exec_fence@basic-await: - bat-dg2-14: [FAIL][11] ([i915#12660]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-dg2-14/igt@gem_exec_fence@basic-await.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/bat-dg2-14/igt@gem_exec_fence@basic-await.html * igt@i915_selftest@live: - bat-mtlp-6: [DMESG-WARN][13] ([i915#10341] / [i915#12133]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-mtlp-6/igt@i915_selftest@live.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/bat-mtlp-6/igt@i915_selftest@live.html * igt@i915_selftest@live@hangcheck: - bat-mtlp-6: [DMESG-WARN][15] ([i915#11349] / [i915#12133]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253 [i915#12660]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12660 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8091 -> IGTPW_12015 * Linux: CI_DRM_15616 -> CI_DRM_15620 CI-20190529: 20190529 CI_DRM_15616: baf0f5492ee64d9edaa4a9aae47c7dc6dc3e2c31 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15620: 9c4962db90300e1d8daca8ed54195bc31d0ee932 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12015: 12015 IGT_8091: 8091 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/index.html [-- Attachment #2: Type: text/html, Size: 6164 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ✗ Fi.CI.BAT: failure for scripts/generate_iga64_codes: prevent objcopy from modifying the input file 2024-11-04 6:39 ` ✗ Fi.CI.BAT: failure " Patchwork @ 2024-11-05 16:32 ` Kamil Konieczny 0 siblings, 0 replies; 8+ messages in thread From: Kamil Konieczny @ 2024-11-05 16:32 UTC (permalink / raw) To: igt-dev; +Cc: Jeff Dagenais, I915-ci-infra Hi igt-dev, On 2024-11-04 at 06:39:53 -0000, Patchwork wrote: > == Series Details == > > Series: scripts/generate_iga64_codes: prevent objcopy from modifying the input file > URL : https://patchwork.freedesktop.org/series/140771/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_8091 -> IGTPW_12015 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12015 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12015, 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_12015/index.html > > Participating hosts (46 -> 44) > ------------------------------ > > Missing (2): fi-snb-2520m bat-adls-6 > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_12015: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_exec_fence@nb-await@vecs0: > - bat-rpls-4: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-rpls-4/igt@gem_exec_fence@nb-await@vecs0.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/bat-rpls-4/igt@gem_exec_fence@nb-await@vecs0.html > > This is unrelated to change in scripts, no need for respin as I will merge this soon. Regards, Kamil > New tests > --------- > > New tests have been introduced between IGT_8091 and IGTPW_12015: > > ### New IGT tests (1) ### > > * igt@debugfs_test@basic-hwmon: > - Statuses : 7 pass(s) 36 skip(s) > - Exec time: [0.0, 0.00] s > > > > Known issues > ------------ > > Here are the changes found in IGTPW_12015 that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@i915_selftest@live: > - bat-twl-1: [PASS][3] -> [INCOMPLETE][4] ([i915#12133] / [i915#9413]) > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-twl-1/igt@i915_selftest@live.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/bat-twl-1/igt@i915_selftest@live.html > > * igt@i915_selftest@live@gt_lrc: > - bat-twl-1: [PASS][5] -> [INCOMPLETE][6] ([i915#9413]) > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-twl-1/igt@i915_selftest@live@gt_lrc.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/bat-twl-1/igt@i915_selftest@live@gt_lrc.html > > * igt@i915_selftest@live@reset: > - bat-atsm-1: [PASS][7] -> [ABORT][8] ([i915#12133]) > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-atsm-1/igt@i915_selftest@live@reset.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/bat-atsm-1/igt@i915_selftest@live@reset.html > > * igt@kms_chamelium_edid@hdmi-edid-read: > - bat-dg2-13: [PASS][9] -> [DMESG-WARN][10] ([i915#12253]) > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html > > > #### Possible fixes #### > > * igt@gem_exec_fence@basic-await: > - bat-dg2-14: [FAIL][11] ([i915#12660]) -> [PASS][12] +1 other test pass > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-dg2-14/igt@gem_exec_fence@basic-await.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/bat-dg2-14/igt@gem_exec_fence@basic-await.html > > * igt@i915_selftest@live: > - bat-mtlp-6: [DMESG-WARN][13] ([i915#10341] / [i915#12133]) -> [PASS][14] > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-mtlp-6/igt@i915_selftest@live.html > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/bat-mtlp-6/igt@i915_selftest@live.html > > * igt@i915_selftest@live@hangcheck: > - bat-mtlp-6: [DMESG-WARN][15] ([i915#11349] / [i915#12133]) -> [PASS][16] > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8091/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html > > > [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 > [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349 > [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 > [i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253 > [i915#12660]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12660 > [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_8091 -> IGTPW_12015 > * Linux: CI_DRM_15616 -> CI_DRM_15620 > > CI-20190529: 20190529 > CI_DRM_15616: baf0f5492ee64d9edaa4a9aae47c7dc6dc3e2c31 @ git://anongit.freedesktop.org/gfx-ci/linux > CI_DRM_15620: 9c4962db90300e1d8daca8ed54195bc31d0ee932 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_12015: 12015 > IGT_8091: 8091 > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12015/index.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ CI.xeFULL: failure for scripts/generate_iga64_codes: prevent objcopy from modifying the input file 2024-10-30 18:40 [PATCH i-g-t] scripts/generate_iga64_codes: prevent objcopy from modifying the input file Jeff Dagenais ` (2 preceding siblings ...) 2024-11-04 6:39 ` ✗ Fi.CI.BAT: failure " Patchwork @ 2024-11-04 8:11 ` Patchwork 2024-11-05 16:30 ` Kamil Konieczny 2024-11-04 9:44 ` [PATCH i-g-t] " Hajda, Andrzej 4 siblings, 1 reply; 8+ messages in thread From: Patchwork @ 2024-11-04 8:11 UTC (permalink / raw) To: Jeff Dagenais; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 93799 bytes --] == Series Details == Series: scripts/generate_iga64_codes: prevent objcopy from modifying the input file URL : https://patchwork.freedesktop.org/series/140771/ State : failure == Summary == CI Bug Log - changes from XEIGT_8091_full -> XEIGTPW_12015_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12015_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12015_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_12015_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_hdr@brightness-with-hdr@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-466/igt@kms_hdr@brightness-with-hdr@pipe-a-dp-4.html * igt@xe_exec_fault_mode@once-userptr-imm: - shard-lnl: [PASS][4] -> [FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-5/igt@xe_exec_fault_mode@once-userptr-imm.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-2/igt@xe_exec_fault_mode@once-userptr-imm.html * igt@xe_module_load@many-reload: - shard-lnl: [PASS][6] -> [ABORT][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-5/igt@xe_module_load@many-reload.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-5/igt@xe_module_load@many-reload.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][8] +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-433/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_vm@bind-array-enobufs: - shard-dg2-set2: [PASS][9] -> [FAIL][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-466/igt@xe_vm@bind-array-enobufs.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-464/igt@xe_vm@bind-array-enobufs.html New tests --------- New tests have been introduced between XEIGT_8091_full and XEIGTPW_12015_full: ### New IGT tests (2) ### * igt@fbdev@pan: - Statuses : 3 pass(s) - Exec time: [0.05] s * igt@kms_pm_lpsp@kms-lpsp@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.18] s Known issues ------------ Here are the changes found in XEIGTPW_12015_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1466]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#2231] / [Intel XE#2890]) +5 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-5/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html - shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#2351] / [Intel XE#2890]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-432/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#316]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#2890]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-464/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1124]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-2/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1124]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +10 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/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-3-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#2191]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#367]) +4 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#787]) +90 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +4 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2907]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2887]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-6/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#455] / [Intel XE#787]) +22 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4: - shard-dg2-set2: [PASS][32] -> [DMESG-WARN][33] ([Intel XE#3113]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][34] ([Intel XE#1195] / [Intel XE#3113] / [Intel XE#3124]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-0-50: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#306]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-6/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#373]) +8 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-432/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#373]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-3/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt@kms_chamelium_frames@dp-crc-single: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2252]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-8/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][39] ([Intel XE#1178]) +1 other test fail [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][40] ([Intel XE#1188]) +1 other test fail [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-464/igt@kms_content_protection@uevent.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [PASS][41] -> [DMESG-WARN][42] ([Intel XE#877]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#309]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2: - shard-bmg: NOTRUN -> [FAIL][44] ([Intel XE#2141]) +1 other test fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#307]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-432/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#701]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-464/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#703]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][48] ([Intel XE#301]) +5 other tests fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1421]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-6/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@blocking-wf_vblank: - shard-lnl: [PASS][50] -> [INCOMPLETE][51] ([Intel XE#2049]) +1 other test incomplete [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-2/igt@kms_flip@blocking-wf_vblank.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-5/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1: - shard-lnl: [PASS][52] -> [FAIL][53] ([Intel XE#886]) +4 other tests fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank@a-dp2: - shard-bmg: [PASS][54] -> [FAIL][55] ([Intel XE#301]) +3 other tests fail [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [PASS][56] -> [FAIL][57] ([Intel XE#301]) +1 other test fail [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: [PASS][58] -> [INCOMPLETE][59] ([Intel XE#2597]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-6/igt@kms_flip@flip-vs-suspend.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-2/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@d-hdmi-a3: - shard-bmg: [PASS][60] -> [INCOMPLETE][61] ([Intel XE#2597] / [Intel XE#2635]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-6/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-2/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2293] / [Intel XE#2380]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1401] / [Intel XE#1745]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1401]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2293]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#651]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#651]) +22 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#658]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#656]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#653]) +28 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2313]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2-set2: NOTRUN -> [FAIL][72] ([Intel XE#3312]) +1 other test fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-466/igt@kms_hdr@brightness-with-hdr.html * igt@kms_invalid_mode@clock-too-high: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1450] / [Intel XE#2568]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-5/igt@kms_invalid_mode@clock-too-high.html * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1450]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-5/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#2925]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#2927]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-436/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2486]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-4/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-dg2-set2: NOTRUN -> [ABORT][78] ([Intel XE#1035] / [Intel XE#2625]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-432/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [PASS][79] -> [FAIL][80] ([Intel XE#616]) +1 other test fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-464/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-434/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_cursor@primary: - shard-lnl: [PASS][81] -> [FAIL][82] ([Intel XE#1471] / [Intel XE#1874]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-2/igt@kms_plane_cursor@primary.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-5/igt@kms_plane_cursor@primary.html * igt@kms_plane_cursor@primary@pipe-b-edp-1-size-64: - shard-lnl: [PASS][83] -> [FAIL][84] ([Intel XE#1874]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-2/igt@kms_plane_cursor@primary@pipe-b-edp-1-size-64.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-5/igt@kms_plane_cursor@primary@pipe-b-edp-1-size-64.html * igt@kms_plane_cursor@viewport: - shard-bmg: [PASS][85] -> [SKIP][86] ([Intel XE#3007]) +8 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@kms_plane_cursor@viewport.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_plane_cursor@viewport.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#2763]) +5 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2763]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation: - shard-dg2-set2: [PASS][90] -> [SKIP][91] ([Intel XE#2423] / [i915#2575]) +7 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-436/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#2763]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#870]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-464/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#1122]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#1430]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#1129]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@legacy-planes: - shard-lnl: [PASS][98] -> [DMESG-WARN][99] ([Intel XE#3184]) +1 other test dmesg-warn [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-2/igt@kms_pm_rpm@legacy-planes.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-6/igt@kms_pm_rpm@legacy-planes.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][100] -> [SKIP][101] ([Intel XE#2446]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-464/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#2893]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#1489]) +5 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-432/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#1489]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2890]) +5 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2850] / [Intel XE#929]) +14 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_psr@psr-dpms.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#327]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1127]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_sequence@queue-busy: - shard-lnl: [PASS][109] -> [FAIL][110] ([Intel XE#2467]) +1 other test fail [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-5/igt@kms_sequence@queue-busy.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-2/igt@kms_sequence@queue-busy.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1435]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-3/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: NOTRUN -> [FAIL][112] ([Intel XE#1729]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#455]) +12 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-466/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#756]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-432/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-466/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#1126]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_eudebug@basic-vm-bind-discovery: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2905]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@xe_eudebug@basic-vm-bind-discovery.html * igt@xe_eudebug_online@basic-breakpoint: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#2905]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-2/igt@xe_eudebug_online@basic-breakpoint.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [PASS][119] -> [TIMEOUT][120] ([Intel XE#1473]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-small-external: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#688]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-7/igt@xe_evict@evict-beng-small-external.html * igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate: - shard-lnl: [PASS][122] -> [FAIL][123] ([Intel XE#3179]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-8/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-2/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html * igt@xe_exec_compute_mode@twice-bindexecqueue-rebind: - shard-bmg: [PASS][124] -> [SKIP][125] ([Intel XE#1130]) +28 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race: - shard-lnl: NOTRUN -> [FAIL][126] ([Intel XE#3160]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race: - shard-lnl: [PASS][127] -> [FAIL][128] ([Intel XE#3160]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-1/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-userptr-invalidate-race: - shard-bmg: [PASS][129] -> [FAIL][130] ([Intel XE#3160]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-5/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-8/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm: - shard-bmg: NOTRUN -> [FAIL][131] ([Intel XE#3160]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-6/igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm.html * igt@xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#288]) +23 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-464/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html * igt@xe_exec_fault_mode@once-userptr-invalidate-race-prefetch: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#1130]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@xe_exec_fault_mode@once-userptr-invalidate-race-prefetch.html * igt@xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1130]) +8 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2360]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race: - shard-dg2-set2: [PASS][136] -> [SKIP][137] ([Intel XE#1130]) +20 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-432/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#560]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-464/igt@xe_media_fill@media-fill.html * igt@xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#2541]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-435/igt@xe_oa@closed-fd-and-unmapped-access.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2838] / [Intel XE#979]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-435/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#979]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@s2idle-mocs: - shard-dg2-set2: [PASS][142] -> [ABORT][143] ([Intel XE#1794]) +1 other test abort [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-464/igt@xe_pm@s2idle-mocs.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-432/igt@xe_pm@s2idle-mocs.html * igt@xe_pm@s4-vm-bind-userptr: - shard-lnl: [PASS][144] -> [ABORT][145] ([Intel XE#1794]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-4/igt@xe_pm@s4-vm-bind-userptr.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_pm_residency@gt-c6-freeze: - shard-dg2-set2: NOTRUN -> [ABORT][146] ([Intel XE#2625]) +1 other test abort [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-432/igt@xe_pm_residency@gt-c6-freeze.html * igt@xe_query@multigpu-query-mem-usage: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#944]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-436/igt@xe_query@multigpu-query-mem-usage.html #### Possible fixes #### * igt@core_hotunplug@unplug-rescan: - shard-lnl: [DMESG-WARN][148] -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-6/igt@core_hotunplug@unplug-rescan.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-2/igt@core_hotunplug@unplug-rescan.html * igt@kms_3d: - shard-dg2-set2: [SKIP][150] ([Intel XE#2423]) -> [PASS][151] [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_3d.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_3d.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-bmg: [SKIP][152] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][153] +2 other tests pass [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-2/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][154] ([Intel XE#1195]) -> [PASS][155] [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][156] ([Intel XE#3113]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-lnl: [FAIL][158] ([Intel XE#1475]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: [FAIL][160] ([Intel XE#301]) -> [PASS][161] +4 other tests pass [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4: - shard-dg2-set2: [ABORT][162] -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [FAIL][164] ([Intel XE#2882]) -> [PASS][165] +1 other test pass [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1: - shard-lnl: [FAIL][166] ([Intel XE#886]) -> [PASS][167] +6 other tests pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-4/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-7/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6: - shard-dg2-set2: [FAIL][168] ([Intel XE#301]) -> [PASS][169] +8 other tests pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html * igt@kms_flip@modeset-vs-vblank-race-interruptible: - shard-bmg: [INCOMPLETE][170] ([Intel XE#2635]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@kms_flip@modeset-vs-vblank-race-interruptible.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-7/igt@kms_flip@modeset-vs-vblank-race-interruptible.html * igt@kms_flip@modeset-vs-vblank-race-interruptible@c-dp2: - shard-bmg: [INCOMPLETE][172] -> [PASS][173] +1 other test pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@kms_flip@modeset-vs-vblank-race-interruptible@c-dp2.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-7/igt@kms_flip@modeset-vs-vblank-race-interruptible@c-dp2.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][174] ([Intel XE#2890]) -> [PASS][175] +3 other tests pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][176] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][177] +2 other tests pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html * igt@kms_hdmi_inject@inject-audio: - shard-dg2-set2: [SKIP][178] ([Intel XE#2423] / [i915#2575]) -> [PASS][179] +7 other tests pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_hdmi_inject@inject-audio.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-434/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [SKIP][180] ([Intel XE#3007]) -> [PASS][181] +15 other tests pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_plane@plane-panning-bottom-right-suspend.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-6/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_cursor@viewport: - shard-lnl: [FAIL][182] ([Intel XE#1471]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-2/igt@kms_plane_cursor@viewport.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-4/igt@kms_plane_cursor@viewport.html * igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-64: - shard-lnl: [FAIL][184] ([Intel XE#1874]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-2/igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-64.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-4/igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-64.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [ABORT][186] ([Intel XE#2625]) -> [PASS][187] +1 other test pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-432/igt@kms_pm_rpm@system-suspend-modeset.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-lnl: [FAIL][188] ([Intel XE#899]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_vrr@flip-basic-fastset: - shard-lnl: [FAIL][190] ([Intel XE#2443]) -> [PASS][191] +3 other tests pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-4/igt@kms_vrr@flip-basic-fastset.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-4/igt@kms_vrr@flip-basic-fastset.html * igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue: - shard-lnl: [FAIL][192] ([Intel XE#2667]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-8/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-7/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [TIMEOUT][194] ([Intel XE#1473]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][196] ([Intel XE#1473]) -> [PASS][197] +2 other tests pass [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-small.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-threads-large: - shard-bmg: [TIMEOUT][198] ([Intel XE#1473] / [Intel XE#2472]) -> [PASS][199] +1 other test pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-5/igt@xe_evict@evict-threads-large.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-7/igt@xe_evict@evict-threads-large.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-prefetch: - shard-bmg: [FAIL][200] ([Intel XE#3160]) -> [PASS][201] +1 other test pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-prefetch.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-prefetch.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm: - shard-lnl: [FAIL][202] ([Intel XE#3320]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-8/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-3/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch: - shard-lnl: [FAIL][204] ([Intel XE#3160]) -> [PASS][205] +2 other tests pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-5/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-3/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm: - shard-bmg: [SKIP][206] ([Intel XE#1130]) -> [PASS][207] +37 other tests pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html * igt@xe_live_ktest@xe_mocs: - shard-lnl: [SKIP][208] ([Intel XE#1192]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-1/igt@xe_live_ktest@xe_mocs.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-7/igt@xe_live_ktest@xe_mocs.html * igt@xe_oa@mmio-triggered-reports: - shard-bmg: [FAIL][210] ([Intel XE#2249]) -> [PASS][211] +1 other test pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@xe_oa@mmio-triggered-reports.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@xe_oa@mmio-triggered-reports.html - shard-lnl: [FAIL][212] ([Intel XE#2249]) -> [PASS][213] [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-7/igt@xe_oa@mmio-triggered-reports.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-6/igt@xe_oa@mmio-triggered-reports.html * igt@xe_oa@oa-regs-whitelisted: - shard-lnl: [FAIL][214] ([Intel XE#2514]) -> [PASS][215] [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-4/igt@xe_oa@oa-regs-whitelisted.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-5/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_oa@oa-regs-whitelisted@ccs-0: - shard-bmg: [FAIL][216] ([Intel XE#2514]) -> [PASS][217] +1 other test pass [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@xe_oa@oa-regs-whitelisted@ccs-0.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-6/igt@xe_oa@oa-regs-whitelisted@ccs-0.html * igt@xe_pm@d3hot-basic-exec: - shard-lnl: [DMESG-WARN][218] ([Intel XE#3184]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-2/igt@xe_pm@d3hot-basic-exec.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-2/igt@xe_pm@d3hot-basic-exec.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [SKIP][220] ([Intel XE#1130]) -> [PASS][221] +20 other tests pass [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@xe_pm@s3-basic-exec.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-436/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-mocs: - shard-dg2-set2: [ABORT][222] ([Intel XE#1794]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-432/igt@xe_pm@s3-mocs.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@xe_pm@s3-mocs.html * igt@xe_pm@s4-vm-bind-prefetch: - shard-lnl: [ABORT][224] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-8/igt@xe_pm@s4-vm-bind-prefetch.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][226] ([Intel XE#1794]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-6/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_tlb@basic-tlb: - shard-lnl: [CRASH][228] ([Intel XE#3212]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-8/igt@xe_tlb@basic-tlb.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-6/igt@xe_tlb@basic-tlb.html #### Warnings #### * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [SKIP][230] ([Intel XE#2890]) -> [SKIP][231] ([Intel XE#1124]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][232] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][233] ([Intel XE#1124]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][234] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][235] ([Intel XE#3007]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html - shard-dg2-set2: [SKIP][236] ([Intel XE#2191]) -> [SKIP][237] ([Intel XE#2423] / [i915#2575]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-1-displays-2160x1440p: - shard-bmg: [SKIP][238] ([Intel XE#3007]) -> [SKIP][239] ([Intel XE#367]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html - shard-dg2-set2: [SKIP][240] ([Intel XE#2423] / [i915#2575]) -> [SKIP][241] ([Intel XE#367]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][242] ([Intel XE#367]) -> [SKIP][243] ([Intel XE#3007]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][244] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][245] ([Intel XE#2890]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-bmg: [SKIP][246] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][247] ([Intel XE#2887]) +3 other tests skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-4/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html - shard-dg2-set2: [SKIP][248] ([Intel XE#2890]) -> [SKIP][249] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-464/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][250] ([Intel XE#2887]) -> [SKIP][251] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][252] ([Intel XE#1195] / [Intel XE#3113]) -> [INCOMPLETE][253] ([Intel XE#1195] / [Intel XE#3124]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][254] ([Intel XE#2724]) -> [SKIP][255] ([Intel XE#2231] / [Intel XE#2890]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@kms_cdclk@mode-transition-all-outputs.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html - shard-dg2-set2: [SKIP][256] ([Intel XE#314]) -> [SKIP][257] ([Intel XE#2351] / [Intel XE#2890]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-bmg: [SKIP][258] ([Intel XE#3007]) -> [SKIP][259] ([Intel XE#2325]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_chamelium_color@ctm-blue-to-red.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-8/igt@kms_chamelium_color@ctm-blue-to-red.html - shard-dg2-set2: [SKIP][260] ([Intel XE#2423] / [i915#2575]) -> [SKIP][261] ([Intel XE#306]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_chamelium_color@ctm-blue-to-red.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-433/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-bmg: [SKIP][262] ([Intel XE#3007]) -> [SKIP][263] ([Intel XE#2252]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-4/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html - shard-dg2-set2: [SKIP][264] ([Intel XE#2423] / [i915#2575]) -> [SKIP][265] ([Intel XE#373]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-464/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-dg2-set2: [SKIP][266] ([Intel XE#373]) -> [SKIP][267] ([Intel XE#2423] / [i915#2575]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-storm.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-storm.html - shard-bmg: [SKIP][268] ([Intel XE#2252]) -> [SKIP][269] ([Intel XE#3007]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-storm.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_content_protection@atomic: - shard-bmg: [FAIL][270] ([Intel XE#1178]) -> [INCOMPLETE][271] ([Intel XE#2715]) +1 other test incomplete [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-6/igt@kms_content_protection@atomic.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-2/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][272] ([Intel XE#2390]) -> [SKIP][273] ([Intel XE#3007]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@kms_content_protection@dp-mst-type-0.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: [SKIP][274] ([Intel XE#3007]) -> [SKIP][275] ([Intel XE#2390]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1.html - shard-dg2-set2: [SKIP][276] ([Intel XE#2423] / [i915#2575]) -> [SKIP][277] ([Intel XE#307]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_content_protection@dp-mst-type-1.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg2-set2: [INCOMPLETE][278] ([Intel XE#1195] / [Intel XE#2715]) -> [FAIL][279] ([Intel XE#1178]) +1 other test fail [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-434/igt@kms_content_protection@legacy.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-464/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-bmg: [SKIP][280] ([Intel XE#2320]) -> [SKIP][281] ([Intel XE#3007]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: [SKIP][282] ([Intel XE#2423] / [i915#2575]) -> [SKIP][283] ([Intel XE#455]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_cursor_crc@cursor-random-max-size.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-436/igt@kms_cursor_crc@cursor-random-max-size.html - shard-bmg: [SKIP][284] ([Intel XE#3007]) -> [SKIP][285] ([Intel XE#2320]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_cursor_crc@cursor-random-max-size.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-6/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: [SKIP][286] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][287] ([Intel XE#2141]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-bmg: [SKIP][288] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][289] ([Intel XE#2231] / [Intel XE#2890]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html - shard-dg2-set2: [SKIP][290] ([Intel XE#455]) -> [SKIP][291] ([Intel XE#2890]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-bmg: [SKIP][292] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][293] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][294] ([Intel XE#2890]) -> [SKIP][295] ([Intel XE#455]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: [SKIP][296] ([Intel XE#2423] / [i915#2575]) -> [SKIP][297] ([i915#5274]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_force_connector_basic@prune-stale-modes.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][298] ([Intel XE#2311]) -> [SKIP][299] ([Intel XE#2231] / [Intel XE#2890]) +4 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][300] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][301] ([Intel XE#2333]) +3 other tests fail [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [FAIL][302] ([Intel XE#2333]) -> [SKIP][303] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render: - shard-bmg: [SKIP][304] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][305] ([Intel XE#2311]) +6 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html - shard-dg2-set2: [SKIP][306] ([Intel XE#2890]) -> [SKIP][307] ([Intel XE#651]) +4 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][308] ([Intel XE#651]) -> [SKIP][309] ([Intel XE#2351] / [Intel XE#2890]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary: - shard-dg2-set2: [SKIP][310] ([Intel XE#651]) -> [SKIP][311] ([Intel XE#2890]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: - shard-bmg: [SKIP][312] ([Intel XE#2313]) -> [SKIP][313] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html - shard-dg2-set2: [SKIP][314] ([Intel XE#653]) -> [SKIP][315] ([Intel XE#2890]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][316] ([Intel XE#2890]) -> [SKIP][317] ([Intel XE#653]) +3 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-bmg: [SKIP][318] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][319] ([Intel XE#2313]) +3 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][320] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][321] ([Intel XE#2934]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_joiner@basic-force-ultra-joiner.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-8/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg2-set2: [SKIP][322] ([Intel XE#2890]) -> [SKIP][323] ([Intel XE#2925]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_joiner@basic-force-ultra-joiner.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-433/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-dg2-set2: [SKIP][324] ([Intel XE#2423] / [i915#2575]) -> [ABORT][325] ([Intel XE#1035] / [Intel XE#2625]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_plane@plane-panning-bottom-right-suspend.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-432/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [FAIL][326] ([Intel XE#616]) -> [SKIP][327] ([Intel XE#2423] / [i915#2575]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-464/igt@kms_plane_cursor@viewport.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_plane_cursor@viewport.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-bmg: [SKIP][328] ([Intel XE#3007]) -> [SKIP][329] ([Intel XE#2763]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html - shard-dg2-set2: [SKIP][330] ([Intel XE#2423] / [i915#2575]) -> [SKIP][331] ([Intel XE#2763] / [Intel XE#455]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-bmg: [SKIP][332] ([Intel XE#2763]) -> [SKIP][333] ([Intel XE#3007]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: [SKIP][334] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][335] ([Intel XE#870]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_pm_backlight@bad-brightness.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-8/igt@kms_pm_backlight@bad-brightness.html - shard-dg2-set2: [SKIP][336] ([Intel XE#2890]) -> [SKIP][337] ([Intel XE#870]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-435/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: [SKIP][338] ([Intel XE#1439] / [Intel XE#3141]) -> [SKIP][339] ([Intel XE#2446]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][340] ([Intel XE#2890]) -> [SKIP][341] ([Intel XE#1489]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-433/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-bmg: [SKIP][342] ([Intel XE#1489]) -> [SKIP][343] ([Intel XE#2231] / [Intel XE#2890]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html - shard-dg2-set2: [SKIP][344] ([Intel XE#1489]) -> [SKIP][345] ([Intel XE#2890]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-432/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: [SKIP][346] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][347] ([Intel XE#1489]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][348] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][349] ([Intel XE#2351] / [Intel XE#2890]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-plane-onoff.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-cursor-render: - shard-dg2-set2: [SKIP][350] ([Intel XE#2890]) -> [SKIP][351] ([Intel XE#2850] / [Intel XE#929]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_psr@fbc-psr2-cursor-render.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_psr@fbc-psr2-cursor-render.html * igt@kms_psr@pr-sprite-render: - shard-bmg: [SKIP][352] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][353] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_psr@pr-sprite-render.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-7/igt@kms_psr@pr-sprite-render.html * igt@kms_psr@psr2-basic: - shard-dg2-set2: [SKIP][354] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][355] ([Intel XE#2890]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-463/igt@kms_psr@psr2-basic.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_psr@psr2-basic.html - shard-bmg: [SKIP][356] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][357] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-6/igt@kms_psr@psr2-basic.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_psr@psr2-basic.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: [SKIP][358] ([Intel XE#3007]) -> [SKIP][359] ([Intel XE#2329]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg2-set2: [SKIP][360] ([Intel XE#2423] / [i915#2575]) -> [SKIP][361] ([Intel XE#327]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-full: - shard-bmg: [SKIP][362] ([Intel XE#3007]) -> [SKIP][363] ([Intel XE#2413]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-full.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][364] ([Intel XE#330]) -> [SKIP][365] ([Intel XE#2423] / [i915#2575]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@kms_tv_load_detect@load-detect.html - shard-bmg: [SKIP][366] ([Intel XE#2450]) -> [SKIP][367] ([Intel XE#3007]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-5/igt@kms_tv_load_detect@load-detect.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@kms_tv_load_detect@load-detect.html * igt@xe_eudebug@basic-read-event: - shard-bmg: [SKIP][368] ([Intel XE#1130]) -> [SKIP][369] ([Intel XE#2905]) +2 other tests skip [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@xe_eudebug@basic-read-event.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-6/igt@xe_eudebug@basic-read-event.html * igt@xe_eudebug_online@resume-dss: - shard-bmg: [SKIP][370] ([Intel XE#2905]) -> [SKIP][371] ([Intel XE#1130]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-2/igt@xe_eudebug_online@resume-dss.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@xe_eudebug_online@resume-dss.html * igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram: - shard-dg2-set2: [SKIP][372] ([Intel XE#1130]) -> [SKIP][373] ([Intel XE#2905]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-433/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][374] ([Intel XE#2322]) -> [SKIP][375] ([Intel XE#1130]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-4/igt@xe_exec_basic@multigpu-once-null-rebind.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_exec_basic@multigpu-once-userptr: - shard-bmg: [SKIP][376] ([Intel XE#1130]) -> [SKIP][377] ([Intel XE#2322]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@xe_exec_basic@multigpu-once-userptr.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-6/igt@xe_exec_basic@multigpu-once-userptr.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch: - shard-dg2-set2: [SKIP][378] ([Intel XE#288]) -> [SKIP][379] ([Intel XE#1130]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch.html * igt@xe_exec_fault_mode@twice-basic-prefetch: - shard-dg2-set2: [SKIP][380] ([Intel XE#1130]) -> [SKIP][381] ([Intel XE#288]) +3 other tests skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@xe_exec_fault_mode@twice-basic-prefetch.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-434/igt@xe_exec_fault_mode@twice-basic-prefetch.html * igt@xe_oa@enable-disable: - shard-dg2-set2: [SKIP][382] ([Intel XE#2541]) -> [SKIP][383] ([Intel XE#1130]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-463/igt@xe_oa@enable-disable.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@xe_oa@enable-disable.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-bmg: [SKIP][384] ([Intel XE#2284]) -> [SKIP][385] ([Intel XE#1130]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-7/igt@xe_pm@s4-d3cold-basic-exec.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-5/igt@xe_pm@s4-d3cold-basic-exec.html - shard-dg2-set2: [SKIP][386] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][387] ([Intel XE#1130]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-464/igt@xe_pm@s4-d3cold-basic-exec.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-463/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][388] ([Intel XE#1130]) -> [SKIP][389] ([Intel XE#944]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@xe_query@multigpu-query-uc-fw-version-guc.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-464/igt@xe_query@multigpu-query-uc-fw-version-guc.html - shard-bmg: [SKIP][390] ([Intel XE#1130]) -> [SKIP][391] ([Intel XE#944]) [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-8/igt@xe_query@multigpu-query-uc-fw-version-guc.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-4/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_tlb@basic-tlb: - shard-dg2-set2: [SKIP][392] ([Intel XE#1130]) -> [FAIL][393] ([Intel XE#2922]) [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-433/igt@xe_tlb@basic-tlb.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-434/igt@xe_tlb@basic-tlb.html [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#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#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#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1471]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1471 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [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#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [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#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2467 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2667 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [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#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890 [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#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#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3160]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3160 [Intel XE#3179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3179 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#3212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3212 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3312 [Intel XE#3320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3320 [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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8091 -> IGTPW_12015 * Linux: xe-2149-54ceaf112b111612f3a7430132b2395fcce62414 -> xe-2152-9c4962db90300e1d8daca8ed54195bc31d0ee932 IGTPW_12015: 12015 IGT_8091: 8091 xe-2149-54ceaf112b111612f3a7430132b2395fcce62414: 54ceaf112b111612f3a7430132b2395fcce62414 xe-2152-9c4962db90300e1d8daca8ed54195bc31d0ee932: 9c4962db90300e1d8daca8ed54195bc31d0ee932 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/index.html [-- Attachment #2: Type: text/html, Size: 117301 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ✗ CI.xeFULL: failure for scripts/generate_iga64_codes: prevent objcopy from modifying the input file 2024-11-04 8:11 ` ✗ CI.xeFULL: " Patchwork @ 2024-11-05 16:30 ` Kamil Konieczny 0 siblings, 0 replies; 8+ messages in thread From: Kamil Konieczny @ 2024-11-05 16:30 UTC (permalink / raw) To: igt-dev; +Cc: Jeff Dagenais, I915-ci-infra Hi igt-dev, On 2024-11-04 at 08:11:48 -0000, Patchwork wrote: > == Series Details == > > Series: scripts/generate_iga64_codes: prevent objcopy from modifying the input file > URL : https://patchwork.freedesktop.org/series/140771/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8091_full -> XEIGTPW_12015_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_12015_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_12015_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_12015_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: > - shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html > > * igt@kms_hdr@brightness-with-hdr@pipe-a-dp-4: > - shard-dg2-set2: NOTRUN -> [FAIL][3] > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-466/igt@kms_hdr@brightness-with-hdr@pipe-a-dp-4.html > > * igt@xe_exec_fault_mode@once-userptr-imm: > - shard-lnl: [PASS][4] -> [FAIL][5] > [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-5/igt@xe_exec_fault_mode@once-userptr-imm.html > [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-2/igt@xe_exec_fault_mode@once-userptr-imm.html > > * igt@xe_module_load@many-reload: > - shard-lnl: [PASS][6] -> [ABORT][7] > [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-lnl-5/igt@xe_module_load@many-reload.html > [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-5/igt@xe_module_load@many-reload.html > > * igt@xe_sriov_flr@flr-vf1-clear: > - shard-dg2-set2: NOTRUN -> [SKIP][8] +2 other tests skip > [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-433/igt@xe_sriov_flr@flr-vf1-clear.html > > * igt@xe_vm@bind-array-enobufs: > - shard-dg2-set2: [PASS][9] -> [FAIL][10] > [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8091/shard-dg2-466/igt@xe_vm@bind-array-enobufs.html > [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-dg2-464/igt@xe_vm@bind-array-enobufs.html > These are unrelated to change in scripts. > > New tests > --------- > > New tests have been introduced between XEIGT_8091_full and XEIGTPW_12015_full: > > ### New IGT tests (2) ### > > * igt@fbdev@pan: > - Statuses : 3 pass(s) > - Exec time: [0.05] s > > * igt@kms_pm_lpsp@kms-lpsp@pipe-a-edp-1: > - Statuses : 1 pass(s) > - Exec time: [0.18] s > This definitly do not come from this patch. Regards, Kamil > > > Known issues > ------------ > > Here are the changes found in XEIGTPW_12015_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: > - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1466]) > [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/shard-lnl-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html > ...cut... > [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 > [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 > [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 > > > Build changes > ------------- > > * IGT: IGT_8091 -> IGTPW_12015 > * Linux: xe-2149-54ceaf112b111612f3a7430132b2395fcce62414 -> xe-2152-9c4962db90300e1d8daca8ed54195bc31d0ee932 > > IGTPW_12015: 12015 > IGT_8091: 8091 > xe-2149-54ceaf112b111612f3a7430132b2395fcce62414: 54ceaf112b111612f3a7430132b2395fcce62414 > xe-2152-9c4962db90300e1d8daca8ed54195bc31d0ee932: 9c4962db90300e1d8daca8ed54195bc31d0ee932 > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12015/index.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] scripts/generate_iga64_codes: prevent objcopy from modifying the input file 2024-10-30 18:40 [PATCH i-g-t] scripts/generate_iga64_codes: prevent objcopy from modifying the input file Jeff Dagenais ` (3 preceding siblings ...) 2024-11-04 8:11 ` ✗ CI.xeFULL: " Patchwork @ 2024-11-04 9:44 ` Hajda, Andrzej 4 siblings, 0 replies; 8+ messages in thread From: Hajda, Andrzej @ 2024-11-04 9:44 UTC (permalink / raw) To: Jeff Dagenais, igt-dev; +Cc: Jeff Dagenais W dniu 30.10.2024 o 19:40, Jeff Dagenais pisze: > This script uses objcopy in order to dump a section. Objcopy is meant > for copying and expects a second argument. Failing that, it uses the > input file as output. Even though there's no intented change to the > file, this operation still re-writes the file completely. > > In most cases, this re-writes the file as it was before. But in > cross-compilation cases, the "objcopy" program in the PATH used here > might be different than the toolchain which generated the ELF file. > > In all cases, this causes a racy re-build of the .a, and in the worst > case, the objcopy re-written .o and .a files are actually incompatible > with the cross-linker used downstream in the ninja build causing failure > to find all symbols from the libs passed to this script. > > ``` > ../lib/intel_batchbuffer.c:763: undefined reference to > `gen8_gpgpu_fillfunc' > ../lib/intel_batchbuffer.c:762: undefined reference to > `xehp_gpgpu_fillfunc' > [...] > ``` > > The intent of the command was just to extract info from the LIBS, not > modify them. Using /dev/null as output file ensures the input files will > not be modified. > > Signed-off-by: Jeff Dagenais <jeff.dagenais@gmail.com> Thx for the fix. Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com> Regards Andrzej > --- > scripts/generate_iga64_codes | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/generate_iga64_codes b/scripts/generate_iga64_codes > index d1e40b600..bbf1f7008 100755 > --- a/scripts/generate_iga64_codes > +++ b/scripts/generate_iga64_codes > @@ -37,7 +37,7 @@ ASMS=() > while read -d $'\0' asm; do > test -z "$asm" && continue > ASMS+=( "$asm" ) > -done < <(for f in $LIBS; do objcopy --dump-section .iga64_assembly=/dev/stdout $f.p/*.o; done) > +done < <(for f in $LIBS; do objcopy --dump-section .iga64_assembly=/dev/stdout $f.p/*.o /dev/null; done) > > # check if we need to recompile - checksum difference and compiler present > MD5_ASMS="$(md5sum <<< "${ASMS[@]}" | cut -b1-32)" ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-11-05 16:32 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-30 18:40 [PATCH i-g-t] scripts/generate_iga64_codes: prevent objcopy from modifying the input file Jeff Dagenais 2024-10-31 16:51 ` Kamil Konieczny 2024-11-04 6:29 ` ✓ CI.xeBAT: success for " Patchwork 2024-11-04 6:39 ` ✗ Fi.CI.BAT: failure " Patchwork 2024-11-05 16:32 ` Kamil Konieczny 2024-11-04 8:11 ` ✗ CI.xeFULL: " Patchwork 2024-11-05 16:30 ` Kamil Konieczny 2024-11-04 9:44 ` [PATCH i-g-t] " Hajda, Andrzej
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox