* [PATCH] tests/intel/gem_exec_balancer: Decrease required load in `full` test
@ 2024-12-17 15:06 Sebastian Brzezinka
2024-12-17 16:23 ` Kamil Konieczny
` (6 more replies)
0 siblings, 7 replies; 14+ messages in thread
From: Sebastian Brzezinka @ 2024-12-17 15:06 UTC (permalink / raw)
To: igt-dev; +Cc: kamil.konieczny, krzysztof.karas
Adjust the minimal load in the `full` test. It's a minor tolerance
issue expected 90% got 86.6%.
Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13003
Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
tests/intel/gem_exec_balancer.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/intel/gem_exec_balancer.c b/tests/intel/gem_exec_balancer.c
index c3f0c938b..46ea19a2a 100644
--- a/tests/intel/gem_exec_balancer.c
+++ b/tests/intel/gem_exec_balancer.c
@@ -1815,7 +1815,7 @@ static void full(int i915, unsigned int flags)
free(ci);
- igt_assert_f(load > 0.90,
+ igt_assert_f(load > 0.85,
"minimum load for %d x class:%d was found to be only %.1f%% busy\n",
count, class, load*100);
gem_quiescent_gpu(i915);
--
2.34.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH] tests/intel/gem_exec_balancer: Decrease required load in `full` test 2024-12-17 15:06 [PATCH] tests/intel/gem_exec_balancer: Decrease required load in `full` test Sebastian Brzezinka @ 2024-12-17 16:23 ` Kamil Konieczny 2024-12-17 18:08 ` Andi Shyti 2024-12-18 20:02 ` ✓ i915.CI.BAT: success for " Patchwork ` (5 subsequent siblings) 6 siblings, 1 reply; 14+ messages in thread From: Kamil Konieczny @ 2024-12-17 16:23 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev, krzysztof.karas Hi Sebastian, On 2024-12-17 at 15:06:41 +0000, Sebastian Brzezinka wrote: > Adjust the minimal load in the `full` test. It's a minor tolerance > issue expected 90% got 86.6%. > > Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13003 Remove empty line, with this Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> > --- > tests/intel/gem_exec_balancer.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/intel/gem_exec_balancer.c b/tests/intel/gem_exec_balancer.c > index c3f0c938b..46ea19a2a 100644 > --- a/tests/intel/gem_exec_balancer.c > +++ b/tests/intel/gem_exec_balancer.c > @@ -1815,7 +1815,7 @@ static void full(int i915, unsigned int flags) > > free(ci); > > - igt_assert_f(load > 0.90, > + igt_assert_f(load > 0.85, > "minimum load for %d x class:%d was found to be only %.1f%% busy\n", > count, class, load*100); > gem_quiescent_gpu(i915); > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] tests/intel/gem_exec_balancer: Decrease required load in `full` test 2024-12-17 16:23 ` Kamil Konieczny @ 2024-12-17 18:08 ` Andi Shyti 2024-12-17 19:07 ` Kamil Konieczny 2025-01-15 15:01 ` Kamil Konieczny 0 siblings, 2 replies; 14+ messages in thread From: Andi Shyti @ 2024-12-17 18:08 UTC (permalink / raw) To: Kamil Konieczny, Sebastian Brzezinka, igt-dev, krzysztof.karas Hi, this patch is wrongly formatted: - where is the versioning? (git format patch -v <N>). I think this is v4. - where is the changelog? (please after the '---' section). Please don't overlook at them next time. On Tue, Dec 17, 2024 at 05:23:02PM +0100, Kamil Konieczny wrote: > Hi Sebastian, > On 2024-12-17 at 15:06:41 +0000, Sebastian Brzezinka wrote: > > Adjust the minimal load in the `full` test. It's a minor tolerance > > issue expected 90% got 86.6%. > > > > Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13003 > > Remove empty line, with this Can you fix it before merging to avoid another resend? In any case: Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com> Thanks, Andi > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > > > > Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> > > --- > > tests/intel/gem_exec_balancer.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/tests/intel/gem_exec_balancer.c b/tests/intel/gem_exec_balancer.c > > index c3f0c938b..46ea19a2a 100644 > > --- a/tests/intel/gem_exec_balancer.c > > +++ b/tests/intel/gem_exec_balancer.c > > @@ -1815,7 +1815,7 @@ static void full(int i915, unsigned int flags) > > > > free(ci); > > > > - igt_assert_f(load > 0.90, > > + igt_assert_f(load > 0.85, > > "minimum load for %d x class:%d was found to be only %.1f%% busy\n", > > count, class, load*100); > > gem_quiescent_gpu(i915); > > -- > > 2.34.1 > > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] tests/intel/gem_exec_balancer: Decrease required load in `full` test 2024-12-17 18:08 ` Andi Shyti @ 2024-12-17 19:07 ` Kamil Konieczny 2025-01-15 15:01 ` Kamil Konieczny 1 sibling, 0 replies; 14+ messages in thread From: Kamil Konieczny @ 2024-12-17 19:07 UTC (permalink / raw) To: Andi Shyti; +Cc: Sebastian Brzezinka, igt-dev, krzysztof.karas Hi Andi, On 2024-12-17 at 19:08:16 +0100, Andi Shyti wrote: > Hi, > > this patch is wrongly formatted: > > - where is the versioning? (git format patch -v <N>). I think > this is v4. > - where is the changelog? (please after the '---' section). > > Please don't overlook at them next time. > > On Tue, Dec 17, 2024 at 05:23:02PM +0100, Kamil Konieczny wrote: > > Hi Sebastian, > > On 2024-12-17 at 15:06:41 +0000, Sebastian Brzezinka wrote: > > > Adjust the minimal load in the `full` test. It's a minor tolerance > > > issue expected 90% got 86.6%. > > > > > > Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13003 > > > > Remove empty line, with this > > Can you fix it before merging to avoid another resend? Yes I could do it at merge time, Regards, Kamil Btw such performace measuring is prone to some random noise, when something on DUT will hog system. Regards, Kamil > > In any case: > > Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com> > > Thanks, > Andi > > > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > > > > > > > Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> > > > --- > > > tests/intel/gem_exec_balancer.c | 2 +- > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > > diff --git a/tests/intel/gem_exec_balancer.c b/tests/intel/gem_exec_balancer.c > > > index c3f0c938b..46ea19a2a 100644 > > > --- a/tests/intel/gem_exec_balancer.c > > > +++ b/tests/intel/gem_exec_balancer.c > > > @@ -1815,7 +1815,7 @@ static void full(int i915, unsigned int flags) > > > > > > free(ci); > > > > > > - igt_assert_f(load > 0.90, > > > + igt_assert_f(load > 0.85, > > > "minimum load for %d x class:%d was found to be only %.1f%% busy\n", > > > count, class, load*100); > > > gem_quiescent_gpu(i915); > > > -- > > > 2.34.1 > > > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] tests/intel/gem_exec_balancer: Decrease required load in `full` test 2024-12-17 18:08 ` Andi Shyti 2024-12-17 19:07 ` Kamil Konieczny @ 2025-01-15 15:01 ` Kamil Konieczny 1 sibling, 0 replies; 14+ messages in thread From: Kamil Konieczny @ 2025-01-15 15:01 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: Andi Shyti, igt-dev, krzysztof.karas Hi, On 2024-12-17 at 19:08:16 +0100, Andi Shyti wrote: > Hi, > > this patch is wrongly formatted: > > - where is the versioning? (git format patch -v <N>). I think > this is v4. > - where is the changelog? (please after the '---' section). > > Please don't overlook at them next time. > > On Tue, Dec 17, 2024 at 05:23:02PM +0100, Kamil Konieczny wrote: > > Hi Sebastian, > > On 2024-12-17 at 15:06:41 +0000, Sebastian Brzezinka wrote: > > > Adjust the minimal load in the `full` test. It's a minor tolerance > > > issue expected 90% got 86.6%. > > > > > > Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13003 > > > > Remove empty line, with this > > Can you fix it before merging to avoid another resend? > > In any case: > > Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com> > > Thanks, > Andi > Applied, thanks! Regards, Kamil > > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > > > > > > > Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> > > > --- > > > tests/intel/gem_exec_balancer.c | 2 +- > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > > diff --git a/tests/intel/gem_exec_balancer.c b/tests/intel/gem_exec_balancer.c > > > index c3f0c938b..46ea19a2a 100644 > > > --- a/tests/intel/gem_exec_balancer.c > > > +++ b/tests/intel/gem_exec_balancer.c > > > @@ -1815,7 +1815,7 @@ static void full(int i915, unsigned int flags) > > > > > > free(ci); > > > > > > - igt_assert_f(load > 0.90, > > > + igt_assert_f(load > 0.85, > > > "minimum load for %d x class:%d was found to be only %.1f%% busy\n", > > > count, class, load*100); > > > gem_quiescent_gpu(i915); > > > -- > > > 2.34.1 > > > ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/gem_exec_balancer: Decrease required load in `full` test 2024-12-17 15:06 [PATCH] tests/intel/gem_exec_balancer: Decrease required load in `full` test Sebastian Brzezinka 2024-12-17 16:23 ` Kamil Konieczny @ 2024-12-18 20:02 ` Patchwork 2024-12-18 20:24 ` ✓ Xe.CI.BAT: " Patchwork ` (4 subsequent siblings) 6 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-12-18 20:02 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev == Series Details == Series: tests/intel/gem_exec_balancer: Decrease required load in `full` test URL : https://patchwork.freedesktop.org/series/142734/ State : success == Summary == CI Bug Log - changes from IGT_8164 -> IGTPW_12338 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/index.html Participating hosts (45 -> 43) ------------------------------ Missing (2): fi-cfl-8109u fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12338 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][1] -> [ABORT][2] ([i915#12061]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8164/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/bat-mtlp-6/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-arls-5: [ABORT][3] ([i915#12061]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8164/bat-arls-5/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/bat-arls-5/igt@i915_selftest@live@workarounds.html - {bat-mtlp-9}: [ABORT][5] ([i915#12061]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8164/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/bat-mtlp-9/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8164 -> IGTPW_12338 * Linux: CI_DRM_15864 -> CI_DRM_15865 CI-20190529: 20190529 CI_DRM_15864: e9a5d74b7f60fe6f7d55ebe636ff871214b6caec @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15865: d8f0c44e2ed948dcc45d04a0dfa83612995a702b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12338: 7706aa37f64ecd58af51e1cc553859c5efa222d4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8164: e9d9934c7c6dc6878792d82424fc928e7f6996cb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/index.html ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/gem_exec_balancer: Decrease required load in `full` test 2024-12-17 15:06 [PATCH] tests/intel/gem_exec_balancer: Decrease required load in `full` test Sebastian Brzezinka 2024-12-17 16:23 ` Kamil Konieczny 2024-12-18 20:02 ` ✓ i915.CI.BAT: success for " Patchwork @ 2024-12-18 20:24 ` Patchwork 2024-12-19 7:59 ` ✗ i915.CI.Full: failure " Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-12-18 20:24 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2132 bytes --] == Series Details == Series: tests/intel/gem_exec_balancer: Decrease required load in `full` test URL : https://patchwork.freedesktop.org/series/142734/ State : success == Summary == CI Bug Log - changes from XEIGT_8164_BAT -> XEIGTPW_12338_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12338_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - bat-adlp-7: [DMESG-WARN][1] ([Intel XE#3517]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-adlp-7: [SKIP][3] ([Intel XE#455]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/bat-adlp-7/igt@kms_psr@psr-sprite-plane-onoff.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/bat-adlp-7/igt@kms_psr@psr-sprite-plane-onoff.html [Intel XE#3517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3517 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8164 -> IGTPW_12338 * Linux: xe-2396-e9a5d74b7f60fe6f7d55ebe636ff871214b6caec -> xe-2397-d8f0c44e2ed948dcc45d04a0dfa83612995a702b IGTPW_12338: 7706aa37f64ecd58af51e1cc553859c5efa222d4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8164: e9d9934c7c6dc6878792d82424fc928e7f6996cb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2396-e9a5d74b7f60fe6f7d55ebe636ff871214b6caec: e9a5d74b7f60fe6f7d55ebe636ff871214b6caec xe-2397-d8f0c44e2ed948dcc45d04a0dfa83612995a702b: d8f0c44e2ed948dcc45d04a0dfa83612995a702b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/index.html [-- Attachment #2: Type: text/html, Size: 2743 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/gem_exec_balancer: Decrease required load in `full` test 2024-12-17 15:06 [PATCH] tests/intel/gem_exec_balancer: Decrease required load in `full` test Sebastian Brzezinka ` (2 preceding siblings ...) 2024-12-18 20:24 ` ✓ Xe.CI.BAT: " Patchwork @ 2024-12-19 7:59 ` Patchwork 2024-12-19 17:10 ` Sebastian Brzezinka 2024-12-20 10:36 ` Sebastian Brzezinka 2024-12-19 10:24 ` ✗ Xe.CI.Full: " Patchwork ` (2 subsequent siblings) 6 siblings, 2 replies; 14+ messages in thread From: Patchwork @ 2024-12-19 7:59 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev == Series Details == Series: tests/intel/gem_exec_balancer: Decrease required load in `full` test URL : https://patchwork.freedesktop.org/series/142734/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15865_full -> IGTPW_12338_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12338_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12338_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_12338/index.html Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12338_full: ### IGT changes ### #### Possible regressions #### * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk2/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@full-late: - shard-dg2: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-1/igt@gem_exec_balancer@full-late.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@gem_exec_balancer@full-late.html - shard-dg1: [PASS][4] -> [FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-17/igt@gem_exec_balancer@full-late.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@gem_exec_balancer@full-late.html * igt@gem_exec_schedule@wide: - shard-tglu: [PASS][6] -> [INCOMPLETE][7] +1 other test incomplete [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-4/igt@gem_exec_schedule@wide.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-2/igt@gem_exec_schedule@wide.html * igt@gem_tiled_swapping@non-threaded: - shard-tglu: NOTRUN -> [FAIL][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-3/igt@gem_tiled_swapping@non-threaded.html * igt@i915_pm_rpm@debugfs-forcewake-user: - shard-rkl: NOTRUN -> [SKIP][9] +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@i915_pm_rpm@debugfs-forcewake-user.html Known issues ------------ Here are the changes found in IGTPW_12338_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8411]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-12/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8411]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-7/igt@api_intel_bb@object-reloc-purge-cache.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +11 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +7 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-5/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +23 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][18] -> [INCOMPLETE][19] ([i915#12392] / [i915#7297]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-12/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#7697]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#6335]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][23] ([i915#6335]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-3/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][24] ([i915#8562]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +4 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb2/igt@gem_ctx_persistence@engines-mixed-process.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@gem_ctx_sseu@engines.html * igt@gem_eio@suspend: - shard-dg1: [PASS][28] -> [DMESG-WARN][29] ([i915#4423]) +4 other tests dmesg-warn [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-12/igt@gem_eio@suspend.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@gem_eio@suspend.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#4525]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][33] ([i915#11965]) +4 other tests fail [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-2/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_reloc@basic-active: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#3281]) +11 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3281]) +8 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-4/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3281]) +10 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4812]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-12/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4537] / [i915#4812]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: NOTRUN -> [ABORT][42] ([i915#7975] / [i915#8213]) +1 other test abort [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@gem_exec_suspend@basic-s4-devices.html - shard-rkl: NOTRUN -> [ABORT][43] ([i915#7975] / [i915#8213]) +1 other test abort [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4860]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4860]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) +4 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify.html - shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][49] ([i915#4613]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk8/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][50] ([i915#4613]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +8 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +7 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-7/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4083]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-2/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4083]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3282]) +6 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][56] ([i915#2658]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb2/igt@gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][57] ([i915#2658]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-5/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#3282]) +6 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-6/igt@gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [WARN][59] ([i915#2658]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk7/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite@basic-random: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#3282]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@gem_pwrite@basic-random.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#13033]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-10/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: NOTRUN -> [TIMEOUT][62] ([i915#12964]) +1 other test timeout [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4270]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@gem_pxp@reject-modify-context-protection-off-3.html - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-rkl: NOTRUN -> [TIMEOUT][65] ([i915#12917] / [i915#12964]) +2 other tests timeout [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#5190] / [i915#8428]) +5 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-2/igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#8428]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][68] +442 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#8411]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@noreloc-s3: - shard-rkl: [PASS][70] -> [DMESG-FAIL][71] ([i915#12964]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-1/igt@gem_softpin@noreloc-s3.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4079]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@gem_tiled_pread_basic.html * igt@gem_tiled_swapping@non-threaded: - shard-rkl: NOTRUN -> [DMESG-FAIL][73] ([i915#12964]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@gem_tiled_swapping@non-threaded.html - shard-glk: NOTRUN -> [ABORT][74] ([i915#13263]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk8/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3297]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4958]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3297]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-tglu: NOTRUN -> [SKIP][80] ([i915#3297]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-3/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_workarounds@suspend-resume-context: - shard-glk: [PASS][81] -> [INCOMPLETE][82] ([i915#13356]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-glk8/igt@gem_workarounds@suspend-resume-context.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk9/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][83] -> [ABORT][84] ([i915#5566]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-glk1/igt@gen9_exec_parse@allowed-single.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk4/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-start-out: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#2527]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-3/igt@gen9_exec_parse@unaligned-access.html - shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@gen9_exec_parse@unaligned-access.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#2527] / [i915#2856]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-10/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@reload-no-display: - shard-tglu: NOTRUN -> [ABORT][90] ([i915#13010]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-3/igt@i915_module_load@reload-no-display.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#8399]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-2/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#8399]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#8399]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rpm@system-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][94] ([i915#12797]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk6/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#11681]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@i915_pm_rps@thresholds-idle.html - shard-dg1: NOTRUN -> [SKIP][96] ([i915#11681]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@i915_pm_rps@thresholds-idle.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#6245]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-3/igt@i915_query@hwconfig_table.html * igt@i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][98] ([i915#9311]) +1 other test dmesg-warn [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb7/igt@i915_selftest@mock.html * igt@i915_selftest@mock@memory_region: - shard-tglu-1: NOTRUN -> [DMESG-WARN][99] ([i915#9311]) +1 other test dmesg-warn [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][100] ([i915#7443]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-8/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: NOTRUN -> [INCOMPLETE][101] ([i915#4817]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@i915_suspend@fence-restore-untiled.html * igt@intel_hwmon@hwmon-write: - shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#7707]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4212]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#5190]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4212]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#4212]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-7/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#8709]) +7 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#8709]) +11 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-3/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#8709]) +11 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#8709]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [CRASH][111] ([i915#13287]) +3 other tests crash [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-a-dp-4: - shard-dg2: NOTRUN -> [INCOMPLETE][112] ([i915#13287]) +1 other test incomplete [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_async_flips@crc@pipe-a-dp-4.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][113] ([i915#13287]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-mtlp: [PASS][114] -> [FAIL][115] ([i915#11808] / [i915#5956]) +1 other test fail [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg1: [PASS][117] -> [FAIL][118] ([i915#5956]) +1 other test fail [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-14/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#5286]) +9 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html - shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#5286]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5286]) +4 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#3638]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#3638]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5190]) +6 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-12/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#6095]) +142 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#12313]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#12313]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][131] ([i915#12313]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#6095]) +39 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6095]) +19 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#12805]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][135] ([i915#12805]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#6095]) +13 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#12313]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#6095]) +29 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#6095]) +156 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#12313]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#6095]) +100 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#7213]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#3742]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_cdclk@plane-scaling.html - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#3742]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_cdclk@plane-scaling.html - shard-dg1: NOTRUN -> [SKIP][145] ([i915#3742]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4087]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#7828]) +5 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-9/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][148] +11 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#7828]) +14 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#7828]) +9 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#7828]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-5/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#7828]) +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html - shard-dg1: NOTRUN -> [SKIP][153] ([i915#7828]) +7 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#7118] / [i915#9424]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_content_protection@atomic-dpms.html - shard-rkl: NOTRUN -> [SKIP][155] ([i915#7118] / [i915#9424]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@kms_content_protection@atomic-dpms.html - shard-dg1: NOTRUN -> [SKIP][156] ([i915#7116] / [i915#9424]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][157] ([i915#7173]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#3116]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#9424]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#6944] / [i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-5/igt@kms_content_protection@lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][162] ([i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#7118]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][164] ([i915#7116]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][165] ([i915#6944] / [i915#7116] / [i915#7118]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-9/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#6944]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][168] ([i915#1339] / [i915#7173]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#3555]) +6 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#13049]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#13049]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#13049]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#8814]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#8814]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-3/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][175] ([i915#12358] / [i915#7882]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk6/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][176] ([i915#12358]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#4103] / [i915#4213]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][178] ([i915#4103]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg1: NOTRUN -> [SKIP][179] ([i915#4103] / [i915#4213]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - shard-glk: [PASS][180] -> [FAIL][181] ([i915#2346]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-glk5/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk8/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#13046] / [i915#5354]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: NOTRUN -> [FAIL][183] ([i915#2346]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-mtlp: [PASS][184] -> [FAIL][185] ([i915#2346]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-8/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#9067]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#8588]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3804]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#8812]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8812]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-2/igt@kms_dsc@dsc-basic.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-12/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#3840]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][194] ([i915#3840]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-12/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#3840]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#3840]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-5/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3840] / [i915#9053]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3955]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][199] ([i915#3469]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-2/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#1839]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#9337]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-9/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#658]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][203] ([i915#658]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#658]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3637]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#3637]) +5 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#9934]) +6 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#8381]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@kms_flip@2x-flip-vs-fences.html - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#8381]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-7/igt@kms_flip@2x-flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][210] ([i915#8381]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#3637]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#9934]) +9 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#9934]) +7 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][214] ([i915#12745] / [i915#4839]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][215] ([i915#12745]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [PASS][216] -> [FAIL][217] ([i915#11989]) +7 other tests fail [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-5/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate@a-vga1: - shard-snb: NOTRUN -> [FAIL][218] ([i915#11989]) +1 other test fail [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb4/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8810] / [i915#8813]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#8810]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#2672]) +4 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#2587] / [i915#2672]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][223] ([i915#2587] / [i915#2672]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#2672] / [i915#3555]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/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-dg2: NOTRUN -> [SKIP][225] ([i915#2672]) +4 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/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-tglu-1: NOTRUN -> [SKIP][226] ([i915#2672] / [i915#3555]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555] / [i915#5190]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#2672] / [i915#3555]) +4 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][230] ([i915#2587] / [i915#2672]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#5274]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#5354]) +30 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#1825]) +9 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-snb: [PASS][236] -> [SKIP][237] +3 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][238] +37 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][239] +21 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][240] +47 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#3458]) +6 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#3023]) +33 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#1825]) +58 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][244] +442 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#8708]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#8708]) +12 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#3458]) +14 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#8708]) +16 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#6118]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-3/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#12713]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-5/igt@kms_hdr@brightness-with-hdr.html - shard-rkl: NOTRUN -> [SKIP][251] ([i915#12713]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8228]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8228]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-3/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#10656]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_joiner@basic-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#10656]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-4/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#12388]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#10656]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-3/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#4816]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][259] ([i915#12756] / [i915#1982]) +1 other test incomplete [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-2-size-128: - shard-rkl: NOTRUN -> [DMESG-WARN][260] ([i915#12917] / [i915#12964]) +3 other tests dmesg-warn [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-2-size-128.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8821]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-3/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#3555]) +9 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#12247]) +4 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#12247] / [i915#9423]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#12247]) +12 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#12247] / [i915#6953]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-10/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#12247] / [i915#6953]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#12247]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-10/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#12247] / [i915#3555] / [i915#6953]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#12247]) +7 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#12247] / [i915#6953] / [i915#9423]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][272] ([i915#12247] / [i915#6953]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#12247]) +8 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#12247]) +7 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#5354]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@kms_pm_backlight@bad-brightness.html - shard-dg1: NOTRUN -> [SKIP][276] ([i915#5354]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#12343]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_pm_backlight@brightness-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][278] ([i915#12343]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@kms_pm_backlight@brightness-with-dpms.html - shard-dg2: NOTRUN -> [SKIP][279] ([i915#12343]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#9812]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#9685]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-3/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#9685]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#3828]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_pm_dc@dc5-retention-flops.html - shard-tglu: NOTRUN -> [SKIP][284] ([i915#3828]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-2/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#9685]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#12916]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][287] -> [SKIP][288] ([i915#9519]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][289] -> [SKIP][290] ([i915#9519]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-11/igt@kms_pm_rpm@dpms-non-lpsp.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@fences: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#4077]) +2 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-3/igt@kms_pm_rpm@fences.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#9519]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html - shard-rkl: NOTRUN -> [SKIP][293] ([i915#9519]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#9519]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#6524]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#6524]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-3/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-tglu: NOTRUN -> [SKIP][297] ([i915#6524]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-2/igt@kms_prime@basic-modeset-hybrid.html - shard-dg2: NOTRUN -> [SKIP][298] ([i915#6524] / [i915#6805]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-2/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][299] ([i915#11520]) +13 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-glk: NOTRUN -> [SKIP][300] ([i915#11520]) +12 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk6/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#11520]) +5 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#12316]) +2 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#9808]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#11520]) +4 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#11520]) +13 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#11520]) +9 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][307] ([i915#11520]) +6 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#9683]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#9683]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_psr2_su@page_flip-p010.html - shard-tglu: NOTRUN -> [SKIP][310] ([i915#9683]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#9688]) +9 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#1072] / [i915#9732]) +18 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-7/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#9732]) +15 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#9732]) +9 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_psr@psr2-primary-mmap-cpu.html * igt@kms_psr@psr2-sprite-blt: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#1072] / [i915#9732]) +16 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@kms_psr@psr2-sprite-blt.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#1072] / [i915#9732]) +35 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_psr@psr2-suspend.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#12755]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-8/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#5289]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#5289]) +2 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#5289]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#12755]) +2 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none: - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#3555] / [i915#5030] / [i915#9041]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#5030]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#5030] / [i915#9041]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html * igt@kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][325] ([i915#13179]) +1 other test abort [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@kms_selftest@drm_framebuffer.html - shard-glk: NOTRUN -> [ABORT][326] ([i915#13179]) +1 other test abort [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk2/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][327] ([i915#5465]) +2 other tests fail [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb4/igt@kms_setmode@basic.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][328] ([i915#8623]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [PASS][329] -> [FAIL][330] ([i915#9196]) +1 other test fail [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1: - shard-glk: [PASS][331] -> [INCOMPLETE][332] ([i915#12276]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-glk4/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk1/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][333] ([i915#9906]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-7/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flipline: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#3555]) +5 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#11920]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-1/igt@kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][336] ([i915#11920]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_vrr@lobf.html - shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#11920]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_vrr@lobf.html - shard-dg1: NOTRUN -> [SKIP][338] ([i915#11920]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#9906]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][340] ([i915#9906]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#2437]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#2437] / [i915#9412]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][343] ([i915#2437] / [i915#9412]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][344] ([i915#2437]) +2 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk4/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#2437] / [i915#9412]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][346] +6 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-8/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][347] ([i915#2436]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#2435]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-2/igt@perf@per-context-mode-unprivileged.html - shard-dg1: NOTRUN -> [SKIP][349] ([i915#2433]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-double-start: - shard-mtlp: NOTRUN -> [FAIL][350] ([i915#4349]) +2 other tests fail [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-5/igt@perf_pmu@busy-double-start.html * igt@perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][351] ([i915#8850]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@frequency@gt0: - shard-dg1: NOTRUN -> [FAIL][352] ([i915#12549] / [i915#6806]) +1 other test fail [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@module-unload: - shard-tglu: [PASS][353] -> [ABORT][354] ([i915#13010]) +3 other tests abort [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-10/igt@perf_pmu@module-unload.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#8516]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-read: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#3708]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][357] ([i915#3708] / [i915#4077]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-8/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#3291] / [i915#3708]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][359] ([i915#3291] / [i915#3708]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][360] ([i915#3708]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#3708]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#9917]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-7/igt@sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][363] ([i915#9917]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-2/igt@sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][364] ([i915#9917]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@bind-unbind-vf@vf-4: - shard-tglu: NOTRUN -> [FAIL][365] ([i915#12910]) +19 other tests fail [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-8/igt@sriov_basic@bind-unbind-vf@vf-4.html * igt@sriov_basic@bind-unbind-vf@vf-5: - shard-mtlp: NOTRUN -> [FAIL][366] ([i915#12910]) +9 other tests fail [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@sriov_basic@bind-unbind-vf@vf-5.html * igt@syncobj_timeline@etime-single-wait-all-available-unsubmitted: - shard-rkl: [PASS][367] -> [DMESG-WARN][368] ([i915#12964]) +40 other tests dmesg-warn [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-7/igt@syncobj_timeline@etime-single-wait-all-available-unsubmitted.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@syncobj_timeline@etime-single-wait-all-available-unsubmitted.html * igt@sysfs_heartbeat_interval@nopreempt: - shard-rkl: NOTRUN -> [DMESG-WARN][369] ([i915#12964]) +37 other tests dmesg-warn [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@sysfs_heartbeat_interval@nopreempt.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][370] +30 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_eio@kms: - shard-dg2: [FAIL][371] ([i915#5784]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-7/igt@gem_eio@kms.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@gem_eio@kms.html * igt@gem_exec_big@single: - shard-tglu: [ABORT][373] ([i915#11713]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-2/igt@gem_exec_big@single.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@gem_exec_big@single.html * igt@gem_lmem_swapping@parallel-multi: - shard-dg2: [SKIP][375] -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-11/igt@gem_lmem_swapping@parallel-multi.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-5/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [DMESG-WARN][377] ([i915#5493]) -> [PASS][378] +1 other test pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [ABORT][379] ([i915#10729]) -> [PASS][380] +1 other test pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-1/igt@gem_mmap_offset@clear-via-pagefault.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-8/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-tglu: [SKIP][381] ([i915#4270]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-10/igt@gem_pxp@reject-modify-context-protection-on.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-10/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_workarounds@suspend-resume-fd: - shard-rkl: [DMESG-FAIL][383] ([i915#12964]) -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][385] ([i915#10887] / [i915#12817] / [i915#9820]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_async_flips@crc: - shard-snb: [INCOMPLETE][387] ([i915#13287] / [i915#9878]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-snb7/igt@kms_async_flips@crc.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb1/igt@kms_async_flips@crc.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-1: - shard-snb: [INCOMPLETE][389] ([i915#13287]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-snb7/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb1/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-mtlp: [DMESG-FAIL][391] ([i915#13314]) -> [PASS][392] +1 other test pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_busy@extended-modeset-hang-newfb-with-reset: - shard-rkl: [DMESG-WARN][393] ([i915#12964]) -> [PASS][394] +18 other tests pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-7/igt@kms_busy@extended-modeset-hang-newfb-with-reset.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_busy@extended-modeset-hang-newfb-with-reset.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy: - shard-dg1: [DMESG-WARN][395] ([i915#4423]) -> [PASS][396] +1 other test pass [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-17/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2: [SKIP][397] ([i915#3555]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-snb: [FAIL][399] ([i915#11989]) -> [PASS][400] +5 other tests pass [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-snb1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb2/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-dg2: [FAIL][401] ([i915#11989]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-10/igt@kms_flip@flip-vs-absolute-wf_vblank.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a4: - shard-dg1: [FAIL][403] ([i915#11989]) -> [PASS][404] +2 other tests pass [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-17/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a4.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a4.html * igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a2: - shard-rkl: [FAIL][405] ([i915#11989]) -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a2.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a2.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1: - shard-tglu: [FAIL][407] ([i915#11989]) -> [PASS][408] +4 other tests pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-8/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-7/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html * igt@kms_hdr@static-swap: - shard-dg2: [SKIP][409] ([i915#3555] / [i915#8228]) -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-11/igt@kms_hdr@static-swap.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_hdr@static-swap.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][411] ([i915#9295]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][413] ([i915#9519]) -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][415] ([i915#9519]) -> [PASS][416] +1 other test pass [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@perf_pmu@render-node-busy-idle@vcs1: - shard-mtlp: [FAIL][417] ([i915#4349]) -> [PASS][418] +3 other tests pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle@vcs1.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle@vcs1.html #### Warnings #### * igt@gem_pxp@create-regular-context-1: - shard-rkl: [TIMEOUT][419] ([i915#12917] / [i915#12964]) -> [SKIP][420] ([i915#4270]) +1 other test skip [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-4/igt@gem_pxp@create-regular-context-1.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [FAIL][421] ([i915#12940]) -> [TIMEOUT][422] ([i915#12917] / [i915#12964]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-buffer.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@gem_pxp@hw-rejects-pxp-buffer.html - shard-tglu: [FAIL][423] ([i915#12940]) -> [SKIP][424] ([i915#13033]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-9/igt@gem_pxp@hw-rejects-pxp-buffer.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: [SKIP][425] ([i915#4270]) -> [TIMEOUT][426] ([i915#12917] / [i915#12964]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-on.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-on.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][427] ([i915#9820]) -> [ABORT][428] ([i915#4391] / [i915#4423] / [i915#9820]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][429] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][430] ([i915#10131] / [i915#9820]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_async_flips@crc: - shard-dg2: [WARN][431] ([i915#13287]) -> [INCOMPLETE][432] ([i915#13287] / [i915#9878]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-2/igt@kms_async_flips@crc.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_async_flips@crc.html * igt@kms_async_flips@crc-atomic: - shard-dg2: [WARN][433] ([i915#13287]) -> [INCOMPLETE][434] ([i915#13287]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-8/igt@kms_async_flips@crc-atomic.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_async_flips@crc-atomic.html * igt@kms_content_protection@atomic: - shard-dg2: [SKIP][435] ([i915#7118] / [i915#9424]) -> [TIMEOUT][436] ([i91 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/index.html ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: ✗ i915.CI.Full: failure for tests/intel/gem_exec_balancer: Decrease required load in `full` test 2024-12-19 7:59 ` ✗ i915.CI.Full: failure " Patchwork @ 2024-12-19 17:10 ` Sebastian Brzezinka 2024-12-20 10:36 ` Sebastian Brzezinka 1 sibling, 0 replies; 14+ messages in thread From: Sebastian Brzezinka @ 2024-12-19 17:10 UTC (permalink / raw) To: igt-dev; +Cc: I915-ci-infra On 2024-12-19 at 07:59:58 +0000, Patchwork wrote: > == Series Details == > > Series: tests/intel/gem_exec_balancer: Decrease required load in `full` test > URL : https://patchwork.freedesktop.org/series/142734/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_15865_full -> IGTPW_12338_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12338_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12338_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_12338/index.html > > Participating hosts (11 -> 11) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_12338_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_eio@in-flight-suspend: > - shard-glk: NOTRUN -> [INCOMPLETE][1] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk2/igt@gem_eio@in-flight-suspend.html > > * igt@gem_exec_balancer@full-late: > - shard-dg2: [PASS][2] -> [FAIL][3] > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-1/igt@gem_exec_balancer@full-late.html > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@gem_exec_balancer@full-late.html > - shard-dg1: [PASS][4] -> [FAIL][5] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-17/igt@gem_exec_balancer@full-late.html > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@gem_exec_balancer@full-late.html > > * igt@gem_exec_schedule@wide: > - shard-tglu: [PASS][6] -> [INCOMPLETE][7] +1 other test incomplete > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-4/igt@gem_exec_schedule@wide.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-2/igt@gem_exec_schedule@wide.html > > * igt@gem_tiled_swapping@non-threaded: > - shard-tglu: NOTRUN -> [FAIL][8] > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-3/igt@gem_tiled_swapping@non-threaded.html > > * igt@i915_pm_rpm@debugfs-forcewake-user: > - shard-rkl: NOTRUN -> [SKIP][9] +1 other test skip > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@i915_pm_rpm@debugfs-forcewake-user.html > > > Known issues -- Best regards, Sebastian Brzezinka ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: ✗ i915.CI.Full: failure for tests/intel/gem_exec_balancer: Decrease required load in `full` test 2024-12-19 7:59 ` ✗ i915.CI.Full: failure " Patchwork 2024-12-19 17:10 ` Sebastian Brzezinka @ 2024-12-20 10:36 ` Sebastian Brzezinka 2024-12-23 11:50 ` Ravali, JupallyX 1 sibling, 1 reply; 14+ messages in thread From: Sebastian Brzezinka @ 2024-12-20 10:36 UTC (permalink / raw) To: igt-dev; +Cc: i915-ci-infra On 2024-12-19 at 07:59:58 +0000, Patchwork wrote: > == Series Details == > > Series: tests/intel/gem_exec_balancer: Decrease required load in `full` test > URL : https://patchwork.freedesktop.org/series/142734/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_15865_full -> IGTPW_12338_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12338_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12338_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_12338/index.html > > Participating hosts (11 -> 11) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_12338_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_eio@in-flight-suspend: > - shard-glk: NOTRUN -> [INCOMPLETE][1] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk2/igt@gem_eio@in-flight-suspend.html > > * igt@gem_exec_balancer@full-late: > - shard-dg2: [PASS][2] -> [FAIL][3] > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-1/igt@gem_exec_balancer@full-late.html > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@gem_exec_balancer@full-late.html > - shard-dg1: [PASS][4] -> [FAIL][5] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-17/igt@gem_exec_balancer@full-late.html > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@gem_exec_balancer@full-late.html > > * igt@gem_exec_schedule@wide: > - shard-tglu: [PASS][6] -> [INCOMPLETE][7] +1 other test incomplete > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-4/igt@gem_exec_schedule@wide.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-2/igt@gem_exec_schedule@wide.html > > * igt@gem_tiled_swapping@non-threaded: > - shard-tglu: NOTRUN -> [FAIL][8] > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-3/igt@gem_tiled_swapping@non-threaded.html > > * igt@i915_pm_rpm@debugfs-forcewake-user: > - shard-rkl: NOTRUN -> [SKIP][9] +1 other test skip > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@i915_pm_rpm@debugfs-forcewake-user.html > > These are not related to my change, Please re-run. Thank you. -- Best regards, Sebastian Brzezinka ^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: ✗ i915.CI.Full: failure for tests/intel/gem_exec_balancer: Decrease required load in `full` test 2024-12-20 10:36 ` Sebastian Brzezinka @ 2024-12-23 11:50 ` Ravali, JupallyX 0 siblings, 0 replies; 14+ messages in thread From: Ravali, JupallyX @ 2024-12-23 11:50 UTC (permalink / raw) To: i915-ci-infra@lists.freedesktop.org, igt-dev@lists.freedesktop.org Hi, https://patchwork.freedesktop.org/series/142734/- Re-reported. Xe.CI.Full - Addressed failures, Xe cannot be re-reported. i915.CI.Full - Re-reported. Thanks, Ravali -----Original Message----- From: I915-ci-infra <i915-ci-infra-bounces@lists.freedesktop.org> On Behalf Of Sebastian Brzezinka Sent: 20 December 2024 16:06 To: igt-dev@lists.freedesktop.org Cc: i915-ci-infra@lists.freedesktop.org Subject: Re: ✗ i915.CI.Full: failure for tests/intel/gem_exec_balancer: Decrease required load in `full` test On 2024-12-19 at 07:59:58 +0000, Patchwork wrote: > == Series Details == > > Series: tests/intel/gem_exec_balancer: Decrease required load in `full` test > URL : https://patchwork.freedesktop.org/series/142734/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_15865_full -> IGTPW_12338_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_12338_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12338_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_12338/index.html > > Participating hosts (11 -> 11) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_12338_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_eio@in-flight-suspend: > - shard-glk: NOTRUN -> [INCOMPLETE][1] > [1]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk2/igt@ge > m_eio@in-flight-suspend.html > > * igt@gem_exec_balancer@full-late: > - shard-dg2: [PASS][2] -> [FAIL][3] > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-1/igt@gem_exec_balancer@full-late.html > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@gem_exec_balancer@full-late.html > - shard-dg1: [PASS][4] -> [FAIL][5] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-17/igt@gem_exec_balancer@full-late.html > [5]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@ > gem_exec_balancer@full-late.html > > * igt@gem_exec_schedule@wide: > - shard-tglu: [PASS][6] -> [INCOMPLETE][7] +1 other test incomplete > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-4/igt@gem_exec_schedule@wide.html > [7]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-2/igt@ > gem_exec_schedule@wide.html > > * igt@gem_tiled_swapping@non-threaded: > - shard-tglu: NOTRUN -> [FAIL][8] > [8]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-3/igt@ > gem_tiled_swapping@non-threaded.html > > * igt@i915_pm_rpm@debugfs-forcewake-user: > - shard-rkl: NOTRUN -> [SKIP][9] +1 other test skip > [9]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@i > 915_pm_rpm@debugfs-forcewake-user.html > > These are not related to my change, Please re-run. Thank you. -- Best regards, Sebastian Brzezinka ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/gem_exec_balancer: Decrease required load in `full` test 2024-12-17 15:06 [PATCH] tests/intel/gem_exec_balancer: Decrease required load in `full` test Sebastian Brzezinka ` (3 preceding siblings ...) 2024-12-19 7:59 ` ✗ i915.CI.Full: failure " Patchwork @ 2024-12-19 10:24 ` Patchwork 2024-12-19 10:29 ` [PATCH] " Krzysztof Karas 2024-12-23 10:56 ` ✓ i915.CI.Full: success for " Patchwork 6 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-12-19 10:24 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 55793 bytes --] == Series Details == Series: tests/intel/gem_exec_balancer: Decrease required load in `full` test URL : https://patchwork.freedesktop.org/series/142734/ State : failure == Summary == CI Bug Log - changes from XEIGT_8164_full -> XEIGTPW_12338_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12338_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12338_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_12338_full: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_flip@flip-vs-suspend-interruptible@d-dp2: - shard-bmg: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible@d-dp2.html * igt@kms_psr@psr2-primary-page-flip@edp-1: - shard-lnl: [PASS][4] -> [FAIL][5] +1 other test fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-lnl-6/igt@kms_psr@psr2-primary-page-flip@edp-1.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-lnl-1/igt@kms_psr@psr2-primary-page-flip@edp-1.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-bmg: [PASS][6] -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@xe_pm@s4-vm-bind-unbind-all.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-7/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_vm@mmap-style-bind-userptr-either-side-full: - shard-bmg: [PASS][8] -> [ABORT][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-1/igt@xe_vm@mmap-style-bind-userptr-either-side-full.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@xe_vm@mmap-style-bind-userptr-either-side-full.html #### Warnings #### * igt@xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [INCOMPLETE][10] ([Intel XE#1473]) -> [DMESG-FAIL][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@xe_evict@evict-beng-mixed-threads-large.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-3/igt@xe_evict@evict-beng-mixed-threads-large.html Known issues ------------ Here are the changes found in XEIGTPW_12338_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-suspend-resume: - shard-bmg: [PASS][12] -> [INCOMPLETE][13] ([Intel XE#3861]) +1 other test incomplete [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-5/igt@kms_async_flips@async-flip-suspend-resume.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#3767]) +23 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-463/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#2550]) +17 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-434/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_async_flips@crc-atomic@pipe-a-dp-2: - shard-bmg: NOTRUN -> [INCOMPLETE][16] ([Intel XE#3781]) +2 other tests incomplete [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@kms_async_flips@crc-atomic@pipe-a-dp-2.html * igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][17] ([Intel XE#3781]) +1 other test incomplete [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-436/igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-6.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2370]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2327]) +6 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#316]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-434/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +7 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2328]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +5 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-463/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#610]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#610]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#2191]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2314] / [Intel XE#2894]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#367]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#367]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#787]) +55 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-463/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2887]) +12 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-dp-2: - shard-bmg: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#3862]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-dp-2.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-dp-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#3432]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#2705]) +1 other test incomplete [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_cdclk@mode-transition: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2724]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-3/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2325]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-2/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#306]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-436/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2252]) +7 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#373]) +5 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-463/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2390]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-8/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-dg2-set2: NOTRUN -> [FAIL][44] ([Intel XE#1178]) +1 other test fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-436/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][45] ([Intel XE#1178]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-7/igt@kms_content_protection@legacy@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2321]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-8/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2320]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2291]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][49] -> [DMESG-WARN][50] ([Intel XE#877]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#2291]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#1475]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-lnl-2/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-lnl-6/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2286]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dp_aux_dev: - shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#3009]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-1/igt@kms_dp_aux_dev.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@kms_dp_aux_dev.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#1138]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-5/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#1135]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-436/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#2316]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][62] -> [FAIL][63] ([Intel XE#3321]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-dp2-hdmi-a3: - shard-bmg: [PASS][64] -> [INCOMPLETE][65] ([Intel XE#2597]) +2 other tests incomplete [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-dp2-hdmi-a3.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4: - shard-dg2-set2: [PASS][66] -> [FAIL][67] ([Intel XE#301]) +2 other tests fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html * igt@kms_flip@flip-vs-expired-vblank@c-dp4: - shard-dg2-set2: [PASS][68] -> [FAIL][69] ([Intel XE#301] / [Intel XE#3321]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [PASS][70] -> [INCOMPLETE][71] ([Intel XE#2049] / [Intel XE#2597]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-436/igt@kms_flip@flip-vs-suspend.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-435/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][72] ([Intel XE#2597]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@b-dp2: - shard-bmg: NOTRUN -> [FAIL][73] ([Intel XE#3664]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible@b-dp2.html * igt@kms_flip@flip-vs-suspend@d-dp4: - shard-dg2-set2: [PASS][74] -> [INCOMPLETE][75] ([Intel XE#2049]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-436/igt@kms_flip@flip-vs-suspend@d-dp4.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-435/igt@kms_flip@flip-vs-suspend@d-dp4.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-lnl: [PASS][76] -> [FAIL][77] ([Intel XE#886]) +2 other tests fail [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-lnl-6/igt@kms_flip@plain-flip-ts-check-interruptible.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-lnl-8/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#455]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2293]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2312]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [FAIL][82] ([Intel XE#2333]) +15 other tests fail [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#651]) +14 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2311]) +23 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2313]) +23 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#653]) +11 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [PASS][87] -> [SKIP][88] ([Intel XE#3012]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-3/igt@kms_joiner@basic-force-big-joiner.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2927]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#346]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-434/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [PASS][91] -> [SKIP][92] ([Intel XE#2571]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: [PASS][93] -> [FAIL][94] ([Intel XE#361]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2763]) +5 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#870]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-8/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#870]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2391]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-7/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#3309]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-3/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-8/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#1489]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#1489]) +6 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2387]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-8/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-basic: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-433/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2234]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-3/igt@kms_psr@psr2-primary-render.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#3414]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@kms_rotation_crc@bad-pixel-format.html - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#3414]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-436/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: [PASS][110] -> [SKIP][111] ([Intel XE#1435]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-3/igt@kms_setmode@clone-exclusive-crtc.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-2: - shard-bmg: [PASS][112] -> [INCOMPLETE][113] ([Intel XE#3864]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-2.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-2.html * igt@kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#1499]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-5/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - shard-lnl: [PASS][115] -> [FAIL][116] ([Intel XE#1522]) +1 other test fail [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-lnl-3/igt@kms_vrr@flipline.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-lnl-4/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#756]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#756]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-435/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-436/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1126]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_drm_fdinfo@virtual-utilization-single-idle: - shard-bmg: NOTRUN -> [FAIL][121] ([Intel XE#3869]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@xe_drm_fdinfo@virtual-utilization-single-idle.html * igt@xe_eudebug@discovery-empty: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2905]) +8 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@xe_eudebug@discovery-empty.html * igt@xe_eudebug_online@resume-dss: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2905]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-433/igt@xe_eudebug_online@resume-dss.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: NOTRUN -> [TIMEOUT][124] ([Intel XE#1473] / [Intel XE#402]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-beng-threads-large: - shard-bmg: NOTRUN -> [TIMEOUT][125] ([Intel XE#1473]) +1 other test timeout [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-8/igt@xe_evict@evict-beng-threads-large.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: NOTRUN -> [TIMEOUT][126] ([Intel XE#1473] / [Intel XE#2472]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-no-exec-basic: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2322]) +5 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-basic.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#288]) +9 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt@xe_exec_reset@cm-gt-reset: - shard-bmg: [PASS][129] -> [INCOMPLETE][130] ([Intel XE#3592]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-5/igt@xe_exec_reset@cm-gt-reset.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-8/igt@xe_exec_reset@cm-gt-reset.html * igt@xe_oa@syncs-userptr-wait-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2541] / [Intel XE#3573]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-434/igt@xe_oa@syncs-userptr-wait-cfg.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2248]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2838] / [Intel XE#979]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-433/igt@xe_pat@pat-index-xehpc.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2427]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-3/igt@xe_peer2peer@write.html * igt@xe_pm@s3-basic: - shard-bmg: [PASS][135] -> [DMESG-WARN][136] ([Intel XE#569]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-1/igt@xe_pm@s3-basic.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@xe_pm@s3-basic.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2284]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-5/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_query@multigpu-query-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#944]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-8/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#944]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-433/igt@xe_query@multigpu-query-topology.html #### Possible fixes #### * igt@kms_async_flips@alternate-sync-async-flip-atomic: - shard-bmg: [FAIL][140] ([Intel XE#3701] / [Intel XE#3718]) -> [PASS][141] [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip-atomic.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2: - shard-bmg: [FAIL][142] ([Intel XE#3802]) -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html * igt@kms_async_flips@async-flip-with-page-flip-events: - shard-dg2-set2: [INCOMPLETE][144] -> [PASS][145] +2 other tests pass [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-434/igt@kms_async_flips@async-flip-with-page-flip-events.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [FAIL][146] ([Intel XE#911]) -> [PASS][147] +3 other tests pass [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-dp-4: - shard-dg2-set2: [FAIL][148] -> [PASS][149] +3 other tests pass [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-bmg: [SKIP][150] ([Intel XE#2291]) -> [PASS][151] +5 other tests pass [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][152] ([Intel XE#2425]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-8/igt@kms_display_modes@extended-mode-basic.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [SKIP][154] ([Intel XE#2373]) -> [PASS][155] [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_feature_discovery@display-2x.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-8/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][156] ([Intel XE#301]) -> [PASS][157] +2 other tests pass [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][158] ([Intel XE#2316]) -> [PASS][159] +1 other test pass [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@blocking-wf_vblank: - shard-lnl: [FAIL][160] ([Intel XE#886]) -> [PASS][161] +2 other tests pass [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-lnl-2/igt@kms_flip@blocking-wf_vblank.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-lnl-1/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][162] ([Intel XE#2882]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3: - shard-bmg: [FAIL][164] ([Intel XE#3321]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank@d-dp4: - shard-dg2-set2: [FAIL][166] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html * igt@kms_plane@plane-position-hole-dpms: - shard-bmg: [INCOMPLETE][168] ([Intel XE#1035]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@kms_plane@plane-position-hole-dpms.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-8/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][170] ([Intel XE#361]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@xe_ccs@suspend-resume: - shard-dg2-set2: [INCOMPLETE][172] ([Intel XE#1616]) -> [PASS][173] [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-436/igt@xe_ccs@suspend-resume.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-434/igt@xe_ccs@suspend-resume.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][174] ([Intel XE#1473]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_threads@threads-hang-fd-userptr-invalidate: - shard-dg2-set2: [DMESG-WARN][176] -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-434/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-463/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate.html * igt@xe_gt_freq@freq_suspend: - shard-bmg: [INCOMPLETE][178] ([Intel XE#3865]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@xe_gt_freq@freq_suspend.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@xe_gt_freq@freq_suspend.html * igt@xe_live_ktest@xe_dma_buf: - shard-bmg: [SKIP][180] ([Intel XE#1192]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-3/igt@xe_live_ktest@xe_dma_buf.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-1/igt@xe_live_ktest@xe_dma_buf.html - shard-lnl: [SKIP][182] ([Intel XE#1192]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-lnl-5/igt@xe_live_ktest@xe_dma_buf.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-lnl-3/igt@xe_live_ktest@xe_dma_buf.html #### Warnings #### * igt@kms_content_protection@legacy: - shard-bmg: [SKIP][184] ([Intel XE#2341]) -> [FAIL][185] ([Intel XE#1178]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_content_protection@legacy.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-7/igt@kms_content_protection@legacy.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][186] ([Intel XE#2311]) -> [SKIP][187] ([Intel XE#2312]) +4 other tests skip [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][188] ([Intel XE#2312]) -> [SKIP][189] ([Intel XE#2311]) +11 other tests skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [FAIL][190] ([Intel XE#2333]) -> [SKIP][191] ([Intel XE#2312]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-rte.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][192] ([Intel XE#2312]) -> [FAIL][193] ([Intel XE#2333]) +2 other tests fail [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][194] ([Intel XE#2313]) -> [SKIP][195] ([Intel XE#2312]) +6 other tests skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][196] ([Intel XE#2312]) -> [SKIP][197] ([Intel XE#2313]) +8 other tests skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][198] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][199] ([Intel XE#3544]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][200] ([Intel XE#1500]) -> [SKIP][201] ([Intel XE#362]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@xe_evict@evict-mixed-threads-large: - shard-bmg: [DMESG-FAIL][202] -> [TIMEOUT][203] ([Intel XE#1473] / [Intel XE#2472]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-7/igt@xe_evict@evict-mixed-threads-large.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-5/igt@xe_evict@evict-mixed-threads-large.html * igt@xe_evict@evict-threads-large: - shard-bmg: [TIMEOUT][204] ([Intel XE#1473]) -> [TIMEOUT][205] ([Intel XE#1473] / [Intel XE#2472]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-2/igt@xe_evict@evict-threads-large.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-5/igt@xe_evict@evict-threads-large.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: [ABORT][206] ([Intel XE#3765]) -> [ABORT][207] ([Intel XE#3421]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8164/shard-bmg-8/igt@xe_wedged@wedged-at-any-timeout.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/shard-bmg-6/igt@xe_wedged@wedged-at-any-timeout.html [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [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#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#3592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3592 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3664 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3701 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3765]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3765 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781 [Intel XE#3802]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3802 [Intel XE#3861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3861 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3864 [Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865 [Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [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#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_8164 -> IGTPW_12338 * Linux: xe-2396-e9a5d74b7f60fe6f7d55ebe636ff871214b6caec -> xe-2397-d8f0c44e2ed948dcc45d04a0dfa83612995a702b IGTPW_12338: 7706aa37f64ecd58af51e1cc553859c5efa222d4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8164: e9d9934c7c6dc6878792d82424fc928e7f6996cb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2396-e9a5d74b7f60fe6f7d55ebe636ff871214b6caec: e9a5d74b7f60fe6f7d55ebe636ff871214b6caec xe-2397-d8f0c44e2ed948dcc45d04a0dfa83612995a702b: d8f0c44e2ed948dcc45d04a0dfa83612995a702b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12338/index.html [-- Attachment #2: Type: text/html, Size: 63372 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] tests/intel/gem_exec_balancer: Decrease required load in `full` test 2024-12-17 15:06 [PATCH] tests/intel/gem_exec_balancer: Decrease required load in `full` test Sebastian Brzezinka ` (4 preceding siblings ...) 2024-12-19 10:24 ` ✗ Xe.CI.Full: " Patchwork @ 2024-12-19 10:29 ` Krzysztof Karas 2024-12-23 10:56 ` ✓ i915.CI.Full: success for " Patchwork 6 siblings, 0 replies; 14+ messages in thread From: Krzysztof Karas @ 2024-12-19 10:29 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev, kamil.konieczny, Andi Shyti Hi Sebastian, On 2024-12-17 at 15:06:41 +0000, Sebastian Brzezinka wrote: > Adjust the minimal load in the `full` test. It's a minor tolerance > issue expected 90% got 86.6%. > > Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13003 > Andi already commented on some formatting improvements. Apart from that LGTM. Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> Krzysztof > Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> > --- > tests/intel/gem_exec_balancer.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/intel/gem_exec_balancer.c b/tests/intel/gem_exec_balancer.c > index c3f0c938b..46ea19a2a 100644 > --- a/tests/intel/gem_exec_balancer.c > +++ b/tests/intel/gem_exec_balancer.c > @@ -1815,7 +1815,7 @@ static void full(int i915, unsigned int flags) > > free(ci); > > - igt_assert_f(load > 0.90, > + igt_assert_f(load > 0.85, > "minimum load for %d x class:%d was found to be only %.1f%% busy\n", > count, class, load*100); > gem_quiescent_gpu(i915); > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ i915.CI.Full: success for tests/intel/gem_exec_balancer: Decrease required load in `full` test 2024-12-17 15:06 [PATCH] tests/intel/gem_exec_balancer: Decrease required load in `full` test Sebastian Brzezinka ` (5 preceding siblings ...) 2024-12-19 10:29 ` [PATCH] " Krzysztof Karas @ 2024-12-23 10:56 ` Patchwork 6 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-12-23 10:56 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev == Series Details == Series: tests/intel/gem_exec_balancer: Decrease required load in `full` test URL : https://patchwork.freedesktop.org/series/142734/ State : success == Summary == CI Bug Log - changes from CI_DRM_15865_full -> IGTPW_12338_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/index.html Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_12338_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][1] ([i915#8411]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-12/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][2] ([i915#8411]) +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-7/igt@api_intel_bb@object-reloc-purge-cache.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8414]) +11 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8414]) +7 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-5/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +23 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#9323]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][9] -> [INCOMPLETE][10] ([i915#12392] / [i915#7297]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-12/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#6335]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#6335]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-3/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#8562]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][16] ([i915#1099]) +4 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb2/igt@gem_ctx_persistence@engines-mixed-process.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@gem_ctx_sseu@engines.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][19] ([i915#13390]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk2/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@suspend: - shard-dg1: [PASS][20] -> [DMESG-WARN][21] ([i915#4423]) +4 other tests dmesg-warn [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-12/igt@gem_eio@suspend.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@gem_eio@suspend.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#4812]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@full-late: - shard-dg2: [PASS][23] -> [FAIL][24] ([i915#13364]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-1/igt@gem_exec_balancer@full-late.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@gem_exec_balancer@full-late.html - shard-dg1: [PASS][25] -> [FAIL][26] ([i915#13364]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-17/igt@gem_exec_balancer@full-late.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@gem_exec_balancer@full-late.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#4525]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#4525]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][29] ([i915#11965]) +4 other tests fail [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-2/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_reloc@basic-active: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#3281]) +11 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3281]) +8 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#3281]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-4/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3281]) +10 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4812]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-12/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@wide: - shard-tglu: [PASS][38] -> [INCOMPLETE][39] ([i915#13391]) +1 other test incomplete [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-4/igt@gem_exec_schedule@wide.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-2/igt@gem_exec_schedule@wide.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: NOTRUN -> [ABORT][40] ([i915#7975] / [i915#8213]) +1 other test abort [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@gem_exec_suspend@basic-s4-devices.html - shard-rkl: NOTRUN -> [ABORT][41] ([i915#7975] / [i915#8213]) +1 other test abort [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify.html - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4613]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4613]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][47] ([i915#4613]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk8/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][48] ([i915#4613]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4077]) +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4077]) +7 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-7/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4083]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-2/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4083]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3282]) +6 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][54] ([i915#2658]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb2/igt@gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][55] ([i915#2658]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-5/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#3282]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-6/igt@gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [WARN][57] ([i915#2658]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk7/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite@basic-random: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@gem_pwrite@basic-random.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#13033]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-10/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: NOTRUN -> [TIMEOUT][60] ([i915#12964]) +1 other test timeout [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4270]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@gem_pxp@reject-modify-context-protection-off-3.html - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-rkl: NOTRUN -> [TIMEOUT][63] ([i915#12917] / [i915#12964]) +2 other tests timeout [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#5190] / [i915#8428]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-2/igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8428]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][66] +442 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#8411]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@noreloc-s3: - shard-rkl: [PASS][68] -> [DMESG-FAIL][69] ([i915#12964]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-1/igt@gem_softpin@noreloc-s3.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4079]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@gem_tiled_pread_basic.html * igt@gem_tiled_swapping@non-threaded: - shard-rkl: NOTRUN -> [DMESG-FAIL][71] ([i915#12964]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@gem_tiled_swapping@non-threaded.html - shard-tglu: NOTRUN -> [FAIL][72] ([i915#12941]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-3/igt@gem_tiled_swapping@non-threaded.html - shard-glk: NOTRUN -> [ABORT][73] ([i915#13263]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk8/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3297]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3297]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4958]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3297]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-dg1: NOTRUN -> [SKIP][78] ([i915#3297]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-tglu: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-3/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_workarounds@suspend-resume-context: - shard-glk: [PASS][80] -> [INCOMPLETE][81] ([i915#13356]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-glk8/igt@gem_workarounds@suspend-resume-context.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk9/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][82] -> [ABORT][83] ([i915#5566]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-glk1/igt@gen9_exec_parse@allowed-single.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk4/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-start-out: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#2527]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#2856]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-3/igt@gen9_exec_parse@unaligned-access.html - shard-rkl: NOTRUN -> [SKIP][87] ([i915#2527]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@gen9_exec_parse@unaligned-access.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-10/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@reload-no-display: - shard-tglu: NOTRUN -> [ABORT][89] ([i915#13010]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-3/igt@i915_module_load@reload-no-display.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#8399]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-2/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#8399]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#8399]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rpm@debugfs-forcewake-user: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#13328]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@i915_pm_rpm@debugfs-forcewake-user.html * igt@i915_pm_rpm@system-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][94] ([i915#12797]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk6/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#11681]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@i915_pm_rps@thresholds-idle.html - shard-dg1: NOTRUN -> [SKIP][96] ([i915#11681]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@i915_pm_rps@thresholds-idle.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#6245]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-3/igt@i915_query@hwconfig_table.html * igt@i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][98] ([i915#9311]) +1 other test dmesg-warn [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb7/igt@i915_selftest@mock.html * igt@i915_selftest@mock@memory_region: - shard-tglu-1: NOTRUN -> [DMESG-WARN][99] ([i915#9311]) +1 other test dmesg-warn [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][100] ([i915#7443]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-8/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: NOTRUN -> [INCOMPLETE][101] ([i915#4817]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@i915_suspend@fence-restore-untiled.html * igt@intel_hwmon@hwmon-write: - shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#7707]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4212]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#5190]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4212]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#4212]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-7/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#8709]) +7 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#8709]) +11 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-3/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#8709]) +11 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#8709]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [CRASH][111] ([i915#13287]) +3 other tests crash [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-a-dp-4: - shard-dg2: NOTRUN -> [INCOMPLETE][112] ([i915#13287]) +1 other test incomplete [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_async_flips@crc@pipe-a-dp-4.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][113] ([i915#13287]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-mtlp: [PASS][114] -> [FAIL][115] ([i915#11808] / [i915#5956]) +1 other test fail [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg1: [PASS][117] -> [FAIL][118] ([i915#5956]) +1 other test fail [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-14/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#5286]) +9 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html - shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#5286]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5286]) +4 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#3638]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#3638]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5190]) +6 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-12/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#6095]) +142 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#12313]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#12313]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][131] ([i915#12313]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#6095]) +39 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6095]) +19 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#12805]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][135] ([i915#12805]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#6095]) +13 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#12313]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#6095]) +29 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#6095]) +156 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#12313]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#6095]) +100 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#7213]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#3742]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_cdclk@plane-scaling.html - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#3742]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_cdclk@plane-scaling.html - shard-dg1: NOTRUN -> [SKIP][145] ([i915#3742]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4087]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#7828]) +5 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-9/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][148] +11 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#7828]) +14 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#7828]) +9 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#7828]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-5/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#7828]) +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html - shard-dg1: NOTRUN -> [SKIP][153] ([i915#7828]) +7 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#7118] / [i915#9424]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_content_protection@atomic-dpms.html - shard-rkl: NOTRUN -> [SKIP][155] ([i915#7118] / [i915#9424]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@kms_content_protection@atomic-dpms.html - shard-dg1: NOTRUN -> [SKIP][156] ([i915#7116] / [i915#9424]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][157] ([i915#7173]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#3116]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#9424]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#6944] / [i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-5/igt@kms_content_protection@lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][162] ([i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#7118]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][164] ([i915#7116]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][165] ([i915#6944] / [i915#7116] / [i915#7118]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-9/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#6944]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][168] ([i915#1339] / [i915#7173]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#3555]) +6 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#13049]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#13049]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#13049]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#8814]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#8814]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-3/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][175] ([i915#12358] / [i915#7882]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk6/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][176] ([i915#12358]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#4103] / [i915#4213]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][178] ([i915#4103]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg1: NOTRUN -> [SKIP][179] ([i915#4103] / [i915#4213]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - shard-glk: [PASS][180] -> [FAIL][181] ([i915#2346]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-glk5/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk8/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#13046] / [i915#5354]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: NOTRUN -> [FAIL][183] ([i915#2346]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-mtlp: [PASS][184] -> [FAIL][185] ([i915#2346]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-8/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#9067]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#8588]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3804]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#8812]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8812]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-2/igt@kms_dsc@dsc-basic.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-12/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#3840]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][194] ([i915#3840]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-12/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#3840]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#3840]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-5/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3840] / [i915#9053]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3955]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][199] ([i915#3469]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-2/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#1839]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#9337]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-9/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#658]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][203] ([i915#658]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#658]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3637]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#3637]) +5 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#9934]) +6 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#8381]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@kms_flip@2x-flip-vs-fences.html - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#8381]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-7/igt@kms_flip@2x-flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][210] ([i915#8381]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#3637]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#9934]) +9 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#9934]) +7 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][214] ([i915#12745] / [i915#4839]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][215] ([i915#12745]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [PASS][216] -> [FAIL][217] ([i915#11989]) +7 other tests fail [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-5/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate@a-vga1: - shard-snb: NOTRUN -> [FAIL][218] ([i915#11989]) +1 other test fail [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb4/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8810] / [i915#8813]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#8810]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#2672]) +4 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#2587] / [i915#2672]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][223] ([i915#2587] / [i915#2672]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#2672] / [i915#3555]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/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-dg2: NOTRUN -> [SKIP][225] ([i915#2672]) +4 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/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-tglu-1: NOTRUN -> [SKIP][226] ([i915#2672] / [i915#3555]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555] / [i915#5190]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#2672] / [i915#3555]) +4 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][230] ([i915#2587] / [i915#2672]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#5274]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#5354]) +30 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#1825]) +9 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-snb: [PASS][236] -> [SKIP][237] +3 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][238] +37 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][239] +21 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][240] +47 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#3458]) +6 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#3023]) +33 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#1825]) +58 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][244] +442 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#8708]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#8708]) +12 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#3458]) +14 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#8708]) +16 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#6118]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-3/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#12713]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-5/igt@kms_hdr@brightness-with-hdr.html - shard-rkl: NOTRUN -> [SKIP][251] ([i915#12713]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8228]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8228]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-3/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#10656]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_joiner@basic-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#10656]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-4/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#12388]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#10656]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-3/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#4816]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][259] ([i915#12756] / [i915#1982]) +1 other test incomplete [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-2-size-128: - shard-rkl: NOTRUN -> [DMESG-WARN][260] ([i915#12917] / [i915#12964]) +3 other tests dmesg-warn [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-2-size-128.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8821]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-3/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#3555]) +9 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#12247]) +4 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#12247] / [i915#9423]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#12247]) +12 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#12247] / [i915#6953]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-10/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#12247] / [i915#6953]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#12247]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-10/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#12247] / [i915#3555] / [i915#6953]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#12247]) +7 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#12247] / [i915#6953] / [i915#9423]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][272] ([i915#12247] / [i915#6953]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#12247]) +8 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#12247]) +7 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#5354]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@kms_pm_backlight@bad-brightness.html - shard-dg1: NOTRUN -> [SKIP][276] ([i915#5354]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#12343]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_pm_backlight@brightness-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][278] ([i915#12343]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@kms_pm_backlight@brightness-with-dpms.html - shard-dg2: NOTRUN -> [SKIP][279] ([i915#12343]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#9812]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#9685]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-3/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#9685]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#3828]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_pm_dc@dc5-retention-flops.html - shard-tglu: NOTRUN -> [SKIP][284] ([i915#3828]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-2/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#9685]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#12916]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][287] -> [SKIP][288] ([i915#9519]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][289] -> [SKIP][290] ([i915#9519]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-11/igt@kms_pm_rpm@dpms-non-lpsp.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@fences: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#4077]) +2 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-3/igt@kms_pm_rpm@fences.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#9519]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html - shard-rkl: NOTRUN -> [SKIP][293] ([i915#9519]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#9519]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#6524]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#6524]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-3/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-tglu: NOTRUN -> [SKIP][297] ([i915#6524]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-2/igt@kms_prime@basic-modeset-hybrid.html - shard-dg2: NOTRUN -> [SKIP][298] ([i915#6524] / [i915#6805]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-2/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][299] ([i915#11520]) +13 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-glk: NOTRUN -> [SKIP][300] ([i915#11520]) +12 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk6/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#11520]) +5 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#12316]) +2 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#9808]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#11520]) +4 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#11520]) +13 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#11520]) +9 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][307] ([i915#11520]) +6 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#9683]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#9683]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_psr2_su@page_flip-p010.html - shard-tglu: NOTRUN -> [SKIP][310] ([i915#9683]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#9688]) +9 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#1072] / [i915#9732]) +18 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-7/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#9732]) +15 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#9732]) +9 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_psr@psr2-primary-mmap-cpu.html * igt@kms_psr@psr2-sprite-blt: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#1072] / [i915#9732]) +16 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@kms_psr@psr2-sprite-blt.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#1072] / [i915#9732]) +35 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_psr@psr2-suspend.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#12755]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-8/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#5289]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#5289]) +2 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#5289]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#12755]) +2 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none: - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#3555] / [i915#5030] / [i915#9041]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#5030]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#5030] / [i915#9041]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html * igt@kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][325] ([i915#13179]) +1 other test abort [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@kms_selftest@drm_framebuffer.html - shard-glk: NOTRUN -> [ABORT][326] ([i915#13179]) +1 other test abort [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk2/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][327] ([i915#5465]) +2 other tests fail [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb4/igt@kms_setmode@basic.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][328] ([i915#8623]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [PASS][329] -> [FAIL][330] ([i915#9196]) +1 other test fail [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1: - shard-glk: [PASS][331] -> [INCOMPLETE][332] ([i915#12276]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-glk4/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk1/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][333] ([i915#9906]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-7/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flipline: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#3555]) +5 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#11920]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-1/igt@kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][336] ([i915#11920]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@kms_vrr@lobf.html - shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#11920]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@kms_vrr@lobf.html - shard-dg1: NOTRUN -> [SKIP][338] ([i915#11920]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#9906]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-4/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][340] ([i915#9906]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#2437]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#2437] / [i915#9412]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][343] ([i915#2437] / [i915#9412]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][344] ([i915#2437]) +2 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-glk4/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#2437] / [i915#9412]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][346] +6 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-8/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][347] ([i915#2436]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#2435]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-2/igt@perf@per-context-mode-unprivileged.html - shard-dg1: NOTRUN -> [SKIP][349] ([i915#2433]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-double-start: - shard-mtlp: NOTRUN -> [FAIL][350] ([i915#4349]) +2 other tests fail [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-5/igt@perf_pmu@busy-double-start.html * igt@perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][351] ([i915#8850]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-7/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@frequency@gt0: - shard-dg1: NOTRUN -> [FAIL][352] ([i915#12549] / [i915#6806]) +1 other test fail [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@module-unload: - shard-tglu: [PASS][353] -> [ABORT][354] ([i915#13010]) +3 other tests abort [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-10/igt@perf_pmu@module-unload.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#8516]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-1/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-read: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#3708]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][357] ([i915#3708] / [i915#4077]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-8/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#3291] / [i915#3708]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][359] ([i915#3291] / [i915#3708]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][360] ([i915#3708]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#3708]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#9917]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-7/igt@sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][363] ([i915#9917]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-2/igt@sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][364] ([i915#9917]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-14/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@bind-unbind-vf@vf-4: - shard-tglu: NOTRUN -> [FAIL][365] ([i915#12910]) +19 other tests fail [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-8/igt@sriov_basic@bind-unbind-vf@vf-4.html * igt@sriov_basic@bind-unbind-vf@vf-5: - shard-mtlp: NOTRUN -> [FAIL][366] ([i915#12910]) +9 other tests fail [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@sriov_basic@bind-unbind-vf@vf-5.html * igt@syncobj_timeline@etime-single-wait-all-available-unsubmitted: - shard-rkl: [PASS][367] -> [DMESG-WARN][368] ([i915#12964]) +40 other tests dmesg-warn [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-7/igt@syncobj_timeline@etime-single-wait-all-available-unsubmitted.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@syncobj_timeline@etime-single-wait-all-available-unsubmitted.html * igt@sysfs_heartbeat_interval@nopreempt: - shard-rkl: NOTRUN -> [DMESG-WARN][369] ([i915#12964]) +37 other tests dmesg-warn [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-5/igt@sysfs_heartbeat_interval@nopreempt.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][370] +30 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_eio@kms: - shard-dg2: [FAIL][371] ([i915#5784]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-7/igt@gem_eio@kms.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-11/igt@gem_eio@kms.html * igt@gem_exec_big@single: - shard-tglu: [ABORT][373] ([i915#11713]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-2/igt@gem_exec_big@single.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@gem_exec_big@single.html * igt@gem_lmem_swapping@parallel-multi: - shard-dg2: [SKIP][375] -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-11/igt@gem_lmem_swapping@parallel-multi.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-5/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [DMESG-WARN][377] ([i915#5493]) -> [PASS][378] +1 other test pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [ABORT][379] ([i915#10729]) -> [PASS][380] +1 other test pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-1/igt@gem_mmap_offset@clear-via-pagefault.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-8/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-tglu: [SKIP][381] ([i915#4270]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-10/igt@gem_pxp@reject-modify-context-protection-on.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-10/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_workarounds@suspend-resume-fd: - shard-rkl: [DMESG-FAIL][383] ([i915#12964]) -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][385] ([i915#10887] / [i915#12817] / [i915#9820]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_async_flips@crc: - shard-snb: [INCOMPLETE][387] ([i915#13287] / [i915#9878]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-snb7/igt@kms_async_flips@crc.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb1/igt@kms_async_flips@crc.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-1: - shard-snb: [INCOMPLETE][389] ([i915#13287]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-snb7/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb1/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-mtlp: [DMESG-FAIL][391] ([i915#13314]) -> [PASS][392] +1 other test pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_busy@extended-modeset-hang-newfb-with-reset: - shard-rkl: [DMESG-WARN][393] ([i915#12964]) -> [PASS][394] +18 other tests pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-7/igt@kms_busy@extended-modeset-hang-newfb-with-reset.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_busy@extended-modeset-hang-newfb-with-reset.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy: - shard-dg1: [DMESG-WARN][395] ([i915#4423]) -> [PASS][396] +1 other test pass [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-17/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-18/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2: [SKIP][397] ([i915#3555]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-snb: [FAIL][399] ([i915#11989]) -> [PASS][400] +5 other tests pass [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-snb1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-snb2/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-dg2: [FAIL][401] ([i915#11989]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-10/igt@kms_flip@flip-vs-absolute-wf_vblank.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a4: - shard-dg1: [FAIL][403] ([i915#11989]) -> [PASS][404] +2 other tests pass [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-17/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a4.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-17/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a4.html * igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a2: - shard-rkl: [FAIL][405] ([i915#11989]) -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a2.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a2.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1: - shard-tglu: [FAIL][407] ([i915#11989]) -> [PASS][408] +4 other tests pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-8/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-7/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html * igt@kms_hdr@static-swap: - shard-dg2: [SKIP][409] ([i915#3555] / [i915#8228]) -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-11/igt@kms_hdr@static-swap.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_hdr@static-swap.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][411] ([i915#9295]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][413] ([i915#9519]) -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-3/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][415] ([i915#9519]) -> [PASS][416] +1 other test pass [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@perf_pmu@render-node-busy-idle@vcs1: - shard-mtlp: [FAIL][417] ([i915#4349]) -> [PASS][418] +3 other tests pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle@vcs1.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle@vcs1.html #### Warnings #### * igt@gem_pxp@create-regular-context-1: - shard-rkl: [TIMEOUT][419] ([i915#12917] / [i915#12964]) -> [SKIP][420] ([i915#4270]) +1 other test skip [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-4/igt@gem_pxp@create-regular-context-1.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-4/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [FAIL][421] ([i915#12940]) -> [TIMEOUT][422] ([i915#12917] / [i915#12964]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-buffer.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@gem_pxp@hw-rejects-pxp-buffer.html - shard-tglu: [FAIL][423] ([i915#12940]) -> [SKIP][424] ([i915#13033]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-tglu-9/igt@gem_pxp@hw-rejects-pxp-buffer.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-tglu-4/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: [SKIP][425] ([i915#4270]) -> [TIMEOUT][426] ([i915#12917] / [i915#12964]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-on.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-on.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][427] ([i915#9820]) -> [ABORT][428] ([i915#4391] / [i915#4423] / [i915#9820]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][429] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][430] ([i915#10131] / [i915#9820]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_async_flips@crc: - shard-dg2: [WARN][431] ([i915#13287]) -> [INCOMPLETE][432] ([i915#13287] / [i915#9878]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-2/igt@kms_async_flips@crc.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_async_flips@crc.html * igt@kms_async_flips@crc-atomic: - shard-dg2: [WARN][433] ([i915#13287]) -> [INCOMPLETE][434] ([i915#13287]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-8/igt@kms_async_flips@crc-atomic.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_async_flips@crc-atomic.html * igt@kms_content_protection@atomic: - shard-dg2: [SKIP][435] ([i915#7118] / [i915#9424]) -> [TIMEOUT][436] ([i915#7173]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg2-8/igt@kms_content_protection@atomic.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/shard-dg2-10/igt@kms_content_protection@atomic.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][437] ([i915#9433]) -> [SKIP][438] ([i915#9424]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15865/shard-dg1-13/igt@kms_content_protection@me == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12338/index.html ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2025-01-15 15:01 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-12-17 15:06 [PATCH] tests/intel/gem_exec_balancer: Decrease required load in `full` test Sebastian Brzezinka 2024-12-17 16:23 ` Kamil Konieczny 2024-12-17 18:08 ` Andi Shyti 2024-12-17 19:07 ` Kamil Konieczny 2025-01-15 15:01 ` Kamil Konieczny 2024-12-18 20:02 ` ✓ i915.CI.BAT: success for " Patchwork 2024-12-18 20:24 ` ✓ Xe.CI.BAT: " Patchwork 2024-12-19 7:59 ` ✗ i915.CI.Full: failure " Patchwork 2024-12-19 17:10 ` Sebastian Brzezinka 2024-12-20 10:36 ` Sebastian Brzezinka 2024-12-23 11:50 ` Ravali, JupallyX 2024-12-19 10:24 ` ✗ Xe.CI.Full: " Patchwork 2024-12-19 10:29 ` [PATCH] " Krzysztof Karas 2024-12-23 10:56 ` ✓ i915.CI.Full: success for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox