* [igt-dev] [PATCH] tests/amdgpu: add amdgpu reset test
@ 2023-09-22 7:43 Jesse Zhang
2023-09-22 8:57 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Jesse Zhang @ 2023-09-22 7:43 UTC (permalink / raw)
To: igt-dev; +Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
Signed-off-by: Tim Huang <tim.huang@amd.com>
---
tests/amdgpu/amd_deadlock.c | 40 +++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c
index d805b8d18..1b9254d06 100644
--- a/tests/amdgpu/amd_deadlock.c
+++ b/tests/amdgpu/amd_deadlock.c
@@ -27,6 +27,9 @@
#include "lib/amdgpu/amd_command_submission.h"
#include "lib/amdgpu/amd_dispatch.h"
#include "lib/amdgpu/amd_deadlock_helpers.h"
+#include <sys/stat.h>
+#include <fcntl.h>
+#include <sys/sysmacros.h>
static void
amdgpu_dispatch_hang_slow_gfx(amdgpu_device_handle device_handle)
@@ -70,6 +73,41 @@ amdgpu_gfx_illegal_mem_access(amdgpu_device_handle device_handle)
bad_access_helper(device_handle, 0, AMDGPU_HW_IP_GFX);
}
+static void
+amdgpu_gpu_reset_test(amdgpu_device_handle device_handle, int drm_amdgpu)
+{
+ int r;
+ char debugfs_path[256], tmp[10];
+ int fd;
+ struct stat sbuf;
+ amdgpu_context_handle context_handle;
+ uint32_t hang_state, hangs;
+
+ r = amdgpu_cs_ctx_create(device_handle, &context_handle);
+ igt_assert_eq(r, 0);
+
+ r = fstat(drm_amdgpu, &sbuf);
+ igt_assert_eq(r, 0);
+
+ sprintf(debugfs_path, "/sys/kernel/debug/dri/%d/amdgpu_gpu_recover", minor(sbuf.st_rdev));
+ fd = open(debugfs_path, O_RDONLY);
+ igt_assert_fd(fd);
+
+ r = read(fd, tmp, sizeof(tmp)/sizeof(char));
+ igt_assert_lt(0,r);
+
+ r = amdgpu_cs_query_reset_state(context_handle, &hang_state, &hangs);
+ igt_assert_eq(r, 0);
+ igt_assert_eq(hang_state, AMDGPU_CTX_UNKNOWN_RESET);
+
+ close(fd);
+ r = amdgpu_cs_ctx_free(context_handle);
+ igt_assert_eq(r, 0);
+
+ amdgpu_gfx_dispatch_test(device_handle, AMDGPU_HW_IP_GFX);
+ amdgpu_gfx_dispatch_test(device_handle, AMDGPU_HW_IP_COMPUTE);
+}
+
igt_main
{
amdgpu_device_handle device;
@@ -116,6 +154,8 @@ igt_main
igt_subtest("dispatch_hang_slow_gfx")
amdgpu_dispatch_hang_slow_gfx(device);
+ igt_subtest("amdgpu-reset-test")
+ amdgpu_gpu_reset_test(device,fd);
igt_fixture {
amdgpu_device_deinitialize(device);
drm_close_driver(fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* [igt-dev] ✓ CI.xeBAT: success for tests/amdgpu: add amdgpu reset test 2023-09-22 7:43 [igt-dev] [PATCH] tests/amdgpu: add amdgpu reset test Jesse Zhang @ 2023-09-22 8:57 ` Patchwork 2023-09-22 9:00 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-09-22 8:57 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1580 bytes --] == Series Details == Series: tests/amdgpu: add amdgpu reset test URL : https://patchwork.freedesktop.org/series/124096/ State : success == Summary == CI Bug Log - changes from XEIGT_7496_BAT -> XEIGTPW_9846_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 3) ------------------------------ Missing (1): bat-adlp-7 Known issues ------------ Here are the changes found in XEIGTPW_9846_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * {igt@xe_create@create-execqueues-leak}: - bat-atsm-2: [FAIL][1] ([Intel XE#524]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7496/bat-atsm-2/igt@xe_create@create-execqueues-leak.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9846/bat-atsm-2/igt@xe_create@create-execqueues-leak.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 Build changes ------------- * IGT: IGT_7496 -> IGTPW_9846 IGTPW_9846: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/index.html IGT_7496: 6a96d3ad178e468b74a58cc10dead2f57bc1558d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-389-7e0d40e7aa56f19a9b3e9bc492003085f9be01c3: 7e0d40e7aa56f19a9b3e9bc492003085f9be01c3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9846/index.html [-- Attachment #2: Type: text/html, Size: 2152 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/amdgpu: add amdgpu reset test 2023-09-22 7:43 [igt-dev] [PATCH] tests/amdgpu: add amdgpu reset test Jesse Zhang 2023-09-22 8:57 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork @ 2023-09-22 9:00 ` Patchwork 2023-09-22 9:37 ` [igt-dev] [PATCH] " Kamil Konieczny ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-09-22 9:00 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3053 bytes --] == Series Details == Series: tests/amdgpu: add amdgpu reset test URL : https://patchwork.freedesktop.org/series/124096/ State : success == Summary == CI Bug Log - changes from CI_DRM_13668 -> IGTPW_9846 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/index.html Participating hosts (39 -> 37) ------------------------------ Missing (2): fi-hsw-4770 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9846 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@smem: - bat-jsl-3: [PASS][1] -> [INCOMPLETE][2] ([i915#9275]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [PASS][3] -> [DMESG-FAIL][4] ([i915#5334]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_lrc: - bat-adlp-9: [PASS][5] -> [INCOMPLETE][6] ([i915#4983] / [i915#7913]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/bat-adlp-9/igt@i915_selftest@live@gt_lrc.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/bat-adlp-9/igt@i915_selftest@live@gt_lrc.html * igt@i915_suspend@basic-s3-without-i915: - bat-jsl-3: [PASS][7] -> [FAIL][8] ([fdo#103375]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7496 -> IGTPW_9846 CI-20190529: 20190529 CI_DRM_13668: 5413464caa6cf37b1f511ba81d894ca40a28cbf2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9846: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/index.html IGT_7496: 6a96d3ad178e468b74a58cc10dead2f57bc1558d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/index.html [-- Attachment #2: Type: text/html, Size: 3673 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH] tests/amdgpu: add amdgpu reset test 2023-09-22 7:43 [igt-dev] [PATCH] tests/amdgpu: add amdgpu reset test Jesse Zhang 2023-09-22 8:57 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork 2023-09-22 9:00 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-09-22 9:37 ` Kamil Konieczny 2023-09-22 20:28 ` Luben Tuikov 2023-09-23 8:18 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Kamil Konieczny @ 2023-09-22 9:37 UTC (permalink / raw) To: igt-dev; +Cc: Alex Deucher, Tim Huang, Luben Tuikov, Christian Koenig Hi Jesse, please improve subject, [PATCH] tests/amdgpu: add amdgpu reset test -------------------^ There is missing test which you change, better write: [PATCH] tests/amd_deadlock: add reset subtest Please write description of your patch here, for example what or how will you test. > Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com> > Signed-off-by: Tim Huang <tim.huang@amd.com> > --- > tests/amdgpu/amd_deadlock.c | 40 +++++++++++++++++++++++++++++++++++++ > 1 file changed, 40 insertions(+) > > diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c > index d805b8d18..1b9254d06 100644 > --- a/tests/amdgpu/amd_deadlock.c > +++ b/tests/amdgpu/amd_deadlock.c > @@ -27,6 +27,9 @@ > #include "lib/amdgpu/amd_command_submission.h" > #include "lib/amdgpu/amd_dispatch.h" > #include "lib/amdgpu/amd_deadlock_helpers.h" > +#include <sys/stat.h> > +#include <fcntl.h> > +#include <sys/sysmacros.h> Add system include as first, before igt lib ones. Also sort them alphabetically, here fcntl before sys/s... ones. > > static void > amdgpu_dispatch_hang_slow_gfx(amdgpu_device_handle device_handle) > @@ -70,6 +73,41 @@ amdgpu_gfx_illegal_mem_access(amdgpu_device_handle device_handle) > bad_access_helper(device_handle, 0, AMDGPU_HW_IP_GFX); > } > > +static void > +amdgpu_gpu_reset_test(amdgpu_device_handle device_handle, int drm_amdgpu) > +{ > + int r; > + char debugfs_path[256], tmp[10]; > + int fd; > + struct stat sbuf; > + amdgpu_context_handle context_handle; > + uint32_t hang_state, hangs; > + > + r = amdgpu_cs_ctx_create(device_handle, &context_handle); > + igt_assert_eq(r, 0); > + > + r = fstat(drm_amdgpu, &sbuf); > + igt_assert_eq(r, 0); > + > + sprintf(debugfs_path, "/sys/kernel/debug/dri/%d/amdgpu_gpu_recover", minor(sbuf.st_rdev)); > + fd = open(debugfs_path, O_RDONLY); > + igt_assert_fd(fd); > + > + r = read(fd, tmp, sizeof(tmp)/sizeof(char)); > + igt_assert_lt(0,r); > + > + r = amdgpu_cs_query_reset_state(context_handle, &hang_state, &hangs); > + igt_assert_eq(r, 0); > + igt_assert_eq(hang_state, AMDGPU_CTX_UNKNOWN_RESET); > + > + close(fd); > + r = amdgpu_cs_ctx_free(context_handle); > + igt_assert_eq(r, 0); > + > + amdgpu_gfx_dispatch_test(device_handle, AMDGPU_HW_IP_GFX); > + amdgpu_gfx_dispatch_test(device_handle, AMDGPU_HW_IP_COMPUTE); > +} > + > igt_main > { > amdgpu_device_handle device; > @@ -116,6 +154,8 @@ igt_main > igt_subtest("dispatch_hang_slow_gfx") > amdgpu_dispatch_hang_slow_gfx(device); > > + igt_subtest("amdgpu-reset-test") ---------------- ^^^^^^ Your test have already "amd" in test name amd_deadlock, so no need for repeating amdgpu but it is your decision, you may keep it if you want. Regards, Kamil > + amdgpu_gpu_reset_test(device,fd); > igt_fixture { > amdgpu_device_deinitialize(device); > drm_close_driver(fd); > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH] tests/amdgpu: add amdgpu reset test 2023-09-22 7:43 [igt-dev] [PATCH] tests/amdgpu: add amdgpu reset test Jesse Zhang ` (2 preceding siblings ...) 2023-09-22 9:37 ` [igt-dev] [PATCH] " Kamil Konieczny @ 2023-09-22 20:28 ` Luben Tuikov 2023-09-23 8:18 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Luben Tuikov @ 2023-09-22 20:28 UTC (permalink / raw) To: Jesse Zhang, igt-dev; +Cc: Alex Deucher, Tim Huang, Christian Koenig On 2023-09-22 03:43, Jesse Zhang wrote: A commit without a body is unusual. I'd add: "Add an amdgpu reset test to the suite." As a one liner body. > Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com> > Signed-off-by: Tim Huang <tim.huang@amd.com> > --- > tests/amdgpu/amd_deadlock.c | 40 +++++++++++++++++++++++++++++++++++++ > 1 file changed, 40 insertions(+) > > diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c > index d805b8d18..1b9254d06 100644 > --- a/tests/amdgpu/amd_deadlock.c > +++ b/tests/amdgpu/amd_deadlock.c > @@ -27,6 +27,9 @@ > #include "lib/amdgpu/amd_command_submission.h" > #include "lib/amdgpu/amd_dispatch.h" > #include "lib/amdgpu/amd_deadlock_helpers.h" > +#include <sys/stat.h> > +#include <fcntl.h> > +#include <sys/sysmacros.h> > > static void > amdgpu_dispatch_hang_slow_gfx(amdgpu_device_handle device_handle) > @@ -70,6 +73,41 @@ amdgpu_gfx_illegal_mem_access(amdgpu_device_handle device_handle) > bad_access_helper(device_handle, 0, AMDGPU_HW_IP_GFX); > } > > +static void > +amdgpu_gpu_reset_test(amdgpu_device_handle device_handle, int drm_amdgpu) > +{ > + int r; > + char debugfs_path[256], tmp[10]; > + int fd; > + struct stat sbuf; > + amdgpu_context_handle context_handle; > + uint32_t hang_state, hangs; It'll look much better if you combined "int r, fd;" and ordered them in reverse-christmas-tree order. Like this, amdgpu_context_handle context_handle; char debugfs_path[256], tmp[10]; uint32_t hang_state, hangs; struct stat sbuf; int r, fd; > + > + r = amdgpu_cs_ctx_create(device_handle, &context_handle); > + igt_assert_eq(r, 0); > + > + r = fstat(drm_amdgpu, &sbuf); > + igt_assert_eq(r, 0); > + > + sprintf(debugfs_path, "/sys/kernel/debug/dri/%d/amdgpu_gpu_recover", minor(sbuf.st_rdev)); > + fd = open(debugfs_path, O_RDONLY); > + igt_assert_fd(fd); > + > + r = read(fd, tmp, sizeof(tmp)/sizeof(char)); This would usually be done as sizeof(tmp)/sizeof(tmp[0]) which is often defined as ARRAY_SIZE(_obj) macro as #define ARRAY_SIZE(_obj) (sizeof(_obj)/sizeof((_obj)[0])). So perhaps do something similar to this here, the easiest is diving by the size of the first element... > + igt_assert_lt(0,r); > + > + r = amdgpu_cs_query_reset_state(context_handle, &hang_state, &hangs); > + igt_assert_eq(r, 0); > + igt_assert_eq(hang_state, AMDGPU_CTX_UNKNOWN_RESET); > + > + close(fd); > + r = amdgpu_cs_ctx_free(context_handle); > + igt_assert_eq(r, 0); > + > + amdgpu_gfx_dispatch_test(device_handle, AMDGPU_HW_IP_GFX); > + amdgpu_gfx_dispatch_test(device_handle, AMDGPU_HW_IP_COMPUTE); > +} > + > igt_main > { > amdgpu_device_handle device; > @@ -116,6 +154,8 @@ igt_main > igt_subtest("dispatch_hang_slow_gfx") > amdgpu_dispatch_hang_slow_gfx(device); > > + igt_subtest("amdgpu-reset-test") > + amdgpu_gpu_reset_test(device,fd); > igt_fixture { > amdgpu_device_deinitialize(device); > drm_close_driver(fd); -- Regards, Luben ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/amdgpu: add amdgpu reset test 2023-09-22 7:43 [igt-dev] [PATCH] tests/amdgpu: add amdgpu reset test Jesse Zhang ` (3 preceding siblings ...) 2023-09-22 20:28 ` Luben Tuikov @ 2023-09-23 8:18 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-09-23 8:18 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 89641 bytes --] == Series Details == Series: tests/amdgpu: add amdgpu reset test URL : https://patchwork.freedesktop.org/series/124096/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13668_full -> IGTPW_9846_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9846_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9846_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9846/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9846_full: ### IGT changes ### #### Possible regressions #### * igt@testdisplay: - shard-apl: [PASS][1] -> [TIMEOUT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-apl1/igt@testdisplay.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-apl2/igt@testdisplay.html New tests --------- New tests have been introduced between CI_DRM_13668_full and IGTPW_9846_full: ### New IGT tests (1) ### * igt@kms_lease@lease_invalid_plane@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9846_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@idle@rcs0: - shard-rkl: NOTRUN -> [FAIL][3] ([i915#7742]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-2/igt@drm_fdinfo@idle@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8414]) +11 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-7/igt@drm_fdinfo@most-busy-idle-check-all@ccs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +30 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-1/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#4873]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-3/igt@gem_caching@reads.html * igt@gem_ccs@block-multicopy-compressed: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-5/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [INCOMPLETE][8] ([i915#9283]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8562]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-7/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_param@set-priority-not-supported: - shard-mtlp: NOTRUN -> [SKIP][10] ([fdo#109314]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-3/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8555]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8555]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#1099]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-snb4/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_ctx_persistence@saturated-hostile@vecs0: - shard-mtlp: NOTRUN -> [FAIL][15] ([i915#7816]) +2 other tests fail [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-2/igt@gem_ctx_persistence@saturated-hostile@vecs0.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][16] -> [ABORT][17] ([i915#7975] / [i915#8213]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg1-18/igt@gem_eio@hibernate.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-14/igt@gem_eio@hibernate.html - shard-dg2: [PASS][18] -> [ABORT][19] ([i915#7975] / [i915#8213]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg2-11/igt@gem_eio@hibernate.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-2/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#4812]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-10/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#4771]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-2/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#6334]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-1/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@pi@vcs0: - shard-mtlp: NOTRUN -> [FAIL][23] ([i915#4475]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-8/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_fair@basic-flow: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-18/igt@gem_exec_fair@basic-flow.html * igt@gem_exec_fair@basic-none-solo: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4473]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-4/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][26] -> [FAIL][27] ([i915#2842]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none-vip: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4473] / [i915#4771]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-1/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-3/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [PASS][30] -> [FAIL][31] ([i915#2842]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [PASS][32] -> [FAIL][33] ([i915#2842]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-tglu: NOTRUN -> [FAIL][34] ([i915#2842]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-4/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_fence@submit: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4812]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-6/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-5/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][37] ([fdo#109283] / [i915#5107]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-3/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-root: - shard-mtlp: NOTRUN -> [SKIP][38] ([fdo#112283]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-5/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3281]) +18 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-7/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-range-active: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-3/igt@gem_exec_reloc@basic-range-active.html * igt@gem_exec_reloc@basic-wc-gtt-active: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-14/igt@gem_exec_reloc@basic-wc-gtt-active.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3281]) +11 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-7/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4812]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-13/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-11/igt@gem_fenced_exec_thrash@2-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4860]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-4/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@heavy-random: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-7/igt@gem_lmem_swapping@heavy-random.html - shard-tglu: NOTRUN -> [SKIP][49] ([i915#4613]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-2/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@smem-oom: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4613]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-7/igt@gem_lmem_swapping@smem-oom.html * igt@gem_mmap@bad-size: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4083]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-14/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@basic-small-bo-tiledy: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-16/igt@gem_mmap_gtt@basic-small-bo-tiledy.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +22 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-7/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4077]) +11 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-1/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_wc@bad-object: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-7/igt@gem_mmap_wc@bad-object.html * igt@gem_mmap_wc@copy: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4083]) +5 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-5/igt@gem_mmap_wc@copy.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][57] ([i915#2658]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-snb2/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3282]) +5 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-3/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-random: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-1/igt@gem_pwrite@basic-random.html * igt@gem_pxp@create-protected-buffer: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4270]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-14/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4270]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-11/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#4270]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-9/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4270]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-1/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#3282]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-1/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8428]) +7 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-8/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4079]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_spin_batch@spin-each: - shard-mtlp: NOTRUN -> [DMESG-FAIL][67] ([i915#8962]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-4/igt@gem_spin_batch@spin-each.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4079]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-5/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#3297]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-3/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297] / [i915#4880]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3297]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-7/igt@gem_userptr_blits@readonly-unsync.html - shard-tglu: NOTRUN -> [SKIP][72] ([i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-2/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-1/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@vma-merge: - shard-mtlp: NOTRUN -> [FAIL][74] ([i915#3318]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-8/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][75] ([fdo#109289]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-8/igt@gen3_render_tiledy_blits.html * igt@gen7_exec_parse@basic-offset: - shard-rkl: NOTRUN -> [SKIP][76] ([fdo#109289]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-7/igt@gen7_exec_parse@basic-offset.html - shard-tglu: NOTRUN -> [SKIP][77] ([fdo#109289]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-8/igt@gen7_exec_parse@basic-offset.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][78] ([fdo#109289]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-3/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#2527]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-14/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#2856]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-3/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#2856]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-5/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@load: - shard-snb: NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#6227]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-snb2/igt@i915_module_load@load.html - shard-tglu: NOTRUN -> [SKIP][83] ([i915#6227]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-10/igt@i915_module_load@load.html * igt@i915_module_load@resize-bar: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#6412]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-7/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#6590]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-7/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-dg1: [PASS][86] -> [FAIL][87] ([i915#3591]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][88] -> [SKIP][89] ([i915#1397]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-3/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][90] ([fdo#111644] / [i915#1397]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-8/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#1397]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-5/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg1: [PASS][92] -> [SKIP][93] ([i915#1397]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg1-13/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][94] ([fdo#109506]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-1/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rpm@pc8-residency: - shard-mtlp: NOTRUN -> [SKIP][95] ([fdo#109293]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-3/igt@i915_pm_rpm@pc8-residency.html * igt@i915_pm_rps@thresholds@gt1: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#8925]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-1/igt@i915_pm_rps@thresholds@gt1.html * igt@i915_pm_rps@waitboost: - shard-mtlp: NOTRUN -> [FAIL][97] ([i915#8346]) +1 other test fail [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-4/igt@i915_pm_rps@waitboost.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4387]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-1/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-known-pci-ids: - shard-mtlp: NOTRUN -> [SKIP][99] ([fdo#109303]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-8/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][100] ([fdo#109302]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-1/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][101] ([i915#9311] / [i915#9312]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-11/igt@i915_selftest@mock@memory_region.html - shard-snb: NOTRUN -> [DMESG-WARN][102] ([i915#9312]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-snb1/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4212]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-6/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#4212]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-1/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#8709]) +11 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#404]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#1769] / [i915#3555]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#4538] / [i915#5286]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#5286]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-tglu: NOTRUN -> [SKIP][110] ([fdo#111615] / [i915#5286]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][111] ([fdo#111614]) +4 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-7/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html - shard-dg2: NOTRUN -> [SKIP][112] ([fdo#111614]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#3638]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-16/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#5190]) +14 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-10/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][115] ([fdo#110723]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html - shard-tglu: NOTRUN -> [SKIP][116] ([fdo#111615]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5190]) +5 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#6187]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html - shard-mtlp: NOTRUN -> [SKIP][120] ([fdo#111615]) +14 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_joiner@2x-modeset: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#2705]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-8/igt@kms_big_joiner@2x-modeset.html * igt@kms_big_joiner@basic: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#2705]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-16/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#2705]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-6/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#5354] / [i915#6095]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-14/igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#5354] / [i915#6095]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#3689] / [i915#5354]) +27 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-5/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#5354]) +57 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-1/igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#3734] / [i915#5354] / [i915#6095]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-3/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#3689] / [i915#5354] / [i915#6095]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-19/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#3886] / [i915#5354] / [i915#6095]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-1/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html - shard-tglu: NOTRUN -> [SKIP][131] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-10/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#5354] / [i915#6095]) +42 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#3886] / [i915#5354] / [i915#6095]) +12 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-2/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3689] / [i915#3886] / [i915#5354]) +6 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-10/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html - shard-dg1: NOTRUN -> [SKIP][135] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-14/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#5354] / [i915#6095]) +5 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-5/igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#3689] / [i915#5354] / [i915#6095]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-2/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#5354]) +8 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-7/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_mc_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4087] / [i915#7213]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-3/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#4087]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-5/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#4087]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-0-75: - shard-dg2: NOTRUN -> [SKIP][142] ([fdo#111827]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-6/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][143] ([fdo#111827]) +5 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-4/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#7828]) +10 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-2/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#7828]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-2/igt@kms_chamelium_frames@dp-frame-dump.html - shard-tglu: NOTRUN -> [SKIP][146] ([i915#7828]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-6/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#7828]) +15 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#3299]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#7118]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-1/igt@kms_content_protection@legacy.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#6944]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-5/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3359]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#8814]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3359]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#3359]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-14/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][155] ([fdo#109274] / [i915#5354]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3546]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-rkl: NOTRUN -> [SKIP][157] ([fdo#111825]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html - shard-tglu: NOTRUN -> [SKIP][158] ([fdo#109274]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][159] ([fdo#109274] / [fdo#111767] / [i915#5354]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][160] -> [FAIL][161] ([i915#2346]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#4213]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#9227]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-7/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#9227]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-16/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#9226] / [i915#9261]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-7/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#9226] / [i915#9261]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-16/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#8588]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-2/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#3804]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555]) +6 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#1257]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-1/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#8812]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-8/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-3/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#3955]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-7/igt@kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][174] ([i915#3469]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-7/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][175] ([fdo#111767] / [i915#3637]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#8381]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-7/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-snb: NOTRUN -> [SKIP][177] ([fdo#109271] / [fdo#111767]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-snb2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3637]) +11 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-8/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2: NOTRUN -> [SKIP][179] ([fdo#109274]) +7 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#2587] / [i915#2672]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8810]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#2672]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#2672]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][184] ([i915#2587] / [i915#2672]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#8810]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#2672]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2672] / [i915#3555]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#2672] / [i915#3555]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: [PASS][189] -> [FAIL][190] ([i915#6880]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#8708]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#5439]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][193] ([i915#5439]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#5460]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][195] ([fdo#110189]) +7 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#3458]) +20 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#8708]) +21 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#8708]) +13 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][199] ([fdo#109280]) +10 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#3458]) +2 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#5460]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#3023]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][203] ([fdo#111825]) +6 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][204] ([fdo#111825] / [i915#1825]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#1825]) +43 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8228]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8228]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-3/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8228]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#8806]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-11/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][210] ([i915#8292]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#5176]) +7 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#5176]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#5176]) +7 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#5235]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#5235]) +9 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#5235]) +7 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#5235]) +15 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#5235]) +19 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#6524] / [i915#6805]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-5/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#6524]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-3/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][221] ([i915#6524]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-6/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#6524]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#658]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-13/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#658]) +4 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-6/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#4348]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-6/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][226] ([fdo#111068] / [i915#658]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][227] ([fdo#109642] / [fdo#111068] / [i915#658]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@cursor_mmap_gtt: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#1072]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-3/igt@kms_psr@cursor_mmap_gtt.html * igt@kms_psr@cursor_plane_onoff: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#1072]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-18/igt@kms_psr@cursor_plane_onoff.html * igt@kms_psr@psr2_dpms: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#1072]) +8 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-3/igt@kms_psr@psr2_dpms.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#5461] / [i915#658]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-11/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#4235]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-7/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#5289]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#4235] / [i915#5190]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-rkl: NOTRUN -> [SKIP][235] ([fdo#111615] / [i915#5289]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#4235]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_tiled_display@basic-test-pattern: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#8623]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-snb: NOTRUN -> [SKIP][238] ([fdo#109271]) +270 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-snb5/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak-pipe-d: - shard-dg1: [PASS][239] -> [FAIL][240] ([i915#9196]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-19/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-snb: NOTRUN -> [DMESG-WARN][241] ([i915#8841]) +4 other tests dmesg-warn [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-snb6/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-c-ts-continuation-idle: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#4070] / [i915#6768]) +2 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-1/igt@kms_vblank@pipe-c-ts-continuation-idle.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-mtlp: NOTRUN -> [ABORT][243] ([i915#9262]) +9 other tests abort [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-3/igt@kms_vblank@pipe-c-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-query-busy-hang: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#4070] / [i915#533] / [i915#6768]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-2/igt@kms_vblank@pipe-d-query-busy-hang.html * igt@kms_vrr@flip-basic: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#3555]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-17/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8808]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-4/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#3555]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-3/igt@kms_vrr@negative-basic.html - shard-tglu: NOTRUN -> [SKIP][248] ([i915#3555]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-5/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-invalid-parameters: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#2437]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-7/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#2434]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-1/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][251] ([i915#4349]) +3 other tests fail [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][252] ([fdo#112283]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-10/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#8516]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-3/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [INCOMPLETE][254] ([i915#5493]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_udl: - shard-mtlp: NOTRUN -> [SKIP][255] ([fdo#109291]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-1/igt@prime_udl.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#3708] / [i915#4077]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-3/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][257] ([fdo#109295] / [fdo#111656] / [i915#3708]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-2/igt@prime_vgem@coherency-gtt.html - shard-tglu: NOTRUN -> [SKIP][258] ([fdo#109295] / [fdo#111656]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-6/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#3708]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][260] ([fdo#109295]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-6/igt@prime_vgem@fence-write-hang.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#2575]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-18/igt@v3d/v3d_get_bo_offset@create-get-offsets.html - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#2575]) +18 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-5/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_get_param@get-bad-param: - shard-tglu: NOTRUN -> [SKIP][263] ([fdo#109315] / [i915#2575]) +2 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-8/igt@v3d/v3d_get_param@get-bad-param.html * igt@v3d/v3d_submit_cl@bad-bo: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#2575]) +15 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-11/igt@v3d/v3d_submit_cl@bad-bo.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-rkl: NOTRUN -> [SKIP][265] ([fdo#109315]) +3 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-2/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_label_bo@set-kernel-name: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#7711]) +7 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-10/igt@vc4/vc4_label_bo@set-kernel-name.html * igt@vc4/vc4_perfmon@create-perfmon-exceed: - shard-tglu: NOTRUN -> [SKIP][267] ([i915#2575]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-9/igt@vc4/vc4_perfmon@create-perfmon-exceed.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#7711]) +9 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-2/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_tiling@set-bad-modifier: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#7711]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-1/igt@vc4/vc4_tiling@set-bad-modifier.html #### Possible fixes #### * igt@device_reset@unbind-reset-rebind: - shard-dg2: [INCOMPLETE][270] ([i915#5507]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg2-11/igt@device_reset@unbind-reset-rebind.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-1/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][272] ([i915#7742]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [FAIL][274] ([i915#2410]) -> [PASS][275] +6 other tests pass [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@vcs0.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-mtlp-7/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglu: [FAIL][276] ([i915#2842]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-tglu-5/igt@gem_exec_fair@basic-flow@rcs0.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-7/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: [FAIL][278] ([i915#2842]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-glk4/igt@gem_exec_fair@basic-pace-solo@rcs0.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-glk4/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][280] ([i915#2842]) -> [PASS][281] +2 other tests pass [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-rkl-2/igt@gem_exec_fair@basic-pace@vecs0.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-2/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [INCOMPLETE][282] -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg2-7/igt@gem_exec_suspend@basic-s0@smem.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-10/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][284] ([i915#5493]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_spin_batch@engines@rcs0: - shard-apl: [FAIL][286] ([i915#2898]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-apl2/igt@gem_spin_batch@engines@rcs0.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-apl2/igt@gem_spin_batch@engines@rcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [WARN][288] ([i915#7356]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-dg1: [FAIL][290] ([i915#3591]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg2: [SKIP][292] ([i915#1397]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp-stress.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][294] ([i915#1397]) -> [PASS][295] +1 other test pass [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_selftest@live@hangcheck: - shard-tglu: [ABORT][296] -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-tglu-10/igt@i915_selftest@live@hangcheck.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-4/igt@i915_selftest@live@hangcheck.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][298] ([fdo#103375]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg2: [FAIL][300] ([i915#6880]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: - shard-dg2: [FAIL][302] ([fdo#103375]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html * igt@kms_sysfs_edid_timing: - shard-dg2: [FAIL][304] ([IGT#2]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg2-5/igt@kms_sysfs_edid_timing.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-11/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-rkl: [FAIL][306] ([i915#9196]) -> [PASS][307] +1 other test pass [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-4/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html - shard-tglu: [FAIL][308] ([i915#9196]) -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_universal_plane@cursor-fb-leak-pipe-c: - shard-dg2: [FAIL][310] ([i915#9196]) -> [PASS][311] [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg2-2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-10/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html * igt@perf_pmu@busy-idle-check-all@vecs0: - shard-dg1: [FAIL][312] ([i915#4521]) -> [PASS][313] +2 other tests pass [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg1-16/igt@perf_pmu@busy-idle-check-all@vecs0.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-14/igt@perf_pmu@busy-idle-check-all@vecs0.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-rkl: [FAIL][314] ([i915#4349]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-rkl-1/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][316] ([i915#4983]) -> [ABORT][317] ([i915#4983] / [i915#7461]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg1-16/igt@device_reset@unbind-reset-rebind.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][318] ([i915#5493]) -> [DMESG-WARN][319] ([i915#4936] / [i915#5493]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-tglu: [WARN][320] ([i915#2681]) -> [FAIL][321] ([i915#2681] / [i915#3591]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][322] ([fdo#109300]) -> [SKIP][323] ([i915#7116]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg1-19/igt@kms_content_protection@mei_interface.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-18/igt@kms_content_protection@mei_interface.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][324] ([fdo#109285]) -> [SKIP][325] ([fdo#109285] / [i915#4098]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-rkl-4/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@primary_page_flip: - shard-dg1: [SKIP][326] ([i915#1072]) -> [SKIP][327] ([i915#1072] / [i915#4078]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg1-19/igt@kms_psr@primary_page_flip.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-13/igt@kms_psr@primary_page_flip.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][328] ([i915#1072] / [i915#4078]) -> [SKIP][329] ([i915#1072]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg1-18/igt@kms_psr@sprite_plane_onoff.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg1-19/igt@kms_psr@sprite_plane_onoff.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][330] ([i915#7484]) -> [FAIL][331] ([i915#9100]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13668/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2898]: https://gitlab.freedesktop.org/drm/intel/issues/2898 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/intel/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9283]: https://gitlab.freedesktop.org/drm/intel/issues/9283 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9312]: https://gitlab.freedesktop.org/drm/intel/issues/9312 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7496 -> IGTPW_9846 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13668: 5413464caa6cf37b1f511ba81d894ca40a28cbf2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9846: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/index.html IGT_7496: 6a96d3ad178e468b74a58cc10dead2f57bc1558d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9846/index.html [-- Attachment #2: Type: text/html, Size: 110552 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-09-23 8:18 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-22 7:43 [igt-dev] [PATCH] tests/amdgpu: add amdgpu reset test Jesse Zhang 2023-09-22 8:57 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork 2023-09-22 9:00 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-22 9:37 ` [igt-dev] [PATCH] " Kamil Konieczny 2023-09-22 20:28 ` Luben Tuikov 2023-09-23 8:18 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox