* [Patch v3] scripts/run-test: Keep original prune behaviour
@ 2024-10-25 18:29 george.zhang
2024-10-25 18:50 ` Kamil Konieczny
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: george.zhang @ 2024-10-25 18:29 UTC (permalink / raw)
To: kamil.konieczny
Cc: igt-dev, George Zhang, Leo Li, Alex Hung, Rodrigo Siqueira,
Nicholas Choi
From: George Zhang <george.zhang@amd.com>
The default prune behaviour of the runner settings was changed.
This change is to maintain the original behaviour of this script
while also enabling the prune mode to be overriden.
v2: added m to getopts
v3: fixed bm: -> b:m: in getopts
Fixes: 997bac8 ("runner/settings: set PRUNE_KEEP_ALL as default")
Cc: Leo Li <sunpeng.li@amd.com>
Cc: Alex Hung <alex.hung@amd.com>
Cc: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Cc: Nicholas Choi <nicholas.choi@amd.com>
Signed-off-by: George Zhang <george.zhang@amd.com>
---
scripts/run-tests.sh | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/scripts/run-tests.sh b/scripts/run-tests.sh
index cd03682b4..082ebaa5a 100755
--- a/scripts/run-tests.sh
+++ b/scripts/run-tests.sh
@@ -37,6 +37,7 @@ KERNEL_TREE=
USE_PIGLIT=0
RUNNER=
RESUME=
+PRUNE_MODE="keep-dynamic"
find_file() # basename <possible paths>
{
@@ -154,11 +155,12 @@ print_help() {
echo " test run with -R"
echo " (only valid for Piglit)"
echo " -p use Piglit instead of igt_runner"
+ echo " -m run test runner with prune mode(default: $PRUNE_MODE)"
echo ""
echo "Useful patterns for test filtering are described in the API documentation."
}
-while getopts ":c:dhk:lPr:st:T:vx:Rnpb:" opt; do
+while getopts ":c:dhk:lPr:st:T:vx:Rnpb:m:" opt; do
case $opt in
c) COV_ARGS="$COV_ARGS --collect-code-cov --collect-script $OPTARG " ;;
d) download_piglit; exit ;;
@@ -176,6 +178,7 @@ while getopts ":c:dhk:lPr:st:T:vx:Rnpb:" opt; do
n) NORETRY="--no-retry" ;;
p) USE_PIGLIT=1 ;;
b) FILTER="$FILTER -b $OPTARG" ;;
+ m) PRUNE_MODE="$OPTARG" ;;
:)
echo "Option -$OPTARG requires an argument."
exit 1
@@ -253,7 +256,7 @@ if [ "x$RESUME_RUN" != "x" ]; then
execute_runner 1 $RESUME $RESUME_ARGS $COV_ARGS "$RESULTS"
else
mkdir -p "$RESULTS"
- execute_runner 1 $RUNNER $RUN_ARGS -o -s "$RESULTS" $COV_ARGS $VERBOSE $FILTER
+ execute_runner 1 $RUNNER $RUN_ARGS -o -s "$RESULTS" $COV_ARGS $VERBOSE $FILTER --prune-mode $PRUNE_MODE
fi
if [ "$SUMMARY" = "html" ]; then
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [Patch v3] scripts/run-test: Keep original prune behaviour 2024-10-25 18:29 [Patch v3] scripts/run-test: Keep original prune behaviour george.zhang @ 2024-10-25 18:50 ` Kamil Konieczny 2024-10-25 20:26 ` ✓ Fi.CI.BAT: success for scripts/run-test: Keep original prune behaviour (rev3) Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Kamil Konieczny @ 2024-10-25 18:50 UTC (permalink / raw) To: igt-dev; +Cc: george.zhang, Leo Li, Alex Hung, Rodrigo Siqueira, Nicholas Choi Hi george.zhang, On 2024-10-25 at 14:29:44 -0400, george.zhang@amd.com wrote: > From: George Zhang <george.zhang@amd.com> > > The default prune behaviour of the runner settings was changed. > This change is to maintain the original behaviour of this script > while also enabling the prune mode to be overriden. > > v2: added m to getopts > > v3: fixed bm: -> b:m: in getopts > > Fixes: 997bac8 ("runner/settings: set PRUNE_KEEP_ALL as default") > Cc: Leo Li <sunpeng.li@amd.com> > Cc: Alex Hung <alex.hung@amd.com> > Cc: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com> > Cc: Nicholas Choi <nicholas.choi@amd.com> > Signed-off-by: George Zhang <george.zhang@amd.com> > --- > scripts/run-tests.sh | 7 +++++-- > 1 file changed, 5 insertions(+), 2 deletions(-) > > diff --git a/scripts/run-tests.sh b/scripts/run-tests.sh > index cd03682b4..082ebaa5a 100755 > --- a/scripts/run-tests.sh > +++ b/scripts/run-tests.sh > @@ -37,6 +37,7 @@ KERNEL_TREE= > USE_PIGLIT=0 > RUNNER= > RESUME= > +PRUNE_MODE="keep-dynamic" > > find_file() # basename <possible paths> > { > @@ -154,11 +155,12 @@ print_help() { > echo " test run with -R" > echo " (only valid for Piglit)" > echo " -p use Piglit instead of igt_runner" > + echo " -m run test runner with prune mode(default: $PRUNE_MODE)" > echo "" > echo "Useful patterns for test filtering are described in the API documentation." > } > > -while getopts ":c:dhk:lPr:st:T:vx:Rnpb:" opt; do > +while getopts ":c:dhk:lPr:st:T:vx:Rnpb:m:" opt; do Now it LGTM, Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > case $opt in > c) COV_ARGS="$COV_ARGS --collect-code-cov --collect-script $OPTARG " ;; > d) download_piglit; exit ;; > @@ -176,6 +178,7 @@ while getopts ":c:dhk:lPr:st:T:vx:Rnpb:" opt; do > n) NORETRY="--no-retry" ;; > p) USE_PIGLIT=1 ;; > b) FILTER="$FILTER -b $OPTARG" ;; > + m) PRUNE_MODE="$OPTARG" ;; > :) > echo "Option -$OPTARG requires an argument." > exit 1 > @@ -253,7 +256,7 @@ if [ "x$RESUME_RUN" != "x" ]; then > execute_runner 1 $RESUME $RESUME_ARGS $COV_ARGS "$RESULTS" > else > mkdir -p "$RESULTS" > - execute_runner 1 $RUNNER $RUN_ARGS -o -s "$RESULTS" $COV_ARGS $VERBOSE $FILTER > + execute_runner 1 $RUNNER $RUN_ARGS -o -s "$RESULTS" $COV_ARGS $VERBOSE $FILTER --prune-mode $PRUNE_MODE > fi > > if [ "$SUMMARY" = "html" ]; then > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for scripts/run-test: Keep original prune behaviour (rev3) 2024-10-25 18:29 [Patch v3] scripts/run-test: Keep original prune behaviour george.zhang 2024-10-25 18:50 ` Kamil Konieczny @ 2024-10-25 20:26 ` Patchwork 2024-10-25 20:36 ` ✓ CI.xeBAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-10-25 20:26 UTC (permalink / raw) To: george.zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2905 bytes --] == Series Details == Series: scripts/run-test: Keep original prune behaviour (rev3) URL : https://patchwork.freedesktop.org/series/140446/ State : success == Summary == CI Bug Log - changes from IGT_8086 -> IGTPW_11986 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/index.html Participating hosts (46 -> 45) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_11986 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_selftest@live: - bat-arlh-3: [ABORT][1] ([i915#12133]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/bat-arlh-3/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/bat-arlh-3/igt@i915_selftest@live.html - bat-adlp-6: [INCOMPLETE][3] ([i915#9413]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/bat-adlp-6/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/bat-adlp-6/igt@i915_selftest@live.html - bat-twl-2: [DMESG-WARN][5] ([i915#12133]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/bat-twl-2/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/bat-twl-2/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_mocs: - bat-twl-2: [DMESG-WARN][7] -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/bat-twl-2/igt@i915_selftest@live@gt_mocs.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/bat-twl-2/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [ABORT][9] ([i915#12061]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/bat-arlh-3/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/bat-arlh-3/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8086 -> IGTPW_11986 CI-20190529: 20190529 CI_DRM_15600: 263b21a91964ddc599f4f85cf3511b0aafd2028e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11986: e56435971ab28c341fbac9a6f59185125537f4f6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8086: 18939acec2446c6644644186b090d16e366af8bc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/index.html [-- Attachment #2: Type: text/html, Size: 3645 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.xeBAT: success for scripts/run-test: Keep original prune behaviour (rev3) 2024-10-25 18:29 [Patch v3] scripts/run-test: Keep original prune behaviour george.zhang 2024-10-25 18:50 ` Kamil Konieczny 2024-10-25 20:26 ` ✓ Fi.CI.BAT: success for scripts/run-test: Keep original prune behaviour (rev3) Patchwork @ 2024-10-25 20:36 ` Patchwork 2024-10-26 3:44 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-10-27 11:00 ` ✗ CI.xeFULL: " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-10-25 20:36 UTC (permalink / raw) To: george.zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5096 bytes --] == Series Details == Series: scripts/run-test: Keep original prune behaviour (rev3) URL : https://patchwork.freedesktop.org/series/140446/ State : success == Summary == CI Bug Log - changes from XEIGT_8086_BAT -> XEIGTPW_11986_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11986_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#1861]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@xe_exec_fault_mode@twice-invalid-userptr-fault: - bat-pvc-2: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#3230]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-pvc-2/igt@xe_exec_fault_mode@twice-invalid-userptr-fault.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/bat-pvc-2/igt@xe_exec_fault_mode@twice-invalid-userptr-fault.html * igt@xe_exec_reset@cm-close-fd-no-exec: - bat-dg2-oem2: [PASS][5] -> [DMESG-WARN][6] ([Intel XE#3230]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-dg2-oem2/igt@xe_exec_reset@cm-close-fd-no-exec.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/bat-dg2-oem2/igt@xe_exec_reset@cm-close-fd-no-exec.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - bat-lnl-2: NOTRUN -> [SKIP][7] ([Intel XE#2229]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/bat-lnl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_migrate: - bat-dg2-oem2: [PASS][8] -> [SKIP][9] ([Intel XE#1192]) +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-pvc-2: NOTRUN -> [SKIP][10] ([Intel XE#2229]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/bat-pvc-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@xe_exec_compute_mode@twice-preempt-fence-early: - bat-pvc-2: [DMESG-WARN][11] -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-pvc-2/igt@xe_exec_compute_mode@twice-preempt-fence-early.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/bat-pvc-2/igt@xe_exec_compute_mode@twice-preempt-fence-early.html * igt@xe_exec_reset@cm-close-fd-no-exec: - bat-lnl-2: [DMESG-WARN][13] ([Intel XE#3230]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-lnl-2/igt@xe_exec_reset@cm-close-fd-no-exec.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/bat-lnl-2/igt@xe_exec_reset@cm-close-fd-no-exec.html * igt@xe_exec_threads@threads-mixed-shared-vm-basic: - bat-dg2-oem2: [DMESG-WARN][15] ([Intel XE#3230]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html * igt@xe_live_ktest@xe_bo: - bat-pvc-2: [SKIP][17] ([Intel XE#1192]) -> [PASS][18] +2 other tests pass [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-pvc-2/igt@xe_live_ktest@xe_bo.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/bat-pvc-2/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_migrate: - bat-lnl-2: [SKIP][19] ([Intel XE#1192]) -> [PASS][20] +2 other tests pass [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#3230]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3230 Build changes ------------- * IGT: IGT_8086 -> IGTPW_11986 IGTPW_11986: e56435971ab28c341fbac9a6f59185125537f4f6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8086: 18939acec2446c6644644186b090d16e366af8bc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2132-263b21a91964ddc599f4f85cf3511b0aafd2028e: 263b21a91964ddc599f4f85cf3511b0aafd2028e == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/index.html [-- Attachment #2: Type: text/html, Size: 6362 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for scripts/run-test: Keep original prune behaviour (rev3) 2024-10-25 18:29 [Patch v3] scripts/run-test: Keep original prune behaviour george.zhang ` (2 preceding siblings ...) 2024-10-25 20:36 ` ✓ CI.xeBAT: " Patchwork @ 2024-10-26 3:44 ` Patchwork 2024-10-28 13:59 ` Zhang, George 2024-10-28 15:18 ` Kamil Konieczny 2024-10-27 11:00 ` ✗ CI.xeFULL: " Patchwork 4 siblings, 2 replies; 9+ messages in thread From: Patchwork @ 2024-10-26 3:44 UTC (permalink / raw) To: george.zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100274 bytes --] == Series Details == Series: scripts/run-test: Keep original prune behaviour (rev3) URL : https://patchwork.freedesktop.org/series/140446/ State : failure == Summary == CI Bug Log - changes from IGT_8086_full -> IGTPW_11986_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11986_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11986_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. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11986_full: ### IGT changes ### #### Possible regressions #### * igt@i915_module_load@resize-bar: - shard-dg2: [PASS][1] -> [SKIP][2] +2 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-6/igt@i915_module_load@resize-bar.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@i915_module_load@resize-bar.html Known issues ------------ Here are the changes found in IGTPW_11986_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#6230]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [ABORT][7] ([i915#11814] / [i915#11815]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@busy@bcs0: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +6 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-8/igt@drm_fdinfo@busy@bcs0.html * igt@drm_fdinfo@busy@vcs1: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +5 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@drm_fdinfo@busy@vcs1.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +16 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@fbdev@eof: - shard-dg2: [PASS][11] -> [SKIP][12] ([i915#2582]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-3/igt@fbdev@eof.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@fbdev@eof.html * igt@gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#7697]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#3936]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#3936]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-2/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@gem_ccs@block-copy-compressed.html - shard-tglu: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@gem_ccs@block-copy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-3/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@gem_ccs@block-multicopy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-3/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][22] ([i915#12392] / [i915#7297]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-3/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-dg1: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-19/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-2/igt@gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][28] ([i915#280]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-4/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#280]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][31] -> [ABORT][32] ([i915#7975] / [i915#8213]) +2 other tests abort [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg1-12/igt@gem_eio@hibernate.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4771]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-1/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@gem_exec_balancer@bonded-sync.html - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4771]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-2/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@nop: - shard-mtlp: [PASS][36] -> [DMESG-WARN][37] ([i915#12412]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-6/igt@gem_exec_balancer@nop.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-3/igt@gem_exec_balancer@nop.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#4525]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][39] ([i915#11965] / [i915#12558]) +1 other test fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@gem_exec_capture@capture.html * igt@gem_exec_capture@capture-invisible: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#6334]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@gem_exec_capture@capture-invisible.html - shard-rkl: NOTRUN -> [SKIP][41] ([i915#6334]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@gem_exec_capture@capture-invisible.html - shard-dg1: NOTRUN -> [SKIP][42] ([i915#6334]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-19/igt@gem_exec_capture@capture-invisible.html - shard-tglu: NOTRUN -> [SKIP][43] ([i915#6334]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#6334]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#6344]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][46] ([i915#11965] / [i915#12558]) +2 other tests fail [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-3/igt@gem_exec_capture@capture@vecs0-lmem0.html - shard-dg1: NOTRUN -> [FAIL][47] ([i915#11965] / [i915#12558]) +2 other tests fail [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-17/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_capture@capture@vecs1-smem: - shard-dg2: NOTRUN -> [FAIL][48] ([i915#11965]) +1 other test fail [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-3/igt@gem_exec_capture@capture@vecs1-smem.html * igt@gem_exec_fair@basic-deadline: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4473] / [i915#4771]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-solo: - shard-tglu: NOTRUN -> [FAIL][51] ([i915#2842]) +1 other test fail [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-2/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-pace: - shard-rkl: NOTRUN -> [FAIL][52] ([i915#2842]) +2 other tests fail [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@gem_exec_fair@basic-pace.html - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3539]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share: - shard-tglu: [PASS][54] -> [FAIL][55] ([i915#2842]) +1 other test fail [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-tglu-2/igt@gem_exec_fair@basic-pace-share.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@gem_exec_fair@basic-pace-share.html * igt@gem_exec_fair@basic-pace-solo: - shard-rkl: [PASS][56] -> [FAIL][57] ([i915#2842]) +1 other test fail [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4812]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@gem_exec_fence@submit.html - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4812]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-2/igt@gem_exec_fence@submit.html - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4812]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-1/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#3539] / [i915#4852]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#5107]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-4/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][63] +15 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-concurrent16: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#3281]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@gem_exec_reloc@basic-concurrent16.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3281]) +12 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@gem_exec_reloc@basic-gtt-read.html - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3281]) +10 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#3281]) +7 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_schedule@pi-common@vcs0: - shard-tglu-1: NOTRUN -> [FAIL][68] ([i915#12296]) +5 other tests fail [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@gem_exec_schedule@pi-common@vcs0.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4537] / [i915#4812]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4860]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4860]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4860]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-1/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4613]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#4613]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][75] ([i915#4613]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-5/igt@gem_lmem_swapping@smem-oom.html * igt@gem_mmap_gtt@big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4077]) +10 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@gem_mmap_gtt@big-copy-odd.html * igt@gem_mmap_gtt@flink-race: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4077]) +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-17/igt@gem_mmap_gtt@flink-race.html * igt@gem_mmap_gtt@ptrace: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4077]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-3/igt@gem_mmap_gtt@ptrace.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4083]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-11/igt@gem_mmap_wc@write-cpu-read-wc.html - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4083]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@gem_mmap_wc@write-cpu-read-wc.html - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4083]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_pwrite@basic-random: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3282]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@gem_pwrite@basic-random.html * igt@gem_pxp@fail-invalid-protected-context: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#4270]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-6/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4270]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-rkl: NOTRUN -> [SKIP][85] ([i915#4270]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-3/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4270]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4270]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#4270]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3282]) +5 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3282]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#8428]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-2/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#5190] / [i915#8428]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-11/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#4079]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-19/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#4079]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@gem_tiled_pread_pwrite.html - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4079]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@gem_tiled_pread_pwrite.html - shard-rkl: NOTRUN -> [SKIP][96] ([i915#3282]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#4879]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#3297]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html - shard-rkl: NOTRUN -> [SKIP][99] ([i915#3297]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#3282] / [i915#3297]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-13/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#3297]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3297] / [i915#4880]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html - shard-dg1: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#4880]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#3297]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#2527]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-2/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-large: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#2527] / [i915#2856]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-7/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#2527]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#2856]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@unaligned-access: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#2527] / [i915#2856]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: NOTRUN -> [ABORT][111] ([i915#9820]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: NOTRUN -> [ABORT][112] ([i915#10131] / [i915#10887] / [i915#9820]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [ABORT][113] ([i915#9820]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#6590]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#6590]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [WARN][116] ([i915#2681]) +4 other tests warn [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][117] ([i915#8346]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#11681]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@i915_pm_rps@thresholds-idle.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#7984]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@i915_power@sanity.html * igt@i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#5723]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@i915_query@test-query-geometry-subslices.html - shard-tglu: NOTRUN -> [SKIP][121] ([i915#5723]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@i915_query@test-query-geometry-subslices.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4212]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#4212]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-3/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4212]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#8709]) +7 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#8709]) +11 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][127] +13 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#5286]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#5286]) +4 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5286]) +4 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#5286]) +4 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3638]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][133] ([i915#3638]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-19/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#5190] / [i915#9197]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#4538]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#4538] / [i915#5190]) +10 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][137] +76 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#6095]) +138 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#6095]) +54 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#6095]) +99 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#6095]) +184 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#12313]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6095]) +14 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#12313]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#6095]) +24 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#3742]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#4087]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#7828]) +8 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_chamelium_audio@hdmi-audio.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#7828]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][151] +24 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#7828]) +5 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#7828]) +6 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#7828]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#7828]) +4 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#9424]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#7118]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-4/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#7118] / [i915#9424]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-8/igt@kms_content_protection@type1.html - shard-dg1: NOTRUN -> [SKIP][160] ([i915#7116] / [i915#9424]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#7118] / [i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-2/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#11453] / [i915#3359]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#11453] / [i915#3359]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#3555]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#11453] / [i915#3359]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#11453] / [i915#3359]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#9197]) +11 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html - shard-rkl: NOTRUN -> [SKIP][168] ([i915#11453] / [i915#3359]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#8814]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#8814]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_edge_walk@64x64-right-edge: - shard-dg1: [PASS][171] -> [DMESG-WARN][172] ([i915#4423]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg1-14/igt@kms_cursor_edge_walk@64x64-right-edge.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@kms_cursor_edge_walk@64x64-right-edge.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#9809]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#4103]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-rkl: NOTRUN -> [SKIP][175] ([i915#4103]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#1769] / [i915#3555] / [i915#3804]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#3804]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3555]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#12402]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#12402]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-3/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#3840]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3840] / [i915#9688]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-3/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#3840]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#1839]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-3/igt@kms_feature_discovery@display-3x.html - shard-tglu: NOTRUN -> [SKIP][186] ([i915#1839]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-9/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#9337]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_feature_discovery@dp-mst.html - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#9337]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][189] ([i915#9337]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-19/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#9934]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#3637]) +4 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-6/igt@kms_flip@2x-nonexisting-fb.html - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3637]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-4/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-snb: NOTRUN -> [FAIL][193] ([i915#2122]) +1 other test fail [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-snb4/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#3637]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [FAIL][195] ([i915#2122]) +1 other test fail [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: [PASS][196] -> [FAIL][197] ([i915#2122]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html - shard-tglu: [PASS][198] -> [FAIL][199] ([i915#2122]) +1 other test fail [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-tglu-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp3: - shard-dg2: NOTRUN -> [FAIL][200] ([i915#2122]) +1 other test fail [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp3.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1: - shard-mtlp: [PASS][201] -> [FAIL][202] ([i915#2122]) +2 other tests fail [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1: - shard-mtlp: [PASS][203] -> [FAIL][204] ([i915#12138]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html * igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1: - shard-mtlp: NOTRUN -> [FAIL][205] ([i915#11989]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html * igt@kms_flip@modeset-vs-vblank-race: - shard-dg1: [PASS][206] -> [FAIL][207] ([i915#12403] / [i915#12431] / [i915#12541]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg1-13/igt@kms_flip@modeset-vs-vblank-race.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@kms_flip@modeset-vs-vblank-race.html * igt@kms_flip@modeset-vs-vblank-race@b-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][208] ([i915#12431]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@kms_flip@modeset-vs-vblank-race@b-hdmi-a4.html * igt@kms_flip@plain-flip-fb-recreate: - shard-dg2: [PASS][209] -> [SKIP][210] ([i915#5354]) +4 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-11/igt@kms_flip@plain-flip-fb-recreate.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-ts-check: - shard-tglu: NOTRUN -> [FAIL][211] ([i915#2122]) +1 other test fail [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][212] ([i915#2672] / [i915#3555]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#2672] / [i915#3555]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#2672]) +6 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555] / [i915#8813]) +4 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-dg2: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#5190]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][219] ([i915#2587] / [i915#2672] / [i915#3555]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-tglu: NOTRUN -> [SKIP][220] ([i915#2587] / [i915#2672] / [i915#3555]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#2587] / [i915#2672]) +4 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#2672] / [i915#3555]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#2672]) +2 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8810] / [i915#8813]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8810]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling: - shard-dg2: [PASS][226] -> [SKIP][227] ([i915#3555]) +2 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555]) +2 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#2672] / [i915#8813]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#2587] / [i915#2672]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#8708]) +21 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-snb: [PASS][233] -> [SKIP][234] +13 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#8708]) +8 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][236] ([i915#5439]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#10055]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#3458]) +14 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#10433] / [i915#3458]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][240] +23 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#5354]) +52 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#1825]) +30 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#1825]) +16 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#9766]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][245] ([i915#9766]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#8708]) +16 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#3023]) +17 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][248] +103 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][249] +37 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#3458]) +6 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_hdmi_inject@inject-audio: - shard-mtlp: [PASS][251] -> [SKIP][252] ([i915#433]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-8/igt@kms_hdmi_inject@inject-audio.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@kms_hdmi_inject@inject-audio.html - shard-dg2: [PASS][253] -> [SKIP][254] ([i915#433]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-5/igt@kms_hdmi_inject@inject-audio.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-11/igt@kms_hdmi_inject@inject-audio.html - shard-rkl: [PASS][255] -> [SKIP][256] ([i915#433]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-4/igt@kms_hdmi_inject@inject-audio.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html - shard-dg1: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-19/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#12394]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-17/igt@kms_joiner@basic-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][261] ([i915#12394]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-5/igt@kms_joiner@basic-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#10656]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-1/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][263] ([i915#10656]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_joiner@basic-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][264] ([i915#12394]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#12394]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_lease@lease-revoke: - shard-dg2: [PASS][266] -> [SKIP][267] ([i915#9197]) +24 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-1/igt@kms_lease@lease-revoke.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_lease@lease-revoke.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#1839]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#6301]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-8/igt@kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][270] ([i915#6301]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#8825]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane@plane-position-hole: - shard-dg2: [PASS][272] -> [SKIP][273] ([i915#8825]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-5/igt@kms_plane@plane-position-hole.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane@plane-position-hole.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-dg2: [PASS][274] -> [SKIP][275] ([i915#7294]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-1/igt@kms_plane_alpha_blend@alpha-transparent-fb.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8821]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [PASS][277] -> [FAIL][278] ([i915#8292]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][279] ([i915#8292]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][280] ([i915#8292]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@invalid-parameters: - shard-dg2: [PASS][281] -> [SKIP][282] ([i915#8152] / [i915#9423]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-11/igt@kms_plane_scaling@invalid-parameters.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_scaling@invalid-parameters.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#12247] / [i915#9423]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#12247]) +8 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#12247]) +27 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - shard-dg2: [PASS][286] -> [SKIP][287] ([i915#12247] / [i915#8152] / [i915#9423]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a: - shard-dg2: [PASS][288] -> [SKIP][289] ([i915#12247]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d: - shard-dg2: [PASS][290] -> [SKIP][291] ([i915#12247] / [i915#8152]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#3555]) +4 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-dg1: NOTRUN -> [SKIP][293] ([i915#12247]) +8 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#12247]) +9 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#12247] / [i915#6953]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#6953] / [i915#8152] / [i915#9423]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][297] ([i915#12247] / [i915#3555]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][298] ([i915#12247] / [i915#3555]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#12247]) +10 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#12247] / [i915#6953]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#12247]) +13 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#8152]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#5354]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#9685]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_pm_dc@dc5-psr.html - shard-dg2: NOTRUN -> [SKIP][306] ([i915#9685]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][307] -> [SKIP][308] ([i915#4281]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#8430]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][310] ([i915#8430]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#9519]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#9519]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][313] -> [SKIP][314] ([i915#9519]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#9519]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html - shard-rkl: [PASS][316] -> [SKIP][317] ([i915#9519]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#6524] / [i915#6805]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html - shard-rkl: NOTRUN -> [SKIP][319] ([i915#6524]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_prime@basic-crc-hybrid.html - shard-dg1: NOTRUN -> [SKIP][320] ([i915#6524]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-19/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-tglu: NOTRUN -> [SKIP][321] ([i915#6524]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-5/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][322] ([i915#11520]) +3 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-snb1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#11520]) +3 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#9808]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#11520]) +6 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][326] ([i915#11520]) +5 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-2/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][327] ([i915#12316]) +5 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-1/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#11520]) +8 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][329] ([i915#11520]) +6 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-19/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][330] ([i915#9683]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-17/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#9683]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#9683]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#9732]) +8 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_psr@fbc-pr-cursor-plane-onoff.html - shard-dg1: NOTRUN -> [SKIP][334] ([i915#1072] / [i915#9732]) +13 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@kms_psr@fbc-pr-cursor-plane-onoff.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][335] ([i915#9688]) +10 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@psr-primary-render: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#9732]) +14 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@kms_psr@psr-primary-render.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#1072] / [i915#9732]) +11 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#1072] / [i915#9732]) +19 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][339] ([i915#5289]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][340] ([i915#5289]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#5289]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#5289]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#11131] / [i915#4235] / [i915#5190]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#3555]) +2 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@kms_scaling_modes@scaling-mode-center.html - shard-rkl: NOTRUN -> [SKIP][345] ([i915#3555]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@basic: - shard-dg1: [PASS][346] -> [FAIL][347] ([i915#5465]) +2 other tests fail [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg1-19/igt@kms_setmode@basic.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@kms_setmode@basic.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][348] ([IGT#2]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#8623]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][350] ([i915#8623]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@lobf: - shard-tglu: NOTRUN -> [SKIP][351] ([i915#11920]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-dg2: [PASS][352] -> [SKIP][353] ([i915#3555] / [i915#9906]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-10/igt@kms_vrr@negative-basic.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-11/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#8808] / [i915#9906]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#9906]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][356] ([i915#2437]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#2437] / [i915#9412]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][358] ([i915#2437] / [i915#9412]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][359] ([i915#3291] / [i915#3708]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-1/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][360] ([i915#3708]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-8/igt@prime_vgem@fence-read-hang.html - shard-dg2: NOTRUN -> [SKIP][361] ([i915#3708]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-7/igt@prime_vgem@fence-read-hang.html - shard-dg1: NOTRUN -> [SKIP][362] ([i915#3708]) +1 other test skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][363] ([i915#3708]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#9917]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-8/igt@sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][365] ([i915#9917]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-2/igt@sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][366] ([i915#9917]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@sriov_basic@bind-unbind-vf.html - shard-mtlp: NOTRUN -> [SKIP][367] ([i915#9917]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-tglu: NOTRUN -> [SKIP][368] ([i915#9917]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-tglu: NOTRUN -> [FAIL][369] ([i915#12564] / [i915#9781]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-6/igt@syncobj_wait@invalid-wait-zero-handles.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][370] ([i915#7297]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_engines@invalid-engines: - shard-mtlp: [FAIL][372] ([i915#12031]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-8/igt@gem_ctx_engines@invalid-engines.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@gem_ctx_engines@invalid-engines.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][374] ([i915#12543] / [i915#5784]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg1-15/igt@gem_eio@reset-stress.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][376] ([i915#2846]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-3/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share: - shard-rkl: [FAIL][378] ([i915#2842]) -> [PASS][379] +1 other test pass [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-4/igt@gem_exec_fair@basic-pace-share.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-1/igt@gem_exec_fair@basic-pace-share.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][380] ([i915#7984]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-5/igt@i915_power@sanity.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-1/igt@i915_power@sanity.html * igt@kms_color@ctm-max: - shard-dg2: [SKIP][382] -> [PASS][383] +3 other tests pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_color@ctm-max.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_color@ctm-max.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - shard-dg2: [SKIP][384] ([i915#9197]) -> [PASS][385] +36 other tests pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1: - shard-snb: [FAIL][386] ([i915#2122]) -> [PASS][387] +5 other tests pass [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-snb1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-snb5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-suspend: - shard-dg2: [SKIP][388] ([i915#5354]) -> [PASS][389] +16 other tests pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_flip@flip-vs-suspend.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-8/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@plain-flip-fb-recreate: - shard-rkl: [FAIL][390] ([i915#2122]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-fb-recreate@b-edp1: - shard-mtlp: [FAIL][392] ([i915#2122]) -> [PASS][393] +3 other tests pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-6/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-3/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html * igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1: - shard-tglu: [FAIL][394] ([i915#2122]) -> [PASS][395] +4 other tests pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-tglu-6/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-mtlp: [FAIL][396] ([i915#11989] / [i915#2122]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-1/igt@kms_flip@plain-flip-ts-check-interruptible.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-8/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-rkl: [FAIL][398] ([i915#11989] / [i915#2122]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-7/igt@kms_flip@plain-flip-ts-check-interruptible.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-dg1: [FAIL][400] ([i915#11989] / [i915#12517] / [i915#2122]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg1-15/igt@kms_flip@plain-flip-ts-check-interruptible.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a4: - shard-dg1: [FAIL][402] ([i915#2122]) -> [PASS][403] +2 other tests pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg1-15/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a4.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a4.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-dg2: [SKIP][404] ([i915#3555]) -> [PASS][405] +4 other tests pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: [SKIP][406] ([i915#3555] / [i915#8228]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_plane@pixel-format: - shard-dg2: [SKIP][408] ([i915#8825]) -> [PASS][409] +1 other test pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_plane@pixel-format.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_plane@pixel-format.html - shard-tglu: [ABORT][410] ([i915#10354]) -> [PASS][411] +1 other test pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-tglu-2/igt@kms_plane@pixel-format.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@kms_plane@pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - shard-dg2: [SKIP][412] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d: - shard-dg2: [SKIP][414] ([i915#12247] / [i915#8152]) -> [PASS][415] +2 other tests pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-dg2: [SKIP][416] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-dg2: [SKIP][418] ([i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a: - shard-dg2: [SKIP][420] ([i915#12247]) -> [PASS][421] +8 other tests pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][422] ([i915#9295]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][424] ([i915#9519]) -> [PASS][425] +2 other tests pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][426] ([i915#9519]) -> [PASS][427] +2 other tests pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [FAIL][428] ([i915#11943]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-8/igt@perf_pmu@all-busy-idle-check-all.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@perf_pmu@all-busy-idle-check-all.html - shard-mtlp: [FAIL][430] ([i915#11943]) -> [PASS][431] [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-3/igt@perf_pmu@all-busy-idle-check-all.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-1/igt@perf_pmu@all-busy-idle-check-all.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][432] ([i915#9697] / [i915#9820]) -> [ABORT][433] ([i915#9820]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [ABORT][434] ([i915#9820]) -> [ABORT][435] ([i915#10887] / [i915#9820]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: [SKIP][436] -> [SKIP][437] ([i915#9197]) +3 other tests skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-11/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2: [SKIP][438] ([i915#9197]) -> [SKIP][439] +1 other test skip [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-90: - shard-dg2: [SKIP][440] ([i915#4538] / [i915#5190]) -> [SKIP][441] ([i915#5190] / [i915#9197]) +3 other tests skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-1/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: [SKIP][442] ([i915#5190] / [i915#9197]) -> [SKIP][443] ([i915#5190]) +2 other tests skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_big_fb@y-tiled-ad == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/index.html [-- Attachment #2: Type: text/html, Size: 108973 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: ✗ Fi.CI.IGT: failure for scripts/run-test: Keep original prune behaviour (rev3) 2024-10-26 3:44 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-10-28 13:59 ` Zhang, George 2024-10-28 15:18 ` Kamil Konieczny 1 sibling, 0 replies; 9+ messages in thread From: Zhang, George @ 2024-10-28 13:59 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 93767 bytes --] [AMD Official Use Only - AMD Internal Distribution Only] This CI test and the xeFULL tests seem to be failing for different tests. Can these be ignored or retriggered? Thanks, George From: Patchwork <patchwork@emeril.freedesktop.org> Sent: Friday, October 25, 2024 11:44 PM To: Zhang, George <George.Zhang@amd.com> Cc: igt-dev@lists.freedesktop.org Subject: ✗ Fi.CI.IGT: failure for scripts/run-test: Keep original prune behaviour (rev3) Patch Details Series: scripts/run-test: Keep original prune behaviour (rev3) URL: https://patchwork.freedesktop.org/series/140446/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/index.html CI Bug Log - changes from IGT_8086_full -> IGTPW_11986_full Summary FAILURE Serious unknown changes coming with IGTPW_11986_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11986_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/index.html Participating hosts (8 -> 8) No changes in participating hosts Possible new issues Here are the unknown changes that may have been introduced in IGTPW_11986_full: IGT changes Possible regressions * igt@i915_module_load@resize-bar: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-6/igt@i915_module_load@resize-bar.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@i915_module_load@resize-bar.html> +2 other tests skip Known issues Here are the changes found in IGTPW_11986_full that come from known issues: IGT changes Issues hit * igt@api_intel_bb@crc32: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@api_intel_bb@crc32.html> ([i915#6230]) * igt@api_intel_bb@object-reloc-keep-cache: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html> ([i915#8411]) * igt@api_intel_bb@object-reloc-purge-cache: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@api_intel_bb@object-reloc-purge-cache.html> ([i915#8411]) +1 other test skip * igt@device_reset@unbind-cold-reset-rebind: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@device_reset@unbind-cold-reset-rebind.html> ([i915#11078]) * igt@device_reset@unbind-reset-rebind: * shard-dg1: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html> ([i915#11814] / [i915#11815]) * igt@drm_fdinfo@busy@bcs0: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-8/igt@drm_fdinfo@busy@bcs0.html> ([i915#8414]) +6 other tests skip * igt@drm_fdinfo@busy@vcs1: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@drm_fdinfo@busy@vcs1.html> ([i915#8414]) +5 other tests skip * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html> ([i915#8414]) +16 other tests skip * igt@fbdev@eof: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-3/igt@fbdev@eof.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@fbdev@eof.html> ([i915#2582]) * igt@gem_basic@multigpu-create-close: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@gem_basic@multigpu-create-close.html> ([i915#7697]) * igt@gem_busy@semaphore: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@gem_busy@semaphore.html> ([i915#3936]) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-2/igt@gem_busy@semaphore.html> ([i915#3936]) * igt@gem_ccs@block-copy-compressed: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@gem_ccs@block-copy-compressed.html> ([i915#3555] / [i915#9323]) +1 other test skip * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@gem_ccs@block-copy-compressed.html> ([i915#3555] / [i915#9323]) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-3/igt@gem_ccs@block-copy-compressed.html> ([i915#3555] / [i915#9323]) +1 other test skip * igt@gem_ccs@block-multicopy-compressed: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@gem_ccs@block-multicopy-compressed.html> ([i915#9323]) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@gem_ccs@block-multicopy-compressed.html> ([i915#9323]) * igt@gem_ccs@block-multicopy-inplace: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-3/igt@gem_ccs@block-multicopy-inplace.html> ([i915#3555] / [i915#9323]) +1 other test skip * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0: * shard-dg2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-3/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html> ([i915#12392] / [i915#7297]) * igt@gem_ctx_persistence@heartbeat-hostile: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hostile.html> ([i915#8555]) +1 other test skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-19/igt@gem_ctx_persistence@heartbeat-hostile.html> ([i915#8555]) * igt@gem_ctx_persistence@legacy-engines-hostile-preempt: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html> ([i915#1099]) +1 other test skip * igt@gem_ctx_sseu@engines: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-2/igt@gem_ctx_sseu@engines.html> ([i915#280]) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@gem_ctx_sseu@engines.html> ([i915#280]) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-4/igt@gem_ctx_sseu@engines.html> ([i915#280]) +1 other test skip * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@gem_ctx_sseu@engines.html> ([i915#280]) * igt@gem_ctx_sseu@invalid-args: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@gem_ctx_sseu@invalid-args.html> ([i915#280]) +1 other test skip * igt@gem_eio@hibernate: * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg1-12/igt@gem_eio@hibernate.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@gem_eio@hibernate.html> ([i915#7975] / [i915#8213]) +2 other tests abort * igt@gem_exec_balancer@bonded-sync: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-1/igt@gem_exec_balancer@bonded-sync.html> ([i915#4771]) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@gem_exec_balancer@bonded-sync.html> ([i915#4771]) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-2/igt@gem_exec_balancer@bonded-sync.html> ([i915#4771]) * igt@gem_exec_balancer@nop: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-6/igt@gem_exec_balancer@nop.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-3/igt@gem_exec_balancer@nop.html> ([i915#12412]) * igt@gem_exec_balancer@parallel-balancer: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html> ([i915#4525]) +1 other test skip * igt@gem_exec_capture@capture: * shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@gem_exec_capture@capture.html> ([i915#11965] / [i915#12558]) +1 other test fail * igt@gem_exec_capture@capture-invisible: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@gem_exec_capture@capture-invisible.html> ([i915#6334]) +2 other tests skip * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@gem_exec_capture@capture-invisible.html> ([i915#6334]) +1 other test skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-19/igt@gem_exec_capture@capture-invisible.html> ([i915#6334]) +2 other tests skip * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@gem_exec_capture@capture-invisible.html> ([i915#6334]) +1 other test skip * igt@gem_exec_capture@capture-invisible@smem0: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@gem_exec_capture@capture-invisible@smem0.html> ([i915#6334]) +1 other test skip * igt@gem_exec_capture@capture-recoverable: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html> ([i915#6344]) * igt@gem_exec_capture@capture@vecs0-lmem0: * shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-3/igt@gem_exec_capture@capture@vecs0-lmem0.html> ([i915#11965] / [i915#12558]) +2 other tests fail * shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-17/igt@gem_exec_capture@capture@vecs0-lmem0.html> ([i915#11965] / [i915#12558]) +2 other tests fail * igt@gem_exec_capture@capture@vecs1-smem: * shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-3/igt@gem_exec_capture@capture@vecs1-smem.html> ([i915#11965]) +1 other test fail * igt@gem_exec_fair@basic-deadline: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@gem_exec_fair@basic-deadline.html> ([i915#4473] / [i915#4771]) * igt@gem_exec_fair@basic-none-rrul: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@gem_exec_fair@basic-none-rrul.html> ([i915#3539] / [i915#4852]) +2 other tests skip * igt@gem_exec_fair@basic-none-solo: * shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-2/igt@gem_exec_fair@basic-none-solo.html> ([i915#2842]) +1 other test fail * igt@gem_exec_fair@basic-pace: * shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@gem_exec_fair@basic-pace.html> ([i915#2842]) +2 other tests fail * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@gem_exec_fair@basic-pace.html> ([i915#3539]) * igt@gem_exec_fair@basic-pace-share: * shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-tglu-2/igt@gem_exec_fair@basic-pace-share.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@gem_exec_fair@basic-pace-share.html> ([i915#2842]) +1 other test fail * igt@gem_exec_fair@basic-pace-solo: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo.html> ([i915#2842]) +1 other test fail * igt@gem_exec_fence@submit: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@gem_exec_fence@submit.html> ([i915#4812]) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-2/igt@gem_exec_fence@submit.html> ([i915#4812]) * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-1/igt@gem_exec_fence@submit.html> ([i915#4812]) * igt@gem_exec_flush@basic-uc-rw-default: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@gem_exec_flush@basic-uc-rw-default.html> ([i915#3539] / [i915#4852]) +1 other test skip * igt@gem_exec_params@rsvd2-dirt: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-4/igt@gem_exec_params@rsvd2-dirt.html> ([i915#5107]) * igt@gem_exec_params@secure-non-master: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@gem_exec_params@secure-non-master.html> +15 other tests skip * igt@gem_exec_reloc@basic-concurrent16: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@gem_exec_reloc@basic-concurrent16.html> ([i915#3281]) +5 other tests skip * igt@gem_exec_reloc@basic-gtt-read: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@gem_exec_reloc@basic-gtt-read.html> ([i915#3281]) +12 other tests skip * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-read.html> ([i915#3281]) +10 other tests skip * igt@gem_exec_reloc@basic-write-gtt-active: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@gem_exec_reloc@basic-write-gtt-active.html> ([i915#3281]) +7 other tests skip * igt@gem_exec_schedule@pi-common@vcs0: * shard-tglu-1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@gem_exec_schedule@pi-common@vcs0.html> ([i915#12296]) +5 other tests fail * igt@gem_exec_schedule@preempt-queue-contexts-chain: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-contexts-chain.html> ([i915#4537] / [i915#4812]) * igt@gem_fence_thrash@bo-copy: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@gem_fence_thrash@bo-copy.html> ([i915#4860]) +2 other tests skip * igt@gem_fenced_exec_thrash@no-spare-fences: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences.html> ([i915#4860]) +2 other tests skip * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-1/igt@gem_fenced_exec_thrash@no-spare-fences.html> ([i915#4860]) +2 other tests skip * igt@gem_lmem_swapping@heavy-verify-multi-ccs: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> ([i915#4613]) * igt@gem_lmem_swapping@parallel-random-engines: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-engines.html> ([i915#4613]) * igt@gem_lmem_swapping@smem-oom: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-5/igt@gem_lmem_swapping@smem-oom.html> ([i915#4613]) +1 other test skip * igt@gem_mmap_gtt@big-copy-odd: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@gem_mmap_gtt@big-copy-odd.html> ([i915#4077]) +10 other tests skip * igt@gem_mmap_gtt@flink-race: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-17/igt@gem_mmap_gtt@flink-race.html> ([i915#4077]) +6 other tests skip * igt@gem_mmap_gtt@ptrace: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-3/igt@gem_mmap_gtt@ptrace.html> ([i915#4077]) +2 other tests skip * igt@gem_mmap_wc@write-cpu-read-wc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-11/igt@gem_mmap_wc@write-cpu-read-wc.html> ([i915#4083]) +3 other tests skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@gem_mmap_wc@write-cpu-read-wc.html> ([i915#4083]) +1 other test skip * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@gem_mmap_wc@write-cpu-read-wc.html> ([i915#4083]) * igt@gem_pwrite@basic-random: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@gem_pwrite@basic-random.html> ([i915#3282]) +2 other tests skip * igt@gem_pxp@fail-invalid-protected-context: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-6/igt@gem_pxp@fail-invalid-protected-context.html> ([i915#4270]) +2 other tests skip * igt@gem_pxp@regular-baseline-src-copy-readible: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@gem_pxp@regular-baseline-src-copy-readible.html> ([i915#4270]) +2 other tests skip * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-3/igt@gem_pxp@regular-baseline-src-copy-readible.html> ([i915#4270]) +2 other tests skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@gem_pxp@regular-baseline-src-copy-readible.html> ([i915#4270]) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@gem_pxp@regular-baseline-src-copy-readible.html> ([i915#4270]) * igt@gem_pxp@reject-modify-context-protection-off-2: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@gem_pxp@reject-modify-context-protection-off-2.html> ([i915#4270]) +1 other test skip * igt@gem_readwrite@beyond-eob: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@gem_readwrite@beyond-eob.html> ([i915#3282]) +5 other tests skip * igt@gem_readwrite@new-obj: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@gem_readwrite@new-obj.html> ([i915#3282]) * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-2/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html> ([i915#8428]) +3 other tests skip * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-11/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html> ([i915#5190] / [i915#8428]) +3 other tests skip * igt@gem_tiled_pread_pwrite: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-19/igt@gem_tiled_pread_pwrite.html> ([i915#4079]) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@gem_tiled_pread_pwrite.html> ([i915#4079]) * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@gem_tiled_pread_pwrite.html> ([i915#4079]) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@gem_tiled_pread_pwrite.html> ([i915#3282]) * igt@gem_unfence_active_buffers: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@gem_unfence_active_buffers.html> ([i915#4879]) * igt@gem_userptr_blits@dmabuf-unsync: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html> ([i915#3297]) +2 other tests skip * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@gem_userptr_blits@dmabuf-unsync.html> ([i915#3297]) * igt@gem_userptr_blits@forbidden-operations: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-13/igt@gem_userptr_blits@forbidden-operations.html> ([i915#3282] / [i915#3297]) * igt@gem_userptr_blits@invalid-mmap-offset-unsync: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html> ([i915#3297]) * igt@gem_userptr_blits@map-fixed-invalidate-busy: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html> ([i915#3297] / [i915#4880]) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-busy.html> ([i915#3297] / [i915#4880]) * igt@gem_userptr_blits@unsync-unmap: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap.html> ([i915#3297]) +1 other test skip * igt@gen9_exec_parse@basic-rejected-ctx-param: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html> ([i915#2856]) +2 other tests skip * igt@gen9_exec_parse@batch-invalid-length: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-2/igt@gen9_exec_parse@batch-invalid-length.html> ([i915#2527]) +1 other test skip * igt@gen9_exec_parse@bb-large: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-7/igt@gen9_exec_parse@bb-large.html> ([i915#2527] / [i915#2856]) +3 other tests skip * igt@gen9_exec_parse@bb-secure: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@gen9_exec_parse@bb-secure.html> ([i915#2527]) +3 other tests skip * igt@gen9_exec_parse@shadow-peek: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@gen9_exec_parse@shadow-peek.html> ([i915#2856]) +3 other tests skip * igt@gen9_exec_parse@unaligned-access: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@gen9_exec_parse@unaligned-access.html> ([i915#2527] / [i915#2856]) * igt@i915_module_load@reload-with-fault-injection: * shard-dg1: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9820]) * shard-mtlp: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html> ([i915#10131] / [i915#10887] / [i915#9820]) * shard-dg2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9820]) * igt@i915_pm_freq_mult@media-freq@gt0: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@i915_pm_freq_mult@media-freq@gt0.html> ([i915#6590]) +1 other test skip * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html> ([i915#6590]) +1 other test skip * igt@i915_pm_rc6_residency@rc6-idle: * shard-tglu: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle.html> ([i915#2681]) +4 other tests warn * igt@i915_pm_rps@reset: * shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@i915_pm_rps@reset.html> ([i915#8346]) * igt@i915_pm_rps@thresholds-idle: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@i915_pm_rps@thresholds-idle.html> ([i915#11681]) * igt@i915_power@sanity: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@i915_power@sanity.html> ([i915#7984]) * igt@i915_query@test-query-geometry-subslices: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@i915_query@test-query-geometry-subslices.html> ([i915#5723]) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@i915_query@test-query-geometry-subslices.html> ([i915#5723]) * igt@kms_addfb_basic@bo-too-small-due-to-tiling: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html> ([i915#4212]) +1 other test skip * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-3/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html> ([i915#4212]) +1 other test skip * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html> ([i915#4212]) * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html> ([i915#8709]) +7 other tests skip * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html> ([i915#8709]) +11 other tests skip * igt@kms_big_fb@4-tiled-16bpp-rotate-90: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html> +13 other tests skip * igt@kms_big_fb@4-tiled-addfb: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html> ([i915#5286]) +1 other test skip * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> ([i915#5286]) +4 other tests skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> ([i915#4538] / [i915#5286]) +4 other tests skip * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html> ([i915#5286]) +4 other tests skip * igt@kms_big_fb@x-tiled-64bpp-rotate-90: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html> ([i915#3638]) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-19/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html> ([i915#3638]) * igt@kms_big_fb@y-tiled-32bpp-rotate-0: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html> ([i915#5190] / [i915#9197]) * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html> ([i915#4538]) +3 other tests skip * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html> ([i915#4538] / [i915#5190]) +10 other tests skip * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html> +76 other tests skip * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html> ([i915#6095]) +138 other tests skip * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html> ([i915#6095]) +54 other tests skip * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> ([i915#6095]) +99 other tests skip * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html> ([i915#10307] / [i915#6095]) +184 other tests skip * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html> ([i915#12313]) * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1.html> ([i915#6095]) +14 other tests skip * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html> ([i915#12313]) +1 other test skip * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html> ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html> ([i915#6095]) +24 other tests skip * igt@kms_cdclk@plane-scaling: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_cdclk@plane-scaling.html> ([i915#3742]) * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html> ([i915#4087]) +4 other tests skip * igt@kms_chamelium_audio@hdmi-audio: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_chamelium_audio@hdmi-audio.html> ([i915#7828]) +8 other tests skip * igt@kms_chamelium_audio@hdmi-audio-edid: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html> ([i915#7828]) +3 other tests skip * igt@kms_chamelium_color@ctm-0-50: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@kms_chamelium_color@ctm-0-50.html> +24 other tests skip * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html> ([i915#7828]) +5 other tests skip * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html> ([i915#7828]) +6 other tests skip * igt@kms_chamelium_edid@hdmi-mode-timings: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@kms_chamelium_edid@hdmi-mode-timings.html> ([i915#7828]) +1 other test skip * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html> ([i915#7828]) +4 other tests skip * igt@kms_content_protection@atomic-dpms: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-7/igt@kms_content_protection@atomic-dpms.html> ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +2 other tests skip * igt@kms_content_protection@lic-type-1: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@kms_content_protection@lic-type-1.html> ([i915#9424]) * igt@kms_content_protection@srm: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-4/igt@kms_content_protection@srm.html> ([i915#7118]) * igt@kms_content_protection@type1: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-8/igt@kms_content_protection@type1.html> ([i915#7118] / [i915#9424]) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@kms_content_protection@type1.html> ([i915#7116] / [i915#9424]) * igt@kms_content_protection@uevent: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-2/igt@kms_content_protection@uevent.html> ([i915#7118] / [i915#9424]) * igt@kms_cursor_crc@cursor-offscreen-512x170: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html> ([i915#11453] / [i915#3359]) +1 other test skip * igt@kms_cursor_crc@cursor-offscreen-512x512: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html> ([i915#11453] / [i915#3359]) +1 other test skip * igt@kms_cursor_crc@cursor-onscreen-32x10: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html> ([i915#3555]) * igt@kms_cursor_crc@cursor-onscreen-512x170: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html> ([i915#11453] / [i915#3359]) +1 other test skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x170.html> ([i915#11453] / [i915#3359]) * igt@kms_cursor_crc@cursor-random-512x170: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html> ([i915#9197]) +11 other tests skip * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html> ([i915#11453] / [i915#3359]) * igt@kms_cursor_crc@cursor-rapid-movement-256x85: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html> ([i915#8814]) +1 other test skip * igt@kms_cursor_crc@cursor-sliding-max-size: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-max-size.html> ([i915#3555] / [i915#8814]) * igt@kms_cursor_edge_walk@64x64-right-edge: * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg1-14/igt@kms_cursor_edge_walk@64x64-right-edge.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@kms_cursor_edge_walk@64x64-right-edge.html> ([i915#4423]) * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html> ([i915#9809]) +2 other tests skip * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html> ([i915#4103]) +1 other test skip * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html> ([i915#4103]) * igt@kms_dither@fb-8bpc-vs-panel-6bpc: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html> ([i915#1769] / [i915#3555] / [i915#3804]) * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html> ([i915#3804]) * igt@kms_dither@fb-8bpc-vs-panel-8bpc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html> ([i915#3555]) +2 other tests skip * igt@kms_dp_linktrain_fallback@dp-fallback: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@kms_dp_linktrain_fallback@dp-fallback.html> ([i915#12402]) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-3/igt@kms_dp_linktrain_fallback@dp-fallback.html> ([i915#12402]) * igt@kms_dsc@dsc-fractional-bpp: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp.html> ([i915#3840]) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-3/igt@kms_dsc@dsc-fractional-bpp.html> ([i915#3840] / [i915#9688]) * igt@kms_dsc@dsc-fractional-bpp-with-bpc: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> ([i915#3840]) * igt@kms_dsc@dsc-with-formats: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html> ([i915#3555] / [i915#3840]) * igt@kms_feature_discovery@display-3x: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-3/igt@kms_feature_discovery@display-3x.html> ([i915#1839]) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-9/igt@kms_feature_discovery@display-3x.html> ([i915#1839]) * igt@kms_feature_discovery@dp-mst: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_feature_discovery@dp-mst.html> ([i915#9337]) * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html> ([i915#9337]) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-19/igt@kms_feature_discovery@dp-mst.html> ([i915#9337]) * igt@kms_flip@2x-flip-vs-panning-interruptible: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@kms_flip@2x-flip-vs-panning-interruptible.html> ([i915#9934]) +2 other tests skip * igt@kms_flip@2x-nonexisting-fb: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-6/igt@kms_flip@2x-nonexisting-fb.html> ([i915#3637]) +4 other tests skip * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-4/igt@kms_flip@2x-nonexisting-fb.html> ([i915#3637]) +2 other tests skip * igt@kms_flip@2x-wf_vblank-ts-check: * shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-snb4/igt@kms_flip@2x-wf_vblank-ts-check.html> ([i915#2122]) +1 other test fail * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html> ([i915#3637]) +2 other tests skip * igt@kms_flip@flip-vs-absolute-wf_vblank: * shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html> ([i915#2122]) +1 other test fail * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> ([i915#2122]) * shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-tglu-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> ([i915#2122]) +1 other test fail * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp3: * shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp3.html> ([i915#2122]) +1 other test fail * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html> ([i915#2122]) +2 other tests fail * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html> ([i915#12138]) * igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1: * shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html> ([i915#11989]) * igt@kms_flip@modeset-vs-vblank-race: * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg1-13/igt@kms_flip@modeset-vs-vblank-race.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@kms_flip@modeset-vs-vblank-race.html> ([i915#12403] / [i915#12431] / [i915#12541]) * igt@kms_flip@modeset-vs-vblank-race@b-hdmi-a4: * shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@kms_flip@modeset-vs-vblank-race@b-hdmi-a4.html> ([i915#12431]) * igt@kms_flip@plain-flip-fb-recreate: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-11/igt@kms_flip@plain-flip-fb-recreate.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_flip@plain-flip-fb-recreate.html> ([i915#5354]) +4 other tests skip * igt@kms_flip@plain-flip-ts-check: * shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@kms_flip@plain-flip-ts-check.html> ([i915#2122]) +1 other test fail * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> ([i915#2672] / [i915#3555]) +3 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html> ([i915#2672] / [i915#3555]) +1 other test skip * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672]) +1 other test skip * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html> ([i915#2672] / [i915#3555]) +1 other test skip * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> ([i915#2672]) +6 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html> ([i915#2672] / [i915#3555] / [i915#8813]) +4 other tests skip * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html> ([i915#3555] / [i915#5190]) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html> ([i915#2587] / [i915#2672] / [i915#3555]) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html> ([i915#2587] / [i915#2672] / [i915#3555]) * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672]) +4 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> ([i915#2672] / [i915#3555]) +2 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html> ([i915#2672]) +2 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html> ([i915#3555] / [i915#8810] / [i915#8813]) * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html> ([i915#3555] / [i915#8810]) * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html> ([i915#3555]) +2 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html> ([i915#2672] / [i915#3555]) +2 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html> ([i915#2672] / [i915#8813]) * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672]) +3 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html> ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html> ([i915#8708]) +21 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html> +13 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html> ([i915#8708]) +8 other tests skip * igt@kms_frontbuffer_tracking@fbc-tiling-4: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html> ([i915#5439]) * igt@kms_frontbuffer_tracking@fbc-tiling-y: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html> ([i915#10055]) * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html> ([i915#3458]) +14 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html> ([i915#10433] / [i915#3458]) * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html> +23 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html> ([i915#5354]) +52 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html> ([i915#1825]) +30 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html> ([i915#1825]) +16 other tests skip * igt@kms_frontbuffer_tracking@pipe-fbc-rte: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> ([i915#9766]) * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> ([i915#9766]) * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html> ([i915#8708]) +16 other tests skip * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html> ([i915#3023]) +17 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html> +103 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html> +37 other tests skip * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html> ([i915#3458]) +6 other tests skip * igt@kms_hdmi_inject@inject-audio: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-8/igt@kms_hdmi_inject@inject-audio.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@kms_hdmi_inject@inject-audio.html> ([i915#433]) * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-5/igt@kms_hdmi_inject@inject-audio.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-11/igt@kms_hdmi_inject@inject-audio.html> ([i915#433]) * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-4/igt@kms_hdmi_inject@inject-audio.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-1/igt@kms_hdmi_inject@inject-audio.html> ([i915#433]) * igt@kms_hdr@static-toggle-suspend: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html> ([i915#3555] / [i915#8228]) * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html> ([i915#3555] / [i915#8228]) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-19/igt@kms_hdr@static-toggle-suspend.html> ([i915#3555] / [i915#8228]) * igt@kms_joiner@basic-force-ultra-joiner: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-17/igt@kms_joiner@basic-force-ultra-joiner.html> ([i915#12394]) +1 other test skip * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-5/igt@kms_joiner@basic-force-ultra-joiner.html> ([i915#12394]) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-1/igt@kms_joiner@basic-force-ultra-joiner.html> ([i915#10656]) * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_joiner@basic-force-ultra-joiner.html> ([i915#10656]) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html> ([i915#12394]) * igt@kms_joiner@invalid-modeset-force-ultra-joiner: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> ([i915#12394]) * igt@kms_lease@lease-revoke: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-1/igt@kms_lease@lease-revoke.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_lease@lease-revoke.html> ([i915#9197]) +24 other tests skip * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> ([i915#1839]) * igt@kms_panel_fitting@atomic-fastset: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-8/igt@kms_panel_fitting@atomic-fastset.html> ([i915#6301]) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html> ([i915#6301]) * igt@kms_plane@plane-panning-bottom-right-suspend: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right-suspend.html> ([i915#8825]) * igt@kms_plane@plane-position-hole: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-5/igt@kms_plane@plane-position-hole.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane@plane-position-hole.html> ([i915#8825]) * igt@kms_plane_alpha_blend@alpha-transparent-fb: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-1/igt@kms_plane_alpha_blend@alpha-transparent-fb.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html> ([i915#7294]) * igt@kms_plane_lowres@tiling-yf: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_plane_lowres@tiling-yf.html> ([i915#3555] / [i915#8821]) * igt@kms_plane_scaling@intel-max-src-size: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html> ([i915#8292]) * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: * shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html> ([i915#8292]) * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: * shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html> ([i915#8292]) * igt@kms_plane_scaling@invalid-parameters: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-11/igt@kms_plane_scaling@invalid-parameters.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_scaling@invalid-parameters.html> ([i915#8152] / [i915#9423]) * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html> ([i915#12247] / [i915#9423]) +1 other test skip * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html> ([i915#12247]) +8 other tests skip * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html> ([i915#12247]) +27 other tests skip * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html> ([i915#12247] / [i915#8152] / [i915#9423]) * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html> ([i915#12247]) +2 other tests skip * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d.html> ([i915#12247] / [i915#8152]) * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html> ([i915#3555]) +4 other tests skip * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html> ([i915#12247]) +8 other tests skip * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html> ([i915#12247]) +9 other tests skip * igt@kms_plane_scaling@planes-downscale-factor-0-5: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html> ([i915#12247] / [i915#6953]) * igt@kms_plane_scaling@planes-upscale-20x20: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20.html> ([i915#6953] / [i915#8152] / [i915#9423]) * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html> ([i915#12247] / [i915#3555]) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html> ([i915#12247] / [i915#3555]) * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html> ([i915#12247]) +10 other tests skip * igt@kms_plane_scaling@planes-upscale-factor-0-25: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25.html> ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html> ([i915#12247] / [i915#6953]) * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html> ([i915#12247]) +13 other tests skip * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html> ([i915#8152]) +1 other test skip * igt@kms_pm_backlight@basic-brightness: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_pm_backlight@basic-brightness.html> ([i915#5354]) * igt@kms_pm_dc@dc5-psr: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_pm_dc@dc5-psr.html> ([i915#9685]) * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-1/igt@kms_pm_dc@dc5-psr.html> ([i915#9685]) * igt@kms_pm_dc@dc9-dpms: * shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html> ([i915#4281]) * igt@kms_pm_lpsp@screens-disabled: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-18/igt@kms_pm_lpsp@screens-disabled.html> ([i915#8430]) * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_pm_lpsp@screens-disabled.html> ([i915#8430]) * igt@kms_pm_rpm@dpms-lpsp: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@kms_pm_rpm@dpms-lpsp.html> ([i915#9519]) +1 other test skip * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> ([i915#9519]) * igt@kms_pm_rpm@modeset-lpsp: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp.html> ([i915#9519]) +1 other test skip * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> ([i915#9519]) +1 other test skip * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> ([i915#9519]) +1 other test skip * igt@kms_prime@basic-crc-hybrid: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html> ([i915#6524] / [i915#6805]) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_prime@basic-crc-hybrid.html> ([i915#6524]) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-19/igt@kms_prime@basic-crc-hybrid.html> ([i915#6524]) * igt@kms_prime@d3hot: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-5/igt@kms_prime@d3hot.html> ([i915#6524]) * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-snb1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html> ([i915#11520]) +3 other tests skip * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html> ([i915#11520]) +3 other tests skip * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html> ([i915#9808]) +1 other test skip * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html> ([i915#11520]) +6 other tests skip * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-2/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html> ([i915#11520]) +5 other tests skip * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-1/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html> ([i915#12316]) +5 other tests skip * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html> ([i915#11520]) +8 other tests skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-19/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html> ([i915#11520]) +6 other tests skip * igt@kms_psr2_su@frontbuffer-xrgb8888: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-17/igt@kms_psr2_su@frontbuffer-xrgb8888.html> ([i915#9683]) * igt@kms_psr2_su@page_flip-xrgb8888: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_psr2_su@page_flip-xrgb8888.html> ([i915#9683]) * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html> ([i915#9683]) * igt@kms_psr@fbc-pr-cursor-plane-onoff: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_psr@fbc-pr-cursor-plane-onoff.html> ([i915#9732]) +8 other tests skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@kms_psr@fbc-pr-cursor-plane-onoff.html> ([i915#1072] / [i915#9732]) +13 other tests skip * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html> ([i915#9688]) +10 other tests skip * igt@kms_psr@psr-primary-render: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@kms_psr@psr-primary-render.html> ([i915#9732]) +14 other tests skip * igt@kms_psr@psr2-cursor-mmap-gtt: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_psr@psr2-cursor-mmap-gtt.html> ([i915#1072] / [i915#9732]) +11 other tests skip * igt@kms_psr@psr2-primary-mmap-gtt: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html> ([i915#1072] / [i915#9732]) +19 other tests skip * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html> ([i915#5289]) * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html> ([i915#5289]) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html> ([i915#5289]) * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> ([i915#5289]) * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> ([i915#11131] / [i915#4235] / [i915#5190]) * igt@kms_scaling_modes@scaling-mode-center: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@kms_scaling_modes@scaling-mode-center.html> ([i915#3555]) +2 other tests skip * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-center.html> ([i915#3555]) * igt@kms_setmode@basic: * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg1-19/igt@kms_setmode@basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@kms_setmode@basic.html> ([i915#5465]) +2 other tests fail * igt@kms_sysfs_edid_timing: * shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_sysfs_edid_timing.html> ([IGT#2]) * igt@kms_tiled_display@basic-test-pattern: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html> ([i915#8623]) * igt@kms_tiled_display@basic-test-pattern-with-chamelium: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> ([i915#8623]) * igt@kms_vrr@lobf: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@kms_vrr@lobf.html> ([i915#11920]) * igt@kms_vrr@negative-basic: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-10/igt@kms_vrr@negative-basic.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-11/igt@kms_vrr@negative-basic.html> ([i915#3555] / [i915#9906]) * igt@kms_vrr@seamless-rr-switch-drrs: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-7/igt@kms_vrr@seamless-rr-switch-drrs.html> ([i915#8808] / [i915#9906]) * igt@kms_vrr@seamless-rr-switch-virtual: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_vrr@seamless-rr-switch-virtual.html> ([i915#9906]) * igt@kms_writeback@writeback-fb-id: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@kms_writeback@writeback-fb-id.html> ([i915#2437]) * igt@kms_writeback@writeback-fb-id-xrgb2101010: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> ([i915#2437] / [i915#9412]) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> ([i915#2437] / [i915#9412]) * igt@prime_vgem@basic-write: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-1/igt@prime_vgem@basic-write.html> ([i915#3291] / [i915#3708]) * igt@prime_vgem@fence-read-hang: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-8/igt@prime_vgem@fence-read-hang.html> ([i915#3708]) +1 other test skip * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-7/igt@prime_vgem@fence-read-hang.html> ([i915#3708]) +1 other test skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@prime_vgem@fence-read-hang.html> ([i915#3708]) +1 other test skip * igt@prime_vgem@fence-write-hang: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@prime_vgem@fence-write-hang.html> ([i915#3708]) * igt@sriov_basic@bind-unbind-vf: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-8/igt@sriov_basic@bind-unbind-vf.html> ([i915#9917]) +1 other test skip * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-2/igt@sriov_basic@bind-unbind-vf.html> ([i915#9917]) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-16/igt@sriov_basic@bind-unbind-vf.html> ([i915#9917]) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-5/igt@sriov_basic@bind-unbind-vf.html> ([i915#9917]) * igt@sriov_basic@enable-vfs-bind-unbind-each: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html> ([i915#9917]) +1 other test skip * igt@syncobj_wait@invalid-wait-zero-handles: * shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-6/igt@syncobj_wait@invalid-wait-zero-handles.html> ([i915#12564] / [i915#9781]) Possible fixes * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: * shard-dg2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html> ([i915#7297]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html> * igt@gem_ctx_engines@invalid-engines: * shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-8/igt@gem_ctx_engines@invalid-engines.html> ([i915#12031]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-6/igt@gem_ctx_engines@invalid-engines.html> * igt@gem_eio@reset-stress: * shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg1-15/igt@gem_eio@reset-stress.html> ([i915#12543] / [i915#5784]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-12/igt@gem_eio@reset-stress.html> * igt@gem_exec_fair@basic-deadline: * shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html> ([i915#2846]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-3/igt@gem_exec_fair@basic-deadline.html> * igt@gem_exec_fair@basic-pace-share: * shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-4/igt@gem_exec_fair@basic-pace-share.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-1/igt@gem_exec_fair@basic-pace-share.html> +1 other test pass * igt@i915_power@sanity: * shard-mtlp: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-5/igt@i915_power@sanity.html> ([i915#7984]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-1/igt@i915_power@sanity.html> * igt@kms_color@ctm-max: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_color@ctm-max.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_color@ctm-max.html> +3 other tests pass * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html> ([i915#9197]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html> +36 other tests pass * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1: * shard-snb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-snb1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html> ([i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-snb5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html> +5 other tests pass * igt@kms_flip@flip-vs-suspend: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_flip@flip-vs-suspend.html> ([i915#5354]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-8/igt@kms_flip@flip-vs-suspend.html> +16 other tests pass * igt@kms_flip@plain-flip-fb-recreate: * shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate.html> ([i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate.html> * igt@kms_flip@plain-flip-fb-recreate@b-edp1: * shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-6/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html> ([i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-3/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html> +3 other tests pass * igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1: * shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-tglu-6/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html> ([i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html> +4 other tests pass * igt@kms_flip@plain-flip-ts-check-interruptible: * shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-1/igt@kms_flip@plain-flip-ts-check-interruptible.html> ([i915#11989] / [i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-8/igt@kms_flip@plain-flip-ts-check-interruptible.html> * shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-7/igt@kms_flip@plain-flip-ts-check-interruptible.html> ([i915#11989] / [i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@kms_flip@plain-flip-ts-check-interruptible.html> * shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg1-15/igt@kms_flip@plain-flip-ts-check-interruptible.html> ([i915#11989] / [i915#12517] / [i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@kms_flip@plain-flip-ts-check-interruptible.html> * igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a4: * shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg1-15/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a4.html> ([i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg1-15/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a4.html> +2 other tests pass * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html> ([i915#3555]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html> +4 other tests pass * igt@kms_hdr@invalid-metadata-sizes: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html> ([i915#3555] / [i915#8228]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html> * igt@kms_plane@pixel-format: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_plane@pixel-format.html> ([i915#8825]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_plane@pixel-format.html> +1 other test pass * shard-tglu: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-tglu-2/igt@kms_plane@pixel-format.html> ([i915#10354]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-3/igt@kms_plane@pixel-format.html> +1 other test pass * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html> ([i915#12247] / [i915#8152] / [i915#9423]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html> * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html> ([i915#12247] / [i915#8152]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html> +2 other tests pass * igt@kms_plane_scaling@planes-downscale-factor-0-75: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html> ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-75.html> * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html> ([i915#6953] / [i915#8152] / [i915#9423]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html> * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a.html> ([i915#12247]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-a.html> +8 other tests pass * igt@kms_pm_dc@dc6-dpms: * shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html> ([i915#9295]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html> * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> ([i915#9519]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> +2 other tests pass * igt@kms_pm_rpm@modeset-non-lpsp-stress: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> ([i915#9519]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> +2 other tests pass * igt@perf_pmu@all-busy-idle-check-all: * shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-8/igt@perf_pmu@all-busy-idle-check-all.html> ([i915#11943]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@perf_pmu@all-busy-idle-check-all.html> * shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-mtlp-3/igt@perf_pmu@all-busy-idle-check-all.html> ([i915#11943]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-mtlp-1/igt@perf_pmu@all-busy-idle-check-all.html> Warnings * igt@i915_module_load@reload-with-fault-injection: * shard-rkl: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9697] / [i915#9820]) -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9820]) * shard-tglu: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9820]) -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html> ([i915#10887] / [i915#9820]) * igt@kms_big_fb@x-tiled-16bpp-rotate-90: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-11/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> ([i915#9197]) +3 other tests skip * igt@kms_big_fb@x-tiled-8bpp-rotate-90: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-5/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html> +1 other test skip * igt@kms_big_fb@y-tiled-32bpp-rotate-90: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-1/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html> ([i915#4538] / [i915#5190]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-2/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html> ([i915#5190] / [i915#9197]) +3 other tests skip * igt@kms_big_fb@y-tiled-addfb-size-overflow: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-2/igt@kms_big_fb@y-tiled-ad> ([i915#5190] / [i915#9197]) -> [SKIP][443] ([i915#5190]) +2 other tests skip [-- Attachment #2: Type: text/html, Size: 213095 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for scripts/run-test: Keep original prune behaviour (rev3) 2024-10-26 3:44 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-10-28 13:59 ` Zhang, George @ 2024-10-28 15:18 ` Kamil Konieczny 1 sibling, 0 replies; 9+ messages in thread From: Kamil Konieczny @ 2024-10-28 15:18 UTC (permalink / raw) To: igt-dev; +Cc: george.zhang, I915-ci-infra Hi igt-dev, On 2024-10-26 at 03:44:06 -0000, Patchwork wrote: > == Series Details == > > Series: scripts/run-test: Keep original prune behaviour (rev3) > URL : https://patchwork.freedesktop.org/series/140446/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_8086_full -> IGTPW_11986_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_11986_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_11986_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. > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/index.html > > Participating hosts (8 -> 8) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_11986_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_module_load@resize-bar: > - shard-dg2: [PASS][1] -> [SKIP][2] +2 other tests skip > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/shard-dg2-6/igt@i915_module_load@resize-bar.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/shard-dg2-4/igt@i915_module_load@resize-bar.html > This is unrelated to change in scripts/ Regards, Kamil > > Known issues > ------------ > > Here are the changes found in IGTPW_11986_full that come from known issues: > ...cut... > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11986/index.html ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ CI.xeFULL: failure for scripts/run-test: Keep original prune behaviour (rev3) 2024-10-25 18:29 [Patch v3] scripts/run-test: Keep original prune behaviour george.zhang ` (3 preceding siblings ...) 2024-10-26 3:44 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-10-27 11:00 ` Patchwork 2024-10-28 15:19 ` Kamil Konieczny 4 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2024-10-27 11:00 UTC (permalink / raw) To: george.zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 62610 bytes --] == Series Details == Series: scripts/run-test: Keep original prune behaviour (rev3) URL : https://patchwork.freedesktop.org/series/140446/ State : failure == Summary == CI Bug Log - changes from XEIGT_8086_full -> XEIGTPW_11986_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11986_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11986_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_11986_full: ### IGT changes ### #### Possible regressions #### * igt@kms_vblank@query-forked-hang: - shard-bmg: [PASS][1] -> [SKIP][2] +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-5/igt@kms_vblank@query-forked-hang.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-3/igt@kms_vblank@query-forked-hang.html * igt@xe_exec_balancer@many-cm-parallel-basic: - shard-bmg: [PASS][3] -> [DMESG-WARN][4] +6 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-1/igt@xe_exec_balancer@many-cm-parallel-basic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-4/igt@xe_exec_balancer@many-cm-parallel-basic.html - shard-dg2-set2: NOTRUN -> [DMESG-WARN][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-463/igt@xe_exec_balancer@many-cm-parallel-basic.html * igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate: - shard-bmg: [PASS][6] -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-5/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-2/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch: - shard-lnl: [PASS][8] -> [FAIL][9] +2 other tests fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-8/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html * igt@xe_exec_fault_mode@many-userptr-invalidate-race: - shard-bmg: [PASS][10] -> [FAIL][11] +4 other tests fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-3/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-5/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html * igt@xe_exec_fault_mode@once-invalid-userptr-fault: - shard-lnl: [PASS][12] -> [DMESG-WARN][13] +7 other tests dmesg-warn [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-7/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-3/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html * igt@xe_exec_threads@threads-bal-mixed-userptr: - shard-dg2-set2: [PASS][14] -> [DMESG-WARN][15] +4 other tests dmesg-warn [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-434/igt@xe_exec_threads@threads-bal-mixed-userptr.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-463/igt@xe_exec_threads@threads-bal-mixed-userptr.html * igt@xe_exec_threads@threads-cm-shared-vm-userptr: - shard-dg2-set2: [PASS][16] -> [FAIL][17] [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_exec_threads@threads-cm-shared-vm-userptr.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@xe_exec_threads@threads-cm-shared-vm-userptr.html #### Warnings #### * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][18] ([Intel XE#2311]) -> [SKIP][19] +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][20] ([Intel XE#2313]) -> [SKIP][21] +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-bmg: [SKIP][22] ([Intel XE#2763]) -> [SKIP][23] [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html Known issues ------------ Here are the changes found in XEIGTPW_11986_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][24] -> [FAIL][25] ([Intel XE#827]) +1 other test fail [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-dg2-set2: [PASS][26] -> [DMESG-WARN][27] ([Intel XE#877]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@kms_big_fb@linear-64bpp-rotate-180.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-464/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-8bpp-rotate-180: - shard-dg2-set2: [PASS][28] -> [SKIP][29] ([Intel XE#829]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html - shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#829]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-4/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-3/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#1124]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#367]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#787]) +41 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-434/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][35] ([Intel XE#616]) +8 other tests fail [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#1195] / [Intel XE#3113]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-436/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#373]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-463/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_color@ctm-0-50@pipe-b-hdmi-a-3: - shard-bmg: [PASS][40] -> [DMESG-WARN][41] ([Intel XE#877]) +2 other tests dmesg-warn [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-6/igt@kms_color@ctm-0-50@pipe-b-hdmi-a-3.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-3/igt@kms_color@ctm-0-50@pipe-b-hdmi-a-3.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: NOTRUN -> [DMESG-FAIL][42] ([Intel XE#3177]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-4/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions: - shard-lnl: [PASS][43] -> [FAIL][44] ([Intel XE#1541]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-1/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-8/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#776]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-435/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#1137]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][47] -> [FAIL][48] ([Intel XE#301]) +7 other tests fail [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: - shard-bmg: [PASS][49] -> [FAIL][50] ([Intel XE#301]) +2 other tests fail [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-lnl: [PASS][51] -> [FAIL][52] ([Intel XE#886]) +5 other tests fail [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#651]) +5 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#653]) +8 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_plane@pixel-format@pipe-a-plane-3: - shard-lnl: [PASS][55] -> [DMESG-WARN][56] ([Intel XE#2929]) +3 other tests dmesg-warn [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-3/igt@kms_plane@pixel-format@pipe-a-plane-3.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-1/igt@kms_plane@pixel-format@pipe-a-plane-3.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c: - shard-bmg: NOTRUN -> [DMESG-WARN][57] ([Intel XE#3177]) +3 other tests dmesg-warn [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#870]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-434/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][59] -> [FAIL][60] ([Intel XE#718]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][61] -> [FAIL][62] ([Intel XE#1430]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-dg2-set2: [PASS][63] -> [INCOMPLETE][64] ([Intel XE#1195] / [Intel XE#2864]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-464/igt@kms_pm_rpm@modeset-stress-extra-wait.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-463/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1489]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@psr2-cursor-render@edp-1: - shard-lnl: [PASS][67] -> [FAIL][68] ([Intel XE#2948]) +1 other test fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-3/igt@kms_psr@psr2-cursor-render@edp-1.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-6/igt@kms_psr@psr2-cursor-render@edp-1.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#327]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_universal_plane@cursor-fb-leak: - shard-lnl: [PASS][70] -> [FAIL][71] ([Intel XE#899]) +1 other test fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vblank@query-forked-hang: - shard-dg2-set2: [PASS][72] -> [SKIP][73] ([Intel XE#3187]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-434/igt@kms_vblank@query-forked-hang.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-464/igt@kms_vblank@query-forked-hang.html * igt@kms_vrr@flip-basic-fastset: - shard-lnl: [PASS][74] -> [FAIL][75] ([Intel XE#2443]) +1 other test fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-3/igt@kms_vrr@flip-basic-fastset.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-3/igt@kms_vrr@flip-basic-fastset.html * igt@kms_writeback@writeback-check-output: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#756]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-463/igt@kms_writeback@writeback-check-output.html * igt@xe_compute@ccs-mode-basic: - shard-dg2-set2: NOTRUN -> [FAIL][77] ([Intel XE#1050]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-435/igt@xe_compute@ccs-mode-basic.html * igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#1280] / [Intel XE#455]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-434/igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_eudebug_online@interrupt-other-debuggable: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#2905]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-433/igt@xe_eudebug_online@interrupt-other-debuggable.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [PASS][80] -> [FAIL][81] ([Intel XE#1600]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@xe_evict@evict-beng-large-multi-vm-cm.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][82] -> [INCOMPLETE][83] ([Intel XE#1195] / [Intel XE#1473]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-threads-large: - shard-dg2-set2: [PASS][84] -> [TIMEOUT][85] ([Intel XE#1473]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-435/igt@xe_evict@evict-threads-large.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@xe_evict@evict-threads-large.html * igt@xe_exec_compute_mode@once-userptr-invalidate-race: - shard-lnl: [PASS][86] -> [DMESG-WARN][87] ([Intel XE#2687]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-6/igt@xe_exec_compute_mode@once-userptr-invalidate-race.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-8/igt@xe_exec_compute_mode@once-userptr-invalidate-race.html * igt@xe_exec_fault_mode@twice-invalid-fault: - shard-lnl: [PASS][88] -> [DMESG-WARN][89] ([Intel XE#3230]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-4/igt@xe_exec_fault_mode@twice-invalid-fault.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-7/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#288]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2360]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_reset@cm-close-fd-no-exec: - shard-bmg: [PASS][92] -> [DMESG-WARN][93] ([Intel XE#3230]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-6/igt@xe_exec_reset@cm-close-fd-no-exec.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-1/igt@xe_exec_reset@cm-close-fd-no-exec.html * igt@xe_exec_threads@threads-hang-shared-vm-rebind: - shard-dg2-set2: [PASS][94] -> [DMESG-WARN][95] ([Intel XE#358]) +1 other test dmesg-warn [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-466/igt@xe_exec_threads@threads-hang-shared-vm-rebind.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@xe_exec_threads@threads-hang-shared-vm-rebind.html * igt@xe_exec_threads@threads-mixed-fd-basic: - shard-dg2-set2: [PASS][96] -> [DMESG-WARN][97] ([Intel XE#3230]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@xe_exec_threads@threads-mixed-fd-basic.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-435/igt@xe_exec_threads@threads-mixed-fd-basic.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#2229]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-4/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_module_load@reload-no-display: - shard-bmg: [PASS][99] -> [FAIL][100] ([Intel XE#2136]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@xe_module_load@reload-no-display.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-3/igt@xe_module_load@reload-no-display.html - shard-dg2-set2: [PASS][101] -> [FAIL][102] ([Intel XE#2136]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_module_load@reload-no-display.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-464/igt@xe_module_load@reload-no-display.html * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][103] ([Intel XE#1173]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-433/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@s4-mocs: - shard-lnl: [PASS][104] -> [ABORT][105] ([Intel XE#1794]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-4/igt@xe_pm@s4-mocs.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-2/igt@xe_pm@s4-mocs.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][106] -> [FAIL][107] ([Intel XE#958]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-config: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#944]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-435/igt@xe_query@multigpu-query-config.html #### Possible fixes #### * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][109] ([Intel XE#2231]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html * igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size: - shard-lnl: [FAIL][111] ([Intel XE#1541]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-3/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html * igt@kms_fb_coherency@memset-crc: - shard-dg2-set2: [SKIP][113] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_fb_coherency@memset-crc.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-464/igt@kms_fb_coherency@memset-crc.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3: - shard-bmg: [FAIL][115] ([Intel XE#2882]) -> [PASS][116] +1 other test pass [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][117] -> [PASS][118] +1 other test pass [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-435/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-433/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4.html * igt@kms_flip@dpms-vs-vblank-race: - shard-lnl: [FAIL][119] ([Intel XE#3097]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-6/igt@kms_flip@dpms-vs-vblank-race.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-4/igt@kms_flip@dpms-vs-vblank-race.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2: - shard-bmg: [FAIL][121] ([Intel XE#301]) -> [PASS][122] +3 other tests pass [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html * igt@kms_flip@wf_vblank-ts-check@a-edp1: - shard-lnl: [FAIL][123] ([Intel XE#886]) -> [PASS][124] +4 other tests pass [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@a-edp1.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@a-edp1.html * igt@kms_lease@lease-invalid-connector: - shard-dg2-set2: [SKIP][125] ([Intel XE#2423] / [i915#2575]) -> [PASS][126] +14 other tests pass [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_lease@lease-invalid-connector.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-435/igt@kms_lease@lease-invalid-connector.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-bmg: [SKIP][127] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][128] +5 other tests pass [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_pm_dc@dc5-dpms-negative.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-8/igt@kms_pm_dc@dc5-dpms-negative.html - shard-dg2-set2: [SKIP][129] ([Intel XE#2890]) -> [PASS][130] +6 other tests pass [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_pm_dc@dc5-dpms-negative.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-lnl: [DMESG-WARN][131] ([Intel XE#2042]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@kms_pm_rpm@universal-planes-dpms.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-1/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_sequence@get-busy: - shard-bmg: [SKIP][133] ([Intel XE#3007]) -> [PASS][134] +14 other tests pass [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_sequence@get-busy.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-5/igt@kms_sequence@get-busy.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [FAIL][135] ([Intel XE#2883]) -> [PASS][136] +2 other tests pass [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_vrr@flipline: - shard-lnl: [FAIL][137] ([Intel XE#2443]) -> [PASS][138] +3 other tests pass [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-7/igt@kms_vrr@flipline.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-6/igt@kms_vrr@flipline.html * igt@testdisplay: - shard-dg2-set2: [SKIP][139] ([Intel XE#2423]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@testdisplay.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-436/igt@testdisplay.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][141] ([Intel XE#1473]) -> [PASS][142] [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr: - shard-dg2-set2: [SKIP][143] ([Intel XE#1130]) -> [PASS][144] +18 other tests pass [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr.html * igt@xe_exec_compute_mode@many-bindexecqueue-userptr: - shard-dg2-set2: [DMESG-WARN][145] -> [PASS][146] +4 other tests pass [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-434/igt@xe_exec_compute_mode@many-bindexecqueue-userptr.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-436/igt@xe_exec_compute_mode@many-bindexecqueue-userptr.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race: - shard-lnl: [FAIL][147] -> [PASS][148] +3 other tests pass [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-5/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-prefetch: - shard-bmg: [FAIL][149] -> [PASS][150] [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-4/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-prefetch.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-1/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-prefetch.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm: - shard-lnl: [FAIL][151] ([Intel XE#3160]) -> [PASS][152] [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html * igt@xe_exec_fault_mode@once-invalid-fault: - shard-lnl: [DMESG-WARN][153] -> [PASS][154] +3 other tests pass [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@xe_exec_fault_mode@once-invalid-fault.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-2/igt@xe_exec_fault_mode@once-invalid-fault.html * igt@xe_exec_reset@parallel-close-fd: - shard-bmg: [FAIL][155] ([Intel XE#1081]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-7/igt@xe_exec_reset@parallel-close-fd.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-2/igt@xe_exec_reset@parallel-close-fd.html - shard-dg2-set2: [FAIL][157] ([Intel XE#1081]) -> [PASS][158] [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-435/igt@xe_exec_reset@parallel-close-fd.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-436/igt@xe_exec_reset@parallel-close-fd.html * igt@xe_exec_threads@threads-hang-rebind: - shard-bmg: [DMESG-WARN][159] -> [PASS][160] +3 other tests pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@xe_exec_threads@threads-hang-rebind.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-2/igt@xe_exec_threads@threads-hang-rebind.html - shard-dg2-set2: [DMESG-WARN][161] ([Intel XE#358]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-464/igt@xe_exec_threads@threads-hang-rebind.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-464/igt@xe_exec_threads@threads-hang-rebind.html * igt@xe_exec_threads@threads-mixed-shared-vm-basic: - shard-dg2-set2: [DMESG-WARN][163] ([Intel XE#3230]) -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-464/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html * igt@xe_gt_freq@freq_reset_multiple: - shard-lnl: [DMESG-WARN][165] ([Intel XE#3184]) -> [PASS][166] +1 other test pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-4/igt@xe_gt_freq@freq_reset_multiple.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-7/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_intel_bb@lot-of-buffers: - shard-bmg: [SKIP][167] ([Intel XE#1130]) -> [PASS][168] +28 other tests pass [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@xe_intel_bb@lot-of-buffers.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-6/igt@xe_intel_bb@lot-of-buffers.html * igt@xe_live_ktest@xe_migrate: - shard-lnl: [SKIP][169] ([Intel XE#1192]) -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@xe_live_ktest@xe_migrate.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-4/igt@xe_live_ktest@xe_migrate.html * igt@xe_oa@oa-exponents@rcs-0: - shard-lnl: [FAIL][171] ([Intel XE#2976]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-7/igt@xe_oa@oa-exponents@rcs-0.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-3/igt@xe_oa@oa-exponents@rcs-0.html #### Warnings #### * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][173] ([Intel XE#2231]) -> [SKIP][174] ([Intel XE#2327]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-2/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html - shard-dg2-set2: [SKIP][175] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][176] ([Intel XE#316]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-436/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][177] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][178] ([Intel XE#1124]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html - shard-dg2-set2: [SKIP][179] ([Intel XE#2890]) -> [SKIP][180] ([Intel XE#1124]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][181] ([Intel XE#1124]) -> [SKIP][182] ([Intel XE#829]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - shard-bmg: [SKIP][183] ([Intel XE#1124]) -> [SKIP][184] ([Intel XE#829]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][185] ([Intel XE#2231]) -> [SKIP][186] ([Intel XE#2887]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][187] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][188] ([Intel XE#2887]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html - shard-dg2-set2: [SKIP][189] ([Intel XE#2890]) -> [SKIP][190] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][191] ([Intel XE#3007]) -> [SKIP][192] ([Intel XE#2325]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_chamelium_color@ctm-green-to-red.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-8/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][193] ([Intel XE#2423] / [i915#2575]) -> [SKIP][194] ([Intel XE#306]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_chamelium_color@gamma.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-435/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_hpd@dp-hpd: - shard-bmg: [SKIP][195] ([Intel XE#3007]) -> [SKIP][196] ([Intel XE#2252]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_chamelium_hpd@dp-hpd.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd.html - shard-dg2-set2: [SKIP][197] ([Intel XE#2423] / [i915#2575]) -> [SKIP][198] ([Intel XE#373]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_chamelium_hpd@dp-hpd.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-434/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][199] ([Intel XE#3007]) -> [DMESG-FAIL][200] ([Intel XE#3177]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_content_protection@srm.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-4/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-bmg: [SKIP][201] ([Intel XE#3007]) -> [SKIP][202] ([Intel XE#2320]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_cursor_crc@cursor-random-64x21.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-6/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: [SKIP][203] ([Intel XE#2423] / [i915#2575]) -> [SKIP][204] ([Intel XE#308]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-512x170.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-512x170.html - shard-bmg: [SKIP][205] ([Intel XE#3007]) -> [SKIP][206] ([Intel XE#2321]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x170.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_flip@bo-too-big-interruptible@a-edp1: - shard-lnl: [INCOMPLETE][207] ([Intel XE#1504]) -> [TIMEOUT][208] ([Intel XE#1504]) +1 other test timeout [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@kms_flip@bo-too-big-interruptible@a-edp1.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-1/igt@kms_flip@bo-too-big-interruptible@a-edp1.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][209] ([Intel XE#2231]) -> [SKIP][210] ([Intel XE#2311]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html - shard-dg2-set2: [SKIP][211] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][212] ([Intel XE#651]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][213] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][214] ([Intel XE#2333]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move: - shard-dg2-set2: [SKIP][215] ([Intel XE#651]) -> [SKIP][216] ([Intel XE#3187] / [Intel XE#783]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][217] ([Intel XE#651]) -> [SKIP][218] ([Intel XE#3187]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][219] ([Intel XE#2890]) -> [SKIP][220] ([Intel XE#651]) +2 other tests skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary.html - shard-bmg: [SKIP][221] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][222] ([Intel XE#2311]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][223] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][224] ([Intel XE#2313]) +4 other tests skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html - shard-dg2-set2: [SKIP][225] ([Intel XE#2890]) -> [SKIP][226] ([Intel XE#653]) +5 other tests skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render: - shard-dg2-set2: [SKIP][227] ([Intel XE#653]) -> [SKIP][228] ([Intel XE#3187]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][229] ([Intel XE#2231]) -> [SKIP][230] ([Intel XE#2313]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2-set2: [SKIP][231] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][232] ([Intel XE#3187]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75: - shard-bmg: [SKIP][233] ([Intel XE#3007]) -> [DMESG-WARN][234] ([Intel XE#2566] / [Intel XE#3177]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][235] ([Intel XE#2231]) -> [SKIP][236] ([Intel XE#1489]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg2-set2: [SKIP][237] ([Intel XE#2890]) -> [SKIP][238] ([Intel XE#1489]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-463/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-psr-no-drrs: - shard-dg2-set2: [SKIP][239] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][240] ([Intel XE#2850] / [Intel XE#929]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_psr@fbc-psr-no-drrs.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-436/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@pr-sprite-blt: - shard-dg2-set2: [SKIP][241] ([Intel XE#2890]) -> [SKIP][242] ([Intel XE#2850] / [Intel XE#929]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_psr@pr-sprite-blt.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@kms_psr@pr-sprite-blt.html - shard-bmg: [SKIP][243] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][244] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_psr@pr-sprite-blt.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-8/igt@kms_psr@pr-sprite-blt.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [FAIL][245] ([Intel XE#1729]) -> [SKIP][246] ([Intel XE#362]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-bmg: [SKIP][247] ([Intel XE#3007]) -> [SKIP][248] ([Intel XE#756]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-dg2-set2: [SKIP][249] ([Intel XE#2423] / [i915#2575]) -> [SKIP][250] ([Intel XE#756]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_writeback@writeback-check-output-xrgb2101010.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-464/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][251] ([Intel XE#1130]) -> [SKIP][252] ([Intel XE#1280] / [Intel XE#455]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][253] ([Intel XE#1130]) -> [SKIP][254] ([Intel XE#1126]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfd.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-bmg: [DMESG-FAIL][255] -> [FAIL][256] ([Intel XE#2364]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-3/igt@xe_evict@evict-large-multi-vm-cm.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-1/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap: - shard-bmg: [SKIP][257] ([Intel XE#1130]) -> [SKIP][258] ([Intel XE#2322]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-rebind-imm: - shard-dg2-set2: [SKIP][259] ([Intel XE#1130]) -> [SKIP][260] ([Intel XE#288]) +4 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-rebind-imm.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-rebind-imm.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][261] ([Intel XE#1130]) -> [SKIP][262] ([Intel XE#2360]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt@xe_live_ktest@xe_mocs: - shard-dg2-set2: [FAIL][263] ([Intel XE#1999]) -> [SKIP][264] ([Intel XE#1192]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-464/igt@xe_live_ktest@xe_mocs.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-464/igt@xe_live_ktest@xe_mocs.html * igt@xe_oa@invalid-oa-format-id: - shard-dg2-set2: [SKIP][265] ([Intel XE#1130]) -> [SKIP][266] ([Intel XE#2541]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_oa@invalid-oa-format-id.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@xe_oa@invalid-oa-format-id.html * igt@xe_peer2peer@write: - shard-bmg: [SKIP][267] ([Intel XE#2557]) -> [SKIP][268] ([Intel XE#2427]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@xe_peer2peer@write.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-3/igt@xe_peer2peer@write.html - shard-dg2-set2: [SKIP][269] ([Intel XE#1061]) -> [FAIL][270] ([Intel XE#1173]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_peer2peer@write.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-433/igt@xe_peer2peer@write.html [Intel XE#1050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081 [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#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1541 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [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#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [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#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#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#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2687 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2929 [Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948 [Intel XE#2976]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2976 [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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3097]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3097 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [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#3177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3177 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#3187]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3187 [Intel XE#3230]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3230 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [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#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#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [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#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8086 -> IGTPW_11986 IGTPW_11986: e56435971ab28c341fbac9a6f59185125537f4f6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8086: 18939acec2446c6644644186b090d16e366af8bc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2132-263b21a91964ddc599f4f85cf3511b0aafd2028e: 263b21a91964ddc599f4f85cf3511b0aafd2028e == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/index.html [-- Attachment #2: Type: text/html, Size: 74171 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ CI.xeFULL: failure for scripts/run-test: Keep original prune behaviour (rev3) 2024-10-27 11:00 ` ✗ CI.xeFULL: " Patchwork @ 2024-10-28 15:19 ` Kamil Konieczny 0 siblings, 0 replies; 9+ messages in thread From: Kamil Konieczny @ 2024-10-28 15:19 UTC (permalink / raw) To: igt-dev; +Cc: george.zhang, I915-ci-infra Hi igt-dev, On 2024-10-27 at 11:00:05 -0000, Patchwork wrote: > == Series Details == > > Series: scripts/run-test: Keep original prune behaviour (rev3) > URL : https://patchwork.freedesktop.org/series/140446/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8086_full -> XEIGTPW_11986_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_11986_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_11986_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_11986_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_vblank@query-forked-hang: > - shard-bmg: [PASS][1] -> [SKIP][2] +3 other tests skip > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-5/igt@kms_vblank@query-forked-hang.html > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-3/igt@kms_vblank@query-forked-hang.html > > * igt@xe_exec_balancer@many-cm-parallel-basic: > - shard-bmg: [PASS][3] -> [DMESG-WARN][4] +6 other tests dmesg-warn > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-1/igt@xe_exec_balancer@many-cm-parallel-basic.html > [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-4/igt@xe_exec_balancer@many-cm-parallel-basic.html > - shard-dg2-set2: NOTRUN -> [DMESG-WARN][5] > [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-463/igt@xe_exec_balancer@many-cm-parallel-basic.html > > * igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate: > - shard-bmg: [PASS][6] -> [INCOMPLETE][7] > [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-5/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html > [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-2/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html > > * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch: > - shard-lnl: [PASS][8] -> [FAIL][9] +2 other tests fail > [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html > [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-8/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html > > * igt@xe_exec_fault_mode@many-userptr-invalidate-race: > - shard-bmg: [PASS][10] -> [FAIL][11] +4 other tests fail > [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-3/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html > [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-5/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html > > * igt@xe_exec_fault_mode@once-invalid-userptr-fault: > - shard-lnl: [PASS][12] -> [DMESG-WARN][13] +7 other tests dmesg-warn > [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-7/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html > [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-lnl-3/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html > > * igt@xe_exec_threads@threads-bal-mixed-userptr: > - shard-dg2-set2: [PASS][14] -> [DMESG-WARN][15] +4 other tests dmesg-warn > [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-434/igt@xe_exec_threads@threads-bal-mixed-userptr.html > [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-463/igt@xe_exec_threads@threads-bal-mixed-userptr.html > > * igt@xe_exec_threads@threads-cm-shared-vm-userptr: > - shard-dg2-set2: [PASS][16] -> [FAIL][17] > [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_exec_threads@threads-cm-shared-vm-userptr.html > [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-dg2-466/igt@xe_exec_threads@threads-cm-shared-vm-userptr.html > > > #### Warnings #### > > * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt: > - shard-bmg: [SKIP][18] ([Intel XE#2311]) -> [SKIP][19] +2 other tests skip > [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html > [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: > - shard-bmg: [SKIP][20] ([Intel XE#2313]) -> [SKIP][21] +1 other test skip > [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html > [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: > - shard-bmg: [SKIP][22] ([Intel XE#2763]) -> [SKIP][23] > [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html > [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html > Unrelated to change in scripts/ Regards, Kamil > > Known issues > ------------ > > Here are the changes found in XEIGTPW_11986_full that come from known issues: > ...cut... > > Build changes > ------------- > > * IGT: IGT_8086 -> IGTPW_11986 > > IGTPW_11986: e56435971ab28c341fbac9a6f59185125537f4f6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8086: 18939acec2446c6644644186b090d16e366af8bc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > xe-2132-263b21a91964ddc599f4f85cf3511b0aafd2028e: 263b21a91964ddc599f4f85cf3511b0aafd2028e > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11986/index.html ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-10-28 15:20 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-25 18:29 [Patch v3] scripts/run-test: Keep original prune behaviour george.zhang 2024-10-25 18:50 ` Kamil Konieczny 2024-10-25 20:26 ` ✓ Fi.CI.BAT: success for scripts/run-test: Keep original prune behaviour (rev3) Patchwork 2024-10-25 20:36 ` ✓ CI.xeBAT: " Patchwork 2024-10-26 3:44 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-10-28 13:59 ` Zhang, George 2024-10-28 15:18 ` Kamil Konieczny 2024-10-27 11:00 ` ✗ CI.xeFULL: " Patchwork 2024-10-28 15:19 ` Kamil Konieczny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox