* [PATCH 1/1] tests/intel/xe_eu_stall: Add tests to run blocking and non-blocking read twice
@ 2025-04-23 2:57 Harish Chegondi
2025-04-23 3:37 ` ✓ i915.CI.BAT: success for series starting with [1/1] " Patchwork
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Harish Chegondi @ 2025-04-23 2:57 UTC (permalink / raw)
To: igt-dev; +Cc: ashutosh.dixit, Harish Chegondi
Add tests that enable EU stall sampling, read all the EU stall data and
disable EU stall sampling, two times back to back. Add tests for both
blocking and non-blocking reads. Also, add a check for the presence of
/proc/sys/dev/xe/observation_paranoid file which is required for the
unprivileged-access test.
Signed-off-by: Harish Chegondi <harish.chegondi@intel.com>
---
tests/intel/xe_eu_stall.c | 44 ++++++++++++++++++++++++++++++---------
1 file changed, 34 insertions(+), 10 deletions(-)
diff --git a/tests/intel/xe_eu_stall.c b/tests/intel/xe_eu_stall.c
index da9bd7843..15d4589c6 100644
--- a/tests/intel/xe_eu_stall.c
+++ b/tests/intel/xe_eu_stall.c
@@ -14,9 +14,15 @@
* SUBTEST: non-blocking-read
* Description: Verify non-blocking read of EU stall data during a workload run
*
+ * SUBTEST: non-blocking-read-twice
+ * Description: Run non-blocking read test twice with disable and enable between the runs
+ *
* SUBTEST: blocking-read
* Description: Verify blocking read of EU stall data during a workload run
*
+ * SUBTEST: blocking-read-twice
+ * Description: Run blocking read test twice with disable and enable between the runs
+ *
* SUBTEST: unprivileged-access
* Description: Verify unprivileged open of a EU stall data stream fd
*
@@ -33,6 +39,7 @@
#include <fcntl.h>
#include <poll.h>
#include <sys/ioctl.h>
+#include <sys/stat.h>
#include <sys/wait.h>
#include "igt.h"
@@ -460,13 +467,13 @@ static void print_eu_stall_data(uint32_t devid, uint8_t *buf, size_t size)
* while the parent process reads the stall counters data, disables EU stall
* counters once the workload completes execution.
*/
-static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read)
+static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read, int iter)
{
- uint32_t num_samples = 0, num_drops = 0;
+ uint32_t num_samples, num_drops;
struct igt_helper_process work_load = {};
struct sigaction sa = { 0 };
int ret, flags, stream_fd;
- uint64_t total_size = 0;
+ uint64_t total_size;
uint8_t *buf;
uint64_t properties[] = {
@@ -520,7 +527,7 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read)
flags = O_CLOEXEC;
set_fd_flags(stream_fd, flags);
-
+enable:
do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0);
sa.sa_handler = sighandler;
@@ -540,6 +547,9 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read)
_exit(run_gpgpu_fill(drm_fd, devid));
}
}
+ total_size = 0;
+ num_samples = 0;
+ num_drops = 0;
/* Parent process reads the EU stall counters data */
do {
if (!blocking_read) {
@@ -574,14 +584,16 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read)
igt_info("Number of samples: %u\n", num_samples);
igt_info("Number of drops reported: %u\n", num_drops);
+ ret = wait_child(&work_load);
+ igt_assert_f(ret == 0, "waitpid() - ret: %d, errno: %d\n", ret, errno);
+ igt_assert_f(num_samples, "No EU stalls detected during the workload\n");
+
do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_DISABLE, 0);
+ if (--iter)
+ goto enable;
close(stream_fd);
free(buf);
-
- ret = wait_child(&work_load);
- igt_assert_f(ret == 0, "waitpid() - ret: %d, errno: %d\n", ret, errno);
- igt_assert_f(num_samples, "No EU stalls detected during the workload\n");
}
static int opt_handler(int opt, int opt_index, void *data)
@@ -634,6 +646,7 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL)
{
int drm_fd;
uint32_t devid;
+ struct stat sb;
bool blocking_read = true;
igt_fixture {
@@ -642,6 +655,7 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL)
devid = intel_get_drm_devid(drm_fd);
igt_require(IS_PONTEVECCHIO(devid) || intel_graphics_ver(devid) >= IP_VER(20, 0));
igt_require_f(igt_get_gpgpu_fillfunc(devid), "no gpgpu-fill function\n");
+ igt_require(!stat(OBSERVATION_PARANOID, &sb));
if (output_file) {
output = fopen(output_file, "w");
igt_require(output);
@@ -650,12 +664,22 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL)
igt_describe("Verify non-blocking read of EU stall data during a workload run");
igt_subtest("non-blocking-read") {
- test_eustall(drm_fd, devid, !blocking_read);
+ test_eustall(drm_fd, devid, !blocking_read, 1);
+ }
+
+ igt_describe("Run non-blocking read test twice with disable and enable between the runs");
+ igt_subtest("non-blocking-read-twice") {
+ test_eustall(drm_fd, devid, !blocking_read, 2);
}
igt_describe("Verify blocking read of EU stall data during a workload run");
igt_subtest("blocking-read") {
- test_eustall(drm_fd, devid, blocking_read);
+ test_eustall(drm_fd, devid, blocking_read, 1);
+ }
+
+ igt_describe("Run blocking read test twice with disable and enable between the runs");
+ igt_subtest("blocking-read-twice") {
+ test_eustall(drm_fd, devid, blocking_read, 2);
}
igt_describe("Verify that unprivileged open of a EU stall data fd fails");
--
2.48.1
^ permalink raw reply related [flat|nested] 9+ messages in thread* ✓ i915.CI.BAT: success for series starting with [1/1] tests/intel/xe_eu_stall: Add tests to run blocking and non-blocking read twice 2025-04-23 2:57 [PATCH 1/1] tests/intel/xe_eu_stall: Add tests to run blocking and non-blocking read twice Harish Chegondi @ 2025-04-23 3:37 ` Patchwork 2025-04-23 10:00 ` ✗ Xe.CI.Full: failure " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2025-04-23 3:37 UTC (permalink / raw) To: Harish Chegondi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3909 bytes --] == Series Details == Series: series starting with [1/1] tests/intel/xe_eu_stall: Add tests to run blocking and non-blocking read twice URL : https://patchwork.freedesktop.org/series/148108/ State : success == Summary == CI Bug Log - changes from IGT_8331 -> IGTPW_13026 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13026/index.html Participating hosts (43 -> 42) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_13026 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8331/bat-mtlp-8/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13026/bat-mtlp-8/igt@i915_selftest@live.html #### Possible fixes #### * igt@dmabuf@all-tests: - bat-apl-1: [INCOMPLETE][3] ([i915#12904]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8331/bat-apl-1/igt@dmabuf@all-tests.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13026/bat-apl-1/igt@dmabuf@all-tests.html * igt@dmabuf@all-tests@dma_fence_chain: - fi-bsw-nick: [INCOMPLETE][5] ([i915#12904]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8331/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13026/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html * igt@i915_selftest@live: - bat-dg2-8: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8331/bat-dg2-8/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13026/bat-dg2-8/igt@i915_selftest@live.html - bat-arlh-2: [INCOMPLETE][9] ([i915#14046]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8331/bat-arlh-2/igt@i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13026/bat-arlh-2/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-dg2-14: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8331/bat-dg2-14/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13026/bat-dg2-14/igt@i915_selftest@live@workarounds.html - bat-arls-6: [DMESG-FAIL][13] ([i915#12061]) -> [PASS][14] +1 other test pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8331/bat-arls-6/igt@i915_selftest@live@workarounds.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13026/bat-arls-6/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#14046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14046 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8331 -> IGTPW_13026 * Linux: CI_DRM_16447 -> CI_DRM_16449 CI-20190529: 20190529 CI_DRM_16447: 97cf1c266145ae8b2bb3f78168d795930a3f5191 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16449: 2fa6469c618d77a738a79970a89548a657e0fa23 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13026: 73505f342cd232367beb1591bb8500263effd660 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8331: e209a9bb68d2b524c7eeed1cb87abb4e187f2b78 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13026/index.html [-- Attachment #2: Type: text/html, Size: 4937 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for series starting with [1/1] tests/intel/xe_eu_stall: Add tests to run blocking and non-blocking read twice 2025-04-23 2:57 [PATCH 1/1] tests/intel/xe_eu_stall: Add tests to run blocking and non-blocking read twice Harish Chegondi 2025-04-23 3:37 ` ✓ i915.CI.BAT: success for series starting with [1/1] " Patchwork @ 2025-04-23 10:00 ` Patchwork 2025-04-23 17:20 ` [PATCH 1/1] " Dixit, Ashutosh 2025-04-24 15:40 ` ✗ Xe.CI.Full: failure for series starting with [1/1] " Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2025-04-23 10:00 UTC (permalink / raw) To: Harish Chegondi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 78810 bytes --] == Series Details == Series: series starting with [1/1] tests/intel/xe_eu_stall: Add tests to run blocking and non-blocking read twice URL : https://patchwork.freedesktop.org/series/148108/ State : failure == Summary == CI Bug Log - changes from XEIGT_8331_FULL -> XEIGTPW_13026_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_13026_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_13026_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 3) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_13026_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_vblank@wait-forked: - shard-bmg: [PASS][2] -> [FAIL][3] +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@kms_vblank@wait-forked.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_vblank@wait-forked.html New tests --------- New tests have been introduced between XEIGT_8331_FULL and XEIGTPW_13026_FULL: ### New IGT tests (2) ### * igt@xe_eu_stall@blocking-read-twice: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0, 1.00] s * igt@xe_eu_stall@non-blocking-read-twice: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0, 0.79] s Known issues ------------ Here are the changes found in XEIGTPW_13026_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][4] -> [FAIL][5] ([Intel XE#827]) +1 other test fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#3767]) +15 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#3768]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_async_flips@invalid-async-flip-atomic.html - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#3768]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#664]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-6/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2370]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2327]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#316]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1407]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +5 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +7 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#607]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][18] -> [SKIP][19] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#2191]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2191]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1512]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#367]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#367]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-463/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +11 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2887]) +7 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#3432]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#787]) +115 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2907]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#455] / [Intel XE#787]) +25 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][32] -> [INCOMPLETE][33] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2652] / [Intel XE#787]) +13 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#4416]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-2.html * igt@kms_chamelium_color@ctm-max: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#306]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-6/igt@kms_chamelium_color@ctm-max.html - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2325]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@kms_chamelium_color@ctm-max.html - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#306]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2252]) +8 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +5 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#373]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][42] ([Intel XE#1178]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2390]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][44] ([Intel XE#1178]) +2 other tests fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@mei-interface: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1468]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#308]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-256x256: - shard-bmg: [PASS][47] -> [DMESG-WARN][48] ([Intel XE#3428]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_cursor_crc@cursor-random-256x256.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_cursor_crc@cursor-random-256x256.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2320]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2321]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1424]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#309]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-dg2-set2: [PASS][53] -> [SKIP][54] ([Intel XE#309]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-433/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2286]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#309]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2291]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: NOTRUN -> [FAIL][59] ([Intel XE#1475]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#323]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2-set2: [PASS][61] -> [SKIP][62] ([Intel XE#4302]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-435/igt@kms_display_modes@extended-mode-basic.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#1340]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2244]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2244]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@kms_dsc@dsc-with-bpc.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#4422]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_feature_discovery@chamelium: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#701]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-5/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2-set2: [PASS][68] -> [SKIP][69] ([Intel XE#702]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-435/igt@kms_feature_discovery@display-2x.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#2316]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-2/igt@kms_flip@2x-absolute-wf_vblank.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3: - shard-bmg: [PASS][72] -> [FAIL][73] ([Intel XE#2882]) +2 other tests fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1421]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-2/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-dg2-set2: [PASS][75] -> [SKIP][76] ([Intel XE#310]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-435/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#310]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3: - shard-bmg: [PASS][78] -> [FAIL][79] ([Intel XE#3321]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][80] -> [FAIL][81] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4: - shard-dg2-set2: [PASS][82] -> [FAIL][83] ([Intel XE#301]) +7 other tests fail [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3: - shard-bmg: [PASS][84] -> [INCOMPLETE][85] ([Intel XE#2049] / [Intel XE#2597]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [PASS][86] -> [FAIL][87] ([Intel XE#301]) +3 other tests fail [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank@d-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][88] ([Intel XE#301] / [Intel XE#3321]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1401]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2293]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2380]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#455]) +11 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#651]) +5 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#651]) +14 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2312]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: [PASS][98] -> [SKIP][99] ([Intel XE#656]) +8 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#4141]) +13 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2311]) +23 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#656]) +15 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#656]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2313]) +21 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#653]) +18 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_hdr@static-swap: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1503]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@kms_hdr@static-swap.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#346]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2925]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2927]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#356]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [PASS][111] -> [FAIL][112] ([Intel XE#616]) +1 other test fail [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-463/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_multiple@2x-tiling-none: - shard-bmg: [PASS][113] -> [SKIP][114] ([Intel XE#4596]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-none.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#2493]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-6/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#2763]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2763]) +9 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#870]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_pm_backlight@bad-brightness.html - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#870]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-463/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#3309]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [PASS][121] -> [FAIL][122] ([Intel XE#718]) +2 other tests fail [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#1439] / [Intel XE#836]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#2893] / [Intel XE#4608]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#4608]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#1489]) +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#2893]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#1489]) +8 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2387]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1406]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#4609]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1127]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#3414] / [Intel XE#3904]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#3414] / [Intel XE#3904]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@clone-exclusive-crtc: - shard-dg2-set2: [PASS][137] -> [SKIP][138] ([Intel XE#455]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-466/igt@kms_setmode@clone-exclusive-crtc.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#362]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2426]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#330]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_tv_load_detect@load-detect.html - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2450]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][143] -> [FAIL][144] ([Intel XE#4459]) +1 other test fail [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#1499]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@lobf: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1499]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-1/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#756]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_writeback@writeback-fb-id.html - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#756]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-5/igt@kms_writeback@writeback-fb-id.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#1091] / [Intel XE#2849]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_copy_basic@mem-copy-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#1123]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0xfd.html * {igt@xe_eu_stall@blocking-read-twice} (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#4497]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-463/igt@xe_eu_stall@blocking-read-twice.html * igt@xe_eudebug@basic-close: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#4837]) +7 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-8/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@discovery-empty: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#4837]) +8 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_eudebug@discovery-empty.html * igt@xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#688]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@xe_evict@evict-large-multi-vm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#1392]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-dg2-set2: [PASS][156] -> [SKIP][157] ([Intel XE#1392]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#1392]) +3 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-basic-defer-bind: - shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2322]) +7 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#288]) +14 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_exec_sip_eudebug@breakpoint-waitsip: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#4837]) +9 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-waitsip.html * igt@xe_exec_threads@threads-hang-fd-rebind: - shard-dg2-set2: [PASS][162] -> [DMESG-WARN][163] ([Intel XE#3876]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-433/igt@xe_exec_threads@threads-hang-fd-rebind.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@xe_exec_threads@threads-hang-fd-rebind.html * igt@xe_live_ktest@xe_eudebug: - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#2833]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-2/igt@xe_live_ktest@xe_eudebug.html * igt@xe_media_fill@media-fill: - shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2459] / [Intel XE#2596]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_media_fill@media-fill.html * igt@xe_oa@non-privileged-access-vaddr: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#2541] / [Intel XE#3573]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@xe_oa@non-privileged-access-vaddr.html * igt@xe_pat@pat-index-xelp: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#2245]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_pat@pat-index-xelp.html * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][168] ([Intel XE#1173]) +1 other test fail [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#2284]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#2284] / [Intel XE#366]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@xe_pm@s4-d3cold-basic-exec.html - shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#2284] / [Intel XE#366]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pxp@pxp-stale-bo-bind-post-rpm: - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#4733]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html * igt@xe_pxp@pxp-termination-key-update-post-suspend: - shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#4733]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_pxp@pxp-termination-key-update-post-suspend.html * igt@xe_query@multigpu-query-mem-usage: - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#944]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_query@multigpu-query-oa-units: - shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#944]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@xe_query@multigpu-query-oa-units.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-lnl: NOTRUN -> [SKIP][176] ([Intel XE#944]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-2/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_spin_batch@spin-mem-copy: - shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#4821]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-433/igt@xe_spin_batch@spin-mem-copy.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling: - shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#4130]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html * igt@xe_sriov_auto_provisioning@selfconfig-basic: - shard-dg2-set2: NOTRUN -> [SKIP][179] ([Intel XE#4130]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@xe_sriov_auto_provisioning@selfconfig-basic.html * igt@xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#3342]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@xe_sriov_flr@flr-each-isolation.html - shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#3342]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets: - shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#4351]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [FAIL][183] ([Intel XE#3719] / [Intel XE#911]) -> [PASS][184] +3 other tests pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt@kms_atomic_transition@plane-all-transition-nonblocking: - shard-lnl: [FAIL][185] ([Intel XE#3908]) -> [PASS][186] +1 other test pass [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-lnl-2/igt@kms_atomic_transition@plane-all-transition-nonblocking.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_atomic_transition@plane-all-transition-nonblocking.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][187] ([Intel XE#3862]) -> [PASS][188] +1 other test pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_cursor_crc@cursor-offscreen-128x128: - shard-bmg: [SKIP][189] -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-128x128.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-128x128.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2-set2: [SKIP][191] ([Intel XE#309]) -> [PASS][192] +1 other test pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg2-set2: [SKIP][193] ([Intel XE#310]) -> [PASS][194] +4 other tests pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_flip@2x-dpms-vs-vblank-race.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-434/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [FAIL][195] ([Intel XE#3321]) -> [PASS][196] +7 other tests pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6: - shard-dg2-set2: [FAIL][197] ([Intel XE#301]) -> [PASS][198] +1 other test pass [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][199] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][201] ([Intel XE#656]) -> [PASS][202] +6 other tests pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html * igt@kms_hdr@static-swap: - shard-bmg: [SKIP][203] ([Intel XE#1503]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_hdr@static-swap.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@kms_hdr@static-swap.html * igt@kms_plane_multiple@2x-tiling-4@pipe-a-dp-2-pipe-c-hdmi-a-3: - shard-bmg: [FAIL][205] ([Intel XE#4782]) -> [PASS][206] +1 other test pass [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4@pipe-a-dp-2-pipe-c-hdmi-a-3.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4@pipe-a-dp-2-pipe-c-hdmi-a-3.html * igt@kms_plane_multiple@2x-tiling-4@pipe-a-dp-2-pipe-d-hdmi-a-3: - shard-bmg: [DMESG-FAIL][207] ([Intel XE#3428]) -> [PASS][208] +1 other test pass [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4@pipe-a-dp-2-pipe-d-hdmi-a-3.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4@pipe-a-dp-2-pipe-d-hdmi-a-3.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2-set2: [SKIP][209] ([Intel XE#836]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_pm_rpm@dpms-non-lpsp.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-463/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@universal-planes-dpms@plane-68: - shard-bmg: [DMESG-WARN][211] -> [PASS][212] +10 other tests pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_pm_rpm@universal-planes-dpms@plane-68.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@kms_pm_rpm@universal-planes-dpms@plane-68.html * igt@kms_rmfb@close-fd@pipe-b-hdmi-a-3: - shard-bmg: [DMESG-WARN][213] ([Intel XE#3428]) -> [PASS][214] +14 other tests pass [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_rmfb@close-fd@pipe-b-hdmi-a-3.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_rmfb@close-fd@pipe-b-hdmi-a-3.html * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race: - shard-dg2-set2: [SKIP][215] ([Intel XE#1392]) -> [PASS][216] +2 other tests pass [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html * igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early: - shard-lnl: [DMESG-WARN][217] ([Intel XE#4792]) -> [PASS][218] [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-lnl-1/igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-6/igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early.html * igt@xe_pm@s4-basic-exec: - shard-lnl: [ABORT][219] ([Intel XE#1794]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-lnl-2/igt@xe_pm@s4-basic-exec.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@xe_pm@s4-basic-exec.html * igt@xe_pmu@gt-frequency: - shard-dg2-set2: [FAIL][221] ([Intel XE#4817]) -> [PASS][222] +1 other test pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-435/igt@xe_pmu@gt-frequency.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@xe_pmu@gt-frequency.html - shard-lnl: [FAIL][223] ([Intel XE#4817]) -> [PASS][224] +1 other test pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-lnl-1/igt@xe_pmu@gt-frequency.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-1/igt@xe_pmu@gt-frequency.html #### Warnings #### * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][225] ([Intel XE#787]) -> [SKIP][226] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-6.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][227] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][228] ([Intel XE#787]) +4 other tests skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][229] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][230] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_content_protection@legacy: - shard-dg2-set2: [SKIP][231] ([Intel XE#455]) -> [FAIL][232] ([Intel XE#1178]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_content_protection@legacy.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_content_protection@legacy.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [DMESG-WARN][233] -> [INCOMPLETE][234] ([Intel XE#2049] / [Intel XE#2597]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][235] ([Intel XE#2311]) -> [SKIP][236] ([Intel XE#2312]) +6 other tests skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][237] ([Intel XE#656]) -> [SKIP][238] ([Intel XE#651]) +9 other tests skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][239] ([Intel XE#4141]) -> [SKIP][240] ([Intel XE#2312]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][241] ([Intel XE#2312]) -> [SKIP][242] ([Intel XE#4141]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][243] ([Intel XE#2312]) -> [SKIP][244] ([Intel XE#2311]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][245] ([Intel XE#651]) -> [SKIP][246] ([Intel XE#656]) +14 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][247] ([Intel XE#2313]) -> [SKIP][248] ([Intel XE#2312]) +3 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][249] ([Intel XE#2312]) -> [SKIP][250] ([Intel XE#2313]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][251] ([Intel XE#656]) -> [SKIP][252] ([Intel XE#653]) +8 other tests skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][253] ([Intel XE#653]) -> [SKIP][254] ([Intel XE#656]) +10 other tests skip [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_plane_multiple@2x-tiling-y: - shard-dg2-set2: [SKIP][255] ([Intel XE#455]) -> [SKIP][256] ([Intel XE#4596]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-466/igt@kms_plane_multiple@2x-tiling-y.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][257] ([Intel XE#362]) -> [SKIP][258] ([Intel XE#1500]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@xe_module_load@load: - shard-bmg: ([PASS][259], [PASS][260], [PASS][261], [DMESG-WARN][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [DMESG-WARN][273], [DMESG-WARN][274], [PASS][275], [PASS][276], [PASS][277], [SKIP][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284]) ([Intel XE#2457] / [Intel XE#3428]) -> ([PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [SKIP][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310]) ([Intel XE#2457]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-3/igt@xe_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@xe_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@xe_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-7/igt@xe_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-2/igt@xe_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-2/igt@xe_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-7/igt@xe_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-7/igt@xe_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-7/igt@xe_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-7/igt@xe_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@xe_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@xe_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@xe_module_load@load.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@xe_module_load@load.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@xe_module_load@load.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-2/igt@xe_module_load@load.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-3/igt@xe_module_load@load.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-3/igt@xe_module_load@load.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@xe_module_load@load.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-2/igt@xe_module_load@load.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-2/igt@xe_module_load@load.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@xe_module_load@load.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@xe_module_load@load.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@xe_module_load@load.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@xe_module_load@load.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-8/igt@xe_module_load@load.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@xe_module_load@load.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@xe_module_load@load.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_module_load@load.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@xe_module_load@load.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@xe_module_load@load.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@xe_module_load@load.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@xe_module_load@load.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@xe_module_load@load.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@xe_module_load@load.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@xe_module_load@load.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@xe_module_load@load.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@xe_module_load@load.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@xe_module_load@load.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_module_load@load.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@xe_module_load@load.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-8/igt@xe_module_load@load.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-8/igt@xe_module_load@load.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@xe_module_load@load.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_module_load@load.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_module_load@load.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-8/igt@xe_module_load@load.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@xe_module_load@load.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@xe_module_load@load.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@xe_module_load@load.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@xe_module_load@load.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351 [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4782 [Intel XE#4792]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4792 [Intel XE#4817]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4817 [Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8331 -> IGTPW_13026 * Linux: xe-2981-97cf1c266145ae8b2bb3f78168d795930a3f5191 -> xe-2983-2fa6469c618d77a738a79970a89548a657e0fa23 IGTPW_13026: 73505f342cd232367beb1591bb8500263effd660 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8331: e209a9bb68d2b524c7eeed1cb87abb4e187f2b78 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2981-97cf1c266145ae8b2bb3f78168d795930a3f5191: 97cf1c266145ae8b2bb3f78168d795930a3f5191 xe-2983-2fa6469c618d77a738a79970a89548a657e0fa23: 2fa6469c618d77a738a79970a89548a657e0fa23 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/index.html [-- Attachment #2: Type: text/html, Size: 91803 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/1] tests/intel/xe_eu_stall: Add tests to run blocking and non-blocking read twice 2025-04-23 2:57 [PATCH 1/1] tests/intel/xe_eu_stall: Add tests to run blocking and non-blocking read twice Harish Chegondi 2025-04-23 3:37 ` ✓ i915.CI.BAT: success for series starting with [1/1] " Patchwork 2025-04-23 10:00 ` ✗ Xe.CI.Full: failure " Patchwork @ 2025-04-23 17:20 ` Dixit, Ashutosh 2025-04-23 22:02 ` Harish Chegondi 2025-04-24 15:40 ` ✗ Xe.CI.Full: failure for series starting with [1/1] " Patchwork 3 siblings, 1 reply; 9+ messages in thread From: Dixit, Ashutosh @ 2025-04-23 17:20 UTC (permalink / raw) To: Harish Chegondi; +Cc: igt-dev On Tue, 22 Apr 2025 19:57:34 -0700, Harish Chegondi wrote: > > Add tests that enable EU stall sampling, read all the EU stall data and > disable EU stall sampling, two times back to back. Add tests for both > blocking and non-blocking reads. Also, add a check for the presence of > /proc/sys/dev/xe/observation_paranoid file which is required for the > unprivileged-access test. > > Signed-off-by: Harish Chegondi <harish.chegondi@intel.com> > --- > tests/intel/xe_eu_stall.c | 44 ++++++++++++++++++++++++++++++--------- > 1 file changed, 34 insertions(+), 10 deletions(-) > > diff --git a/tests/intel/xe_eu_stall.c b/tests/intel/xe_eu_stall.c > index da9bd7843..15d4589c6 100644 > --- a/tests/intel/xe_eu_stall.c > +++ b/tests/intel/xe_eu_stall.c > @@ -14,9 +14,15 @@ > * SUBTEST: non-blocking-read > * Description: Verify non-blocking read of EU stall data during a workload run > * > + * SUBTEST: non-blocking-read-twice > + * Description: Run non-blocking read test twice with disable and enable between the runs > + * > * SUBTEST: blocking-read > * Description: Verify blocking read of EU stall data during a workload run > * > + * SUBTEST: blocking-read-twice > + * Description: Run blocking read test twice with disable and enable between the runs > + * Not sure about the "read-twice" name, i.e. not sure if that name clearly communicates the purpose of these new tests. The purpose to me seems that reads can be done after a disable and enable, correct? Maybe "blocking-enable-disable" and "non-blocking-enable-disable" are better names? Otherwise this is: Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Let me know if you are going to change the names. Thanks. > * SUBTEST: unprivileged-access > * Description: Verify unprivileged open of a EU stall data stream fd > * > @@ -33,6 +39,7 @@ > #include <fcntl.h> > #include <poll.h> > #include <sys/ioctl.h> > +#include <sys/stat.h> > #include <sys/wait.h> > > #include "igt.h" > @@ -460,13 +467,13 @@ static void print_eu_stall_data(uint32_t devid, uint8_t *buf, size_t size) > * while the parent process reads the stall counters data, disables EU stall > * counters once the workload completes execution. > */ > -static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > +static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read, int iter) > { > - uint32_t num_samples = 0, num_drops = 0; > + uint32_t num_samples, num_drops; > struct igt_helper_process work_load = {}; > struct sigaction sa = { 0 }; > int ret, flags, stream_fd; > - uint64_t total_size = 0; > + uint64_t total_size; > uint8_t *buf; > > uint64_t properties[] = { > @@ -520,7 +527,7 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > flags = O_CLOEXEC; > > set_fd_flags(stream_fd, flags); > - > +enable: > do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0); > > sa.sa_handler = sighandler; > @@ -540,6 +547,9 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > _exit(run_gpgpu_fill(drm_fd, devid)); > } > } > + total_size = 0; > + num_samples = 0; > + num_drops = 0; > /* Parent process reads the EU stall counters data */ > do { > if (!blocking_read) { > @@ -574,14 +584,16 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > igt_info("Number of samples: %u\n", num_samples); > igt_info("Number of drops reported: %u\n", num_drops); > > + ret = wait_child(&work_load); > + igt_assert_f(ret == 0, "waitpid() - ret: %d, errno: %d\n", ret, errno); > + igt_assert_f(num_samples, "No EU stalls detected during the workload\n"); > + > do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_DISABLE, 0); > + if (--iter) > + goto enable; > > close(stream_fd); > free(buf); > - > - ret = wait_child(&work_load); > - igt_assert_f(ret == 0, "waitpid() - ret: %d, errno: %d\n", ret, errno); > - igt_assert_f(num_samples, "No EU stalls detected during the workload\n"); > } > > static int opt_handler(int opt, int opt_index, void *data) > @@ -634,6 +646,7 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > { > int drm_fd; > uint32_t devid; > + struct stat sb; > bool blocking_read = true; > > igt_fixture { > @@ -642,6 +655,7 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > devid = intel_get_drm_devid(drm_fd); > igt_require(IS_PONTEVECCHIO(devid) || intel_graphics_ver(devid) >= IP_VER(20, 0)); > igt_require_f(igt_get_gpgpu_fillfunc(devid), "no gpgpu-fill function\n"); > + igt_require(!stat(OBSERVATION_PARANOID, &sb)); > if (output_file) { > output = fopen(output_file, "w"); > igt_require(output); > @@ -650,12 +664,22 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > > igt_describe("Verify non-blocking read of EU stall data during a workload run"); > igt_subtest("non-blocking-read") { > - test_eustall(drm_fd, devid, !blocking_read); > + test_eustall(drm_fd, devid, !blocking_read, 1); > + } > + > + igt_describe("Run non-blocking read test twice with disable and enable between the runs"); > + igt_subtest("non-blocking-read-twice") { > + test_eustall(drm_fd, devid, !blocking_read, 2); > } > > igt_describe("Verify blocking read of EU stall data during a workload run"); > igt_subtest("blocking-read") { > - test_eustall(drm_fd, devid, blocking_read); > + test_eustall(drm_fd, devid, blocking_read, 1); > + } > + > + igt_describe("Run blocking read test twice with disable and enable between the runs"); > + igt_subtest("blocking-read-twice") { > + test_eustall(drm_fd, devid, blocking_read, 2); > } > > igt_describe("Verify that unprivileged open of a EU stall data fd fails"); > -- > 2.48.1 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/1] tests/intel/xe_eu_stall: Add tests to run blocking and non-blocking read twice 2025-04-23 17:20 ` [PATCH 1/1] " Dixit, Ashutosh @ 2025-04-23 22:02 ` Harish Chegondi 2025-04-23 23:14 ` Dixit, Ashutosh 0 siblings, 1 reply; 9+ messages in thread From: Harish Chegondi @ 2025-04-23 22:02 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev On Wed, Apr 23, 2025 at 10:20:06AM -0700, Dixit, Ashutosh wrote: > On Tue, 22 Apr 2025 19:57:34 -0700, Harish Chegondi wrote: > > > > Add tests that enable EU stall sampling, read all the EU stall data and > > disable EU stall sampling, two times back to back. Add tests for both > > blocking and non-blocking reads. Also, add a check for the presence of > > /proc/sys/dev/xe/observation_paranoid file which is required for the > > unprivileged-access test. > > > > Signed-off-by: Harish Chegondi <harish.chegondi@intel.com> > > --- > > tests/intel/xe_eu_stall.c | 44 ++++++++++++++++++++++++++++++--------- > > 1 file changed, 34 insertions(+), 10 deletions(-) > > > > diff --git a/tests/intel/xe_eu_stall.c b/tests/intel/xe_eu_stall.c > > index da9bd7843..15d4589c6 100644 > > --- a/tests/intel/xe_eu_stall.c > > +++ b/tests/intel/xe_eu_stall.c > > @@ -14,9 +14,15 @@ > > * SUBTEST: non-blocking-read > > * Description: Verify non-blocking read of EU stall data during a workload run > > * > > + * SUBTEST: non-blocking-read-twice > > + * Description: Run non-blocking read test twice with disable and enable between the runs > > + * > > * SUBTEST: blocking-read > > * Description: Verify blocking read of EU stall data during a workload run > > * > > + * SUBTEST: blocking-read-twice > > + * Description: Run blocking read test twice with disable and enable between the runs > > + * > > Not sure about the "read-twice" name, i.e. not sure if that name clearly > communicates the purpose of these new tests. The purpose to me seems that > reads can be done after a disable and enable, correct? > > Maybe "blocking-enable-disable" and "non-blocking-enable-disable" are > better names? Yes I will change the names. How about non-blocking-read-after-re-enable and blocking-read-after-re-enable ? This would convey that the test would enable two times and a read after the second enable ? > > Otherwise this is: > > Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> > > Let me know if you are going to change the names. Thanks. > > > * SUBTEST: unprivileged-access > > * Description: Verify unprivileged open of a EU stall data stream fd > > * > > @@ -33,6 +39,7 @@ > > #include <fcntl.h> > > #include <poll.h> > > #include <sys/ioctl.h> > > +#include <sys/stat.h> > > #include <sys/wait.h> > > > > #include "igt.h" > > @@ -460,13 +467,13 @@ static void print_eu_stall_data(uint32_t devid, uint8_t *buf, size_t size) > > * while the parent process reads the stall counters data, disables EU stall > > * counters once the workload completes execution. > > */ > > -static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > > +static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read, int iter) > > { > > - uint32_t num_samples = 0, num_drops = 0; > > + uint32_t num_samples, num_drops; > > struct igt_helper_process work_load = {}; > > struct sigaction sa = { 0 }; > > int ret, flags, stream_fd; > > - uint64_t total_size = 0; > > + uint64_t total_size; > > uint8_t *buf; > > > > uint64_t properties[] = { > > @@ -520,7 +527,7 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > > flags = O_CLOEXEC; > > > > set_fd_flags(stream_fd, flags); > > - > > +enable: > > do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0); > > > > sa.sa_handler = sighandler; > > @@ -540,6 +547,9 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > > _exit(run_gpgpu_fill(drm_fd, devid)); > > } > > } > > + total_size = 0; > > + num_samples = 0; > > + num_drops = 0; > > /* Parent process reads the EU stall counters data */ > > do { > > if (!blocking_read) { > > @@ -574,14 +584,16 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > > igt_info("Number of samples: %u\n", num_samples); > > igt_info("Number of drops reported: %u\n", num_drops); > > > > + ret = wait_child(&work_load); > > + igt_assert_f(ret == 0, "waitpid() - ret: %d, errno: %d\n", ret, errno); > > + igt_assert_f(num_samples, "No EU stalls detected during the workload\n"); > > + > > do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_DISABLE, 0); > > + if (--iter) > > + goto enable; > > > > close(stream_fd); > > free(buf); > > - > > - ret = wait_child(&work_load); > > - igt_assert_f(ret == 0, "waitpid() - ret: %d, errno: %d\n", ret, errno); > > - igt_assert_f(num_samples, "No EU stalls detected during the workload\n"); > > } > > > > static int opt_handler(int opt, int opt_index, void *data) > > @@ -634,6 +646,7 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > > { > > int drm_fd; > > uint32_t devid; > > + struct stat sb; > > bool blocking_read = true; > > > > igt_fixture { > > @@ -642,6 +655,7 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > > devid = intel_get_drm_devid(drm_fd); > > igt_require(IS_PONTEVECCHIO(devid) || intel_graphics_ver(devid) >= IP_VER(20, 0)); > > igt_require_f(igt_get_gpgpu_fillfunc(devid), "no gpgpu-fill function\n"); > > + igt_require(!stat(OBSERVATION_PARANOID, &sb)); > > if (output_file) { > > output = fopen(output_file, "w"); > > igt_require(output); > > @@ -650,12 +664,22 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > > > > igt_describe("Verify non-blocking read of EU stall data during a workload run"); > > igt_subtest("non-blocking-read") { > > - test_eustall(drm_fd, devid, !blocking_read); > > + test_eustall(drm_fd, devid, !blocking_read, 1); > > + } > > + > > + igt_describe("Run non-blocking read test twice with disable and enable between the runs"); > > + igt_subtest("non-blocking-read-twice") { > > + test_eustall(drm_fd, devid, !blocking_read, 2); > > } > > > > igt_describe("Verify blocking read of EU stall data during a workload run"); > > igt_subtest("blocking-read") { > > - test_eustall(drm_fd, devid, blocking_read); > > + test_eustall(drm_fd, devid, blocking_read, 1); > > + } > > + > > + igt_describe("Run blocking read test twice with disable and enable between the runs"); > > + igt_subtest("blocking-read-twice") { > > + test_eustall(drm_fd, devid, blocking_read, 2); > > } > > > > igt_describe("Verify that unprivileged open of a EU stall data fd fails"); > > -- > > 2.48.1 > > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/1] tests/intel/xe_eu_stall: Add tests to run blocking and non-blocking read twice 2025-04-23 22:02 ` Harish Chegondi @ 2025-04-23 23:14 ` Dixit, Ashutosh 2025-04-24 10:21 ` Kamil Konieczny 0 siblings, 1 reply; 9+ messages in thread From: Dixit, Ashutosh @ 2025-04-23 23:14 UTC (permalink / raw) To: Harish Chegondi; +Cc: igt-dev On Wed, 23 Apr 2025 15:02:30 -0700, Harish Chegondi wrote: > > On Wed, Apr 23, 2025 at 10:20:06AM -0700, Dixit, Ashutosh wrote: > > On Tue, 22 Apr 2025 19:57:34 -0700, Harish Chegondi wrote: > > > > > > Add tests that enable EU stall sampling, read all the EU stall data and > > > disable EU stall sampling, two times back to back. Add tests for both > > > blocking and non-blocking reads. Also, add a check for the presence of > > > /proc/sys/dev/xe/observation_paranoid file which is required for the > > > unprivileged-access test. > > > > > > Signed-off-by: Harish Chegondi <harish.chegondi@intel.com> > > > --- > > > tests/intel/xe_eu_stall.c | 44 ++++++++++++++++++++++++++++++--------- > > > 1 file changed, 34 insertions(+), 10 deletions(-) > > > > > > diff --git a/tests/intel/xe_eu_stall.c b/tests/intel/xe_eu_stall.c > > > index da9bd7843..15d4589c6 100644 > > > --- a/tests/intel/xe_eu_stall.c > > > +++ b/tests/intel/xe_eu_stall.c > > > @@ -14,9 +14,15 @@ > > > * SUBTEST: non-blocking-read > > > * Description: Verify non-blocking read of EU stall data during a workload run > > > * > > > + * SUBTEST: non-blocking-read-twice > > > + * Description: Run non-blocking read test twice with disable and enable between the runs > > > + * > > > * SUBTEST: blocking-read > > > * Description: Verify blocking read of EU stall data during a workload run > > > * > > > + * SUBTEST: blocking-read-twice > > > + * Description: Run blocking read test twice with disable and enable between the runs > > > + * > > > > Not sure about the "read-twice" name, i.e. not sure if that name clearly > > communicates the purpose of these new tests. The purpose to me seems that > > reads can be done after a disable and enable, correct? > > > > Maybe "blocking-enable-disable" and "non-blocking-enable-disable" are > > better names? > Yes I will change the names. How about non-blocking-read-after-re-enable > and blocking-read-after-re-enable ? This would convey that the test > would enable two times and a read after the second enable ? "read" is sort of obvious, e.g. OA uses "blocking" and "non-blocking" as the names, without "read". So, in the interest of keeping the names short, I would just name them "non-blocking-re-enable" and "blocking-re-enable". But anyway, the final choice of the names is yours, the patch already has a R-b :) > > > > Otherwise this is: > > > > Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> > > > > Let me know if you are going to change the names. Thanks. > > > > > * SUBTEST: unprivileged-access > > > * Description: Verify unprivileged open of a EU stall data stream fd > > > * > > > @@ -33,6 +39,7 @@ > > > #include <fcntl.h> > > > #include <poll.h> > > > #include <sys/ioctl.h> > > > +#include <sys/stat.h> > > > #include <sys/wait.h> > > > > > > #include "igt.h" > > > @@ -460,13 +467,13 @@ static void print_eu_stall_data(uint32_t devid, uint8_t *buf, size_t size) > > > * while the parent process reads the stall counters data, disables EU stall > > > * counters once the workload completes execution. > > > */ > > > -static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > > > +static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read, int iter) > > > { > > > - uint32_t num_samples = 0, num_drops = 0; > > > + uint32_t num_samples, num_drops; > > > struct igt_helper_process work_load = {}; > > > struct sigaction sa = { 0 }; > > > int ret, flags, stream_fd; > > > - uint64_t total_size = 0; > > > + uint64_t total_size; > > > uint8_t *buf; > > > > > > uint64_t properties[] = { > > > @@ -520,7 +527,7 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > > > flags = O_CLOEXEC; > > > > > > set_fd_flags(stream_fd, flags); > > > - > > > +enable: > > > do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0); > > > > > > sa.sa_handler = sighandler; > > > @@ -540,6 +547,9 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > > > _exit(run_gpgpu_fill(drm_fd, devid)); > > > } > > > } > > > + total_size = 0; > > > + num_samples = 0; > > > + num_drops = 0; > > > /* Parent process reads the EU stall counters data */ > > > do { > > > if (!blocking_read) { > > > @@ -574,14 +584,16 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > > > igt_info("Number of samples: %u\n", num_samples); > > > igt_info("Number of drops reported: %u\n", num_drops); > > > > > > + ret = wait_child(&work_load); > > > + igt_assert_f(ret == 0, "waitpid() - ret: %d, errno: %d\n", ret, errno); > > > + igt_assert_f(num_samples, "No EU stalls detected during the workload\n"); > > > + > > > do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_DISABLE, 0); > > > + if (--iter) > > > + goto enable; > > > > > > close(stream_fd); > > > free(buf); > > > - > > > - ret = wait_child(&work_load); > > > - igt_assert_f(ret == 0, "waitpid() - ret: %d, errno: %d\n", ret, errno); > > > - igt_assert_f(num_samples, "No EU stalls detected during the workload\n"); > > > } > > > > > > static int opt_handler(int opt, int opt_index, void *data) > > > @@ -634,6 +646,7 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > > > { > > > int drm_fd; > > > uint32_t devid; > > > + struct stat sb; > > > bool blocking_read = true; > > > > > > igt_fixture { > > > @@ -642,6 +655,7 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > > > devid = intel_get_drm_devid(drm_fd); > > > igt_require(IS_PONTEVECCHIO(devid) || intel_graphics_ver(devid) >= IP_VER(20, 0)); > > > igt_require_f(igt_get_gpgpu_fillfunc(devid), "no gpgpu-fill function\n"); > > > + igt_require(!stat(OBSERVATION_PARANOID, &sb)); > > > if (output_file) { > > > output = fopen(output_file, "w"); > > > igt_require(output); > > > @@ -650,12 +664,22 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > > > > > > igt_describe("Verify non-blocking read of EU stall data during a workload run"); > > > igt_subtest("non-blocking-read") { > > > - test_eustall(drm_fd, devid, !blocking_read); > > > + test_eustall(drm_fd, devid, !blocking_read, 1); > > > + } > > > + > > > + igt_describe("Run non-blocking read test twice with disable and enable between the runs"); > > > + igt_subtest("non-blocking-read-twice") { > > > + test_eustall(drm_fd, devid, !blocking_read, 2); > > > } > > > > > > igt_describe("Verify blocking read of EU stall data during a workload run"); > > > igt_subtest("blocking-read") { > > > - test_eustall(drm_fd, devid, blocking_read); > > > + test_eustall(drm_fd, devid, blocking_read, 1); > > > + } > > > + > > > + igt_describe("Run blocking read test twice with disable and enable between the runs"); > > > + igt_subtest("blocking-read-twice") { > > > + test_eustall(drm_fd, devid, blocking_read, 2); > > > } > > > > > > igt_describe("Verify that unprivileged open of a EU stall data fd fails"); > > > -- > > > 2.48.1 > > > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/1] tests/intel/xe_eu_stall: Add tests to run blocking and non-blocking read twice 2025-04-23 23:14 ` Dixit, Ashutosh @ 2025-04-24 10:21 ` Kamil Konieczny 2025-04-24 23:10 ` Harish Chegondi 0 siblings, 1 reply; 9+ messages in thread From: Kamil Konieczny @ 2025-04-24 10:21 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: Harish Chegondi, igt-dev Hi Dixit,, On 2025-04-23 at 16:14:33 -0700, Dixit, Ashutosh wrote: > On Wed, 23 Apr 2025 15:02:30 -0700, Harish Chegondi wrote: > > > > On Wed, Apr 23, 2025 at 10:20:06AM -0700, Dixit, Ashutosh wrote: > > > On Tue, 22 Apr 2025 19:57:34 -0700, Harish Chegondi wrote: > > > > > > > > Add tests that enable EU stall sampling, read all the EU stall data and > > > > disable EU stall sampling, two times back to back. Add tests for both > > > > blocking and non-blocking reads. Also, add a check for the presence of > > > > /proc/sys/dev/xe/observation_paranoid file which is required for the > > > > unprivileged-access test. imho that second change should go in separate patch. > > > > > > > > Signed-off-by: Harish Chegondi <harish.chegondi@intel.com> > > > > --- > > > > tests/intel/xe_eu_stall.c | 44 ++++++++++++++++++++++++++++++--------- > > > > 1 file changed, 34 insertions(+), 10 deletions(-) > > > > > > > > diff --git a/tests/intel/xe_eu_stall.c b/tests/intel/xe_eu_stall.c > > > > index da9bd7843..15d4589c6 100644 > > > > --- a/tests/intel/xe_eu_stall.c > > > > +++ b/tests/intel/xe_eu_stall.c > > > > @@ -14,9 +14,15 @@ > > > > * SUBTEST: non-blocking-read > > > > * Description: Verify non-blocking read of EU stall data during a workload run > > > > * > > > > + * SUBTEST: non-blocking-read-twice > > > > + * Description: Run non-blocking read test twice with disable and enable between the runs > > > > + * > > > > * SUBTEST: blocking-read > > > > * Description: Verify blocking read of EU stall data during a workload run > > > > * > > > > + * SUBTEST: blocking-read-twice > > > > + * Description: Run blocking read test twice with disable and enable between the runs > > > > + * > > > > > > Not sure about the "read-twice" name, i.e. not sure if that name clearly > > > communicates the purpose of these new tests. The purpose to me seems that > > > reads can be done after a disable and enable, correct? > > > > > > Maybe "blocking-enable-disable" and "non-blocking-enable-disable" are > > > better names? > > Yes I will change the names. How about non-blocking-read-after-re-enable > > and blocking-read-after-re-enable ? This would convey that the test > > would enable two times and a read after the second enable ? > > "read" is sort of obvious, e.g. OA uses "blocking" and "non-blocking" as > the names, without "read". So, in the interest of keeping the names short, > I would just name them "non-blocking-re-enable" and > "blocking-re-enable". But anyway, the final choice of the names is yours, > the patch already has a R-b :) > I agree here, please keep names short and informative (which is hard...). > > > > > > Otherwise this is: > > > > > > Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> > > > > > > Let me know if you are going to change the names. Thanks. > > > > > > > * SUBTEST: unprivileged-access > > > > * Description: Verify unprivileged open of a EU stall data stream fd > > > > * > > > > @@ -33,6 +39,7 @@ > > > > #include <fcntl.h> > > > > #include <poll.h> > > > > #include <sys/ioctl.h> > > > > +#include <sys/stat.h> > > > > #include <sys/wait.h> > > > > > > > > #include "igt.h" > > > > @@ -460,13 +467,13 @@ static void print_eu_stall_data(uint32_t devid, uint8_t *buf, size_t size) > > > > * while the parent process reads the stall counters data, disables EU stall > > > > * counters once the workload completes execution. > > > > */ > > > > -static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > > > > +static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read, int iter) > > > > { > > > > - uint32_t num_samples = 0, num_drops = 0; > > > > + uint32_t num_samples, num_drops; > > > > struct igt_helper_process work_load = {}; > > > > struct sigaction sa = { 0 }; > > > > int ret, flags, stream_fd; > > > > - uint64_t total_size = 0; > > > > + uint64_t total_size; > > > > uint8_t *buf; > > > > > > > > uint64_t properties[] = { > > > > @@ -520,7 +527,7 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > > > > flags = O_CLOEXEC; > > > > > > > > set_fd_flags(stream_fd, flags); > > > > - > > > > +enable: > > > > do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0); > > > > > > > > sa.sa_handler = sighandler; > > > > @@ -540,6 +547,9 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > > > > _exit(run_gpgpu_fill(drm_fd, devid)); > > > > } > > > > } > > > > + total_size = 0; > > > > + num_samples = 0; > > > > + num_drops = 0; > > > > /* Parent process reads the EU stall counters data */ > > > > do { > > > > if (!blocking_read) { > > > > @@ -574,14 +584,16 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > > > > igt_info("Number of samples: %u\n", num_samples); > > > > igt_info("Number of drops reported: %u\n", num_drops); > > > > > > > > + ret = wait_child(&work_load); > > > > + igt_assert_f(ret == 0, "waitpid() - ret: %d, errno: %d\n", ret, errno); > > > > + igt_assert_f(num_samples, "No EU stalls detected during the workload\n"); > > > > + > > > > do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_DISABLE, 0); > > > > + if (--iter) > > > > + goto enable; > > > > > > > > close(stream_fd); > > > > free(buf); > > > > - > > > > - ret = wait_child(&work_load); > > > > - igt_assert_f(ret == 0, "waitpid() - ret: %d, errno: %d\n", ret, errno); > > > > - igt_assert_f(num_samples, "No EU stalls detected during the workload\n"); > > > > } > > > > > > > > static int opt_handler(int opt, int opt_index, void *data) > > > > @@ -634,6 +646,7 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > > > > { > > > > int drm_fd; > > > > uint32_t devid; > > > > + struct stat sb; > > > > bool blocking_read = true; > > > > > > > > igt_fixture { > > > > @@ -642,6 +655,7 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > > > > devid = intel_get_drm_devid(drm_fd); > > > > igt_require(IS_PONTEVECCHIO(devid) || intel_graphics_ver(devid) >= IP_VER(20, 0)); > > > > igt_require_f(igt_get_gpgpu_fillfunc(devid), "no gpgpu-fill function\n"); > > > > + igt_require(!stat(OBSERVATION_PARANOID, &sb)); This looks like an unrelated fix for a separate patch? It is also better to use igt_require_f(condition, "description\n"); > > > > if (output_file) { > > > > output = fopen(output_file, "w"); > > > > igt_require(output); > > > > @@ -650,12 +664,22 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > > > > > > > > igt_describe("Verify non-blocking read of EU stall data during a workload run"); > > > > igt_subtest("non-blocking-read") { > > > > - test_eustall(drm_fd, devid, !blocking_read); > > > > + test_eustall(drm_fd, devid, !blocking_read, 1); > > > > + } > > > > + > > > > + igt_describe("Run non-blocking read test twice with disable and enable between the runs"); > > > > + igt_subtest("non-blocking-read-twice") { > > > > + test_eustall(drm_fd, devid, !blocking_read, 2); Why not just call it twice here? test_eustall(drm_fd, devid, !blocking_read); test_eustall(drm_fd, devid, !blocking_read); > > > > } > > > > > > > > igt_describe("Verify blocking read of EU stall data during a workload run"); > > > > igt_subtest("blocking-read") { > > > > - test_eustall(drm_fd, devid, blocking_read); > > > > + test_eustall(drm_fd, devid, blocking_read, 1); > > > > + } > > > > + > > > > + igt_describe("Run blocking read test twice with disable and enable between the runs"); > > > > + igt_subtest("blocking-read-twice") { > > > > + test_eustall(drm_fd, devid, blocking_read, 2); Same here. Regards, Kamil > > > > } > > > > > > > > igt_describe("Verify that unprivileged open of a EU stall data fd fails"); > > > > -- > > > > 2.48.1 > > > > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/1] tests/intel/xe_eu_stall: Add tests to run blocking and non-blocking read twice 2025-04-24 10:21 ` Kamil Konieczny @ 2025-04-24 23:10 ` Harish Chegondi 0 siblings, 0 replies; 9+ messages in thread From: Harish Chegondi @ 2025-04-24 23:10 UTC (permalink / raw) To: Kamil Konieczny, Dixit, Ashutosh, igt-dev On Thu, Apr 24, 2025 at 12:21:22PM +0200, Kamil Konieczny wrote: Hi Kamil, > Hi Dixit,, > On 2025-04-23 at 16:14:33 -0700, Dixit, Ashutosh wrote: > > On Wed, 23 Apr 2025 15:02:30 -0700, Harish Chegondi wrote: > > > > > > On Wed, Apr 23, 2025 at 10:20:06AM -0700, Dixit, Ashutosh wrote: > > > > On Tue, 22 Apr 2025 19:57:34 -0700, Harish Chegondi wrote: > > > > > > > > > > Add tests that enable EU stall sampling, read all the EU stall data and > > > > > disable EU stall sampling, two times back to back. Add tests for both > > > > > blocking and non-blocking reads. Also, add a check for the presence of > > > > > /proc/sys/dev/xe/observation_paranoid file which is required for the > > > > > unprivileged-access test. > > imho that second change should go in separate patch. I will separate the second change into a separate patch. > > > > > > > > > > > Signed-off-by: Harish Chegondi <harish.chegondi@intel.com> > > > > > --- > > > > > tests/intel/xe_eu_stall.c | 44 ++++++++++++++++++++++++++++++--------- > > > > > 1 file changed, 34 insertions(+), 10 deletions(-) > > > > > > > > > > diff --git a/tests/intel/xe_eu_stall.c b/tests/intel/xe_eu_stall.c > > > > > index da9bd7843..15d4589c6 100644 > > > > > --- a/tests/intel/xe_eu_stall.c > > > > > +++ b/tests/intel/xe_eu_stall.c > > > > > @@ -14,9 +14,15 @@ > > > > > * SUBTEST: non-blocking-read > > > > > * Description: Verify non-blocking read of EU stall data during a workload run > > > > > * > > > > > + * SUBTEST: non-blocking-read-twice > > > > > + * Description: Run non-blocking read test twice with disable and enable between the runs > > > > > + * > > > > > * SUBTEST: blocking-read > > > > > * Description: Verify blocking read of EU stall data during a workload run > > > > > * > > > > > + * SUBTEST: blocking-read-twice > > > > > + * Description: Run blocking read test twice with disable and enable between the runs > > > > > + * > > > > > > > > Not sure about the "read-twice" name, i.e. not sure if that name clearly > > > > communicates the purpose of these new tests. The purpose to me seems that > > > > reads can be done after a disable and enable, correct? > > > > > > > > Maybe "blocking-enable-disable" and "non-blocking-enable-disable" are > > > > better names? > > > Yes I will change the names. How about non-blocking-read-after-re-enable > > > and blocking-read-after-re-enable ? This would convey that the test > > > would enable two times and a read after the second enable ? > > > > "read" is sort of obvious, e.g. OA uses "blocking" and "non-blocking" as > > the names, without "read". So, in the interest of keeping the names short, > > I would just name them "non-blocking-re-enable" and > > "blocking-re-enable". But anyway, the final choice of the names is yours, > > the patch already has a R-b :) > > > > I agree here, please keep names short and informative (which is hard...). Will do. > > > > > > > > > Otherwise this is: > > > > > > > > Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> > > > > > > > > Let me know if you are going to change the names. Thanks. > > > > > > > > > * SUBTEST: unprivileged-access > > > > > * Description: Verify unprivileged open of a EU stall data stream fd > > > > > * > > > > > @@ -33,6 +39,7 @@ > > > > > #include <fcntl.h> > > > > > #include <poll.h> > > > > > #include <sys/ioctl.h> > > > > > +#include <sys/stat.h> > > > > > #include <sys/wait.h> > > > > > > > > > > #include "igt.h" > > > > > @@ -460,13 +467,13 @@ static void print_eu_stall_data(uint32_t devid, uint8_t *buf, size_t size) > > > > > * while the parent process reads the stall counters data, disables EU stall > > > > > * counters once the workload completes execution. > > > > > */ > > > > > -static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > > > > > +static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read, int iter) > > > > > { > > > > > - uint32_t num_samples = 0, num_drops = 0; > > > > > + uint32_t num_samples, num_drops; > > > > > struct igt_helper_process work_load = {}; > > > > > struct sigaction sa = { 0 }; > > > > > int ret, flags, stream_fd; > > > > > - uint64_t total_size = 0; > > > > > + uint64_t total_size; > > > > > uint8_t *buf; > > > > > > > > > > uint64_t properties[] = { > > > > > @@ -520,7 +527,7 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > > > > > flags = O_CLOEXEC; > > > > > > > > > > set_fd_flags(stream_fd, flags); > > > > > - > > > > > +enable: > > > > > do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0); > > > > > > > > > > sa.sa_handler = sighandler; > > > > > @@ -540,6 +547,9 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > > > > > _exit(run_gpgpu_fill(drm_fd, devid)); > > > > > } > > > > > } > > > > > + total_size = 0; > > > > > + num_samples = 0; > > > > > + num_drops = 0; > > > > > /* Parent process reads the EU stall counters data */ > > > > > do { > > > > > if (!blocking_read) { > > > > > @@ -574,14 +584,16 @@ static void test_eustall(int drm_fd, uint32_t devid, bool blocking_read) > > > > > igt_info("Number of samples: %u\n", num_samples); > > > > > igt_info("Number of drops reported: %u\n", num_drops); > > > > > > > > > > + ret = wait_child(&work_load); > > > > > + igt_assert_f(ret == 0, "waitpid() - ret: %d, errno: %d\n", ret, errno); > > > > > + igt_assert_f(num_samples, "No EU stalls detected during the workload\n"); > > > > > + > > > > > do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_DISABLE, 0); > > > > > + if (--iter) > > > > > + goto enable; > > > > > > > > > > close(stream_fd); > > > > > free(buf); > > > > > - > > > > > - ret = wait_child(&work_load); > > > > > - igt_assert_f(ret == 0, "waitpid() - ret: %d, errno: %d\n", ret, errno); > > > > > - igt_assert_f(num_samples, "No EU stalls detected during the workload\n"); > > > > > } > > > > > > > > > > static int opt_handler(int opt, int opt_index, void *data) > > > > > @@ -634,6 +646,7 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > > > > > { > > > > > int drm_fd; > > > > > uint32_t devid; > > > > > + struct stat sb; > > > > > bool blocking_read = true; > > > > > > > > > > igt_fixture { > > > > > @@ -642,6 +655,7 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > > > > > devid = intel_get_drm_devid(drm_fd); > > > > > igt_require(IS_PONTEVECCHIO(devid) || intel_graphics_ver(devid) >= IP_VER(20, 0)); > > > > > igt_require_f(igt_get_gpgpu_fillfunc(devid), "no gpgpu-fill function\n"); > > > > > + igt_require(!stat(OBSERVATION_PARANOID, &sb)); > > This looks like an unrelated fix for a separate patch? > It is also better to use > igt_require_f(condition, "description\n"); Will change this. > > > > > > if (output_file) { > > > > > output = fopen(output_file, "w"); > > > > > igt_require(output); > > > > > @@ -650,12 +664,22 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > > > > > > > > > > igt_describe("Verify non-blocking read of EU stall data during a workload run"); > > > > > igt_subtest("non-blocking-read") { > > > > > - test_eustall(drm_fd, devid, !blocking_read); > > > > > + test_eustall(drm_fd, devid, !blocking_read, 1); > > > > > + } > > > > > + > > > > > + igt_describe("Run non-blocking read test twice with disable and enable between the runs"); > > > > > + igt_subtest("non-blocking-read-twice") { > > > > > + test_eustall(drm_fd, devid, !blocking_read, 2); > > Why not just call it twice here? > test_eustall(drm_fd, devid, !blocking_read); > test_eustall(drm_fd, devid, !blocking_read); With two calls to test_eustall(), it would open and close a new EU stall stream for each call. The intention behind this test is to use the same EU stall stream but disable and enable again between the two reads. > > > > > > } > > > > > > > > > > igt_describe("Verify blocking read of EU stall data during a workload run"); > > > > > igt_subtest("blocking-read") { > > > > > - test_eustall(drm_fd, devid, blocking_read); > > > > > + test_eustall(drm_fd, devid, blocking_read, 1); > > > > > + } > > > > > + > > > > > + igt_describe("Run blocking read test twice with disable and enable between the runs"); > > > > > + igt_subtest("blocking-read-twice") { > > > > > + test_eustall(drm_fd, devid, blocking_read, 2); > > Same here. > > Regards, > Kamil Thank You Harish. > > > > > > } > > > > > > > > > > igt_describe("Verify that unprivileged open of a EU stall data fd fails"); > > > > > -- > > > > > 2.48.1 > > > > > ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for series starting with [1/1] tests/intel/xe_eu_stall: Add tests to run blocking and non-blocking read twice 2025-04-23 2:57 [PATCH 1/1] tests/intel/xe_eu_stall: Add tests to run blocking and non-blocking read twice Harish Chegondi ` (2 preceding siblings ...) 2025-04-23 17:20 ` [PATCH 1/1] " Dixit, Ashutosh @ 2025-04-24 15:40 ` Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2025-04-24 15:40 UTC (permalink / raw) To: Harish Chegondi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 78922 bytes --] == Series Details == Series: series starting with [1/1] tests/intel/xe_eu_stall: Add tests to run blocking and non-blocking read twice URL : https://patchwork.freedesktop.org/series/148108/ State : failure == Summary == CI Bug Log - changes from XEIGT_8331_FULL -> XEIGTPW_13026_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_13026_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_13026_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 3) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_13026_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html New tests --------- New tests have been introduced between XEIGT_8331_FULL and XEIGTPW_13026_FULL: ### New IGT tests (2) ### * igt@xe_eu_stall@blocking-read-twice: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0, 1.00] s * igt@xe_eu_stall@non-blocking-read-twice: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0, 0.79] s Known issues ------------ Here are the changes found in XEIGTPW_13026_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][2] -> [FAIL][3] ([Intel XE#827]) +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#3767]) +15 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#3768]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_async_flips@invalid-async-flip-atomic.html - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#3768]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#664]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-6/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2370]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#316]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +5 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +7 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#607]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2191]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2191]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1512]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#367]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#367]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-463/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +11 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +7 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#3432]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#787]) +115 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2907]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#455] / [Intel XE#787]) +25 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][30] -> [INCOMPLETE][31] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2652] / [Intel XE#787]) +13 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#4416]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-2.html * igt@kms_chamelium_color@ctm-max: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#306]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-6/igt@kms_chamelium_color@ctm-max.html - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2325]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@kms_chamelium_color@ctm-max.html - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#306]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2252]) +8 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#373]) +5 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#373]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][40] ([Intel XE#1178]) +1 other test fail [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2390]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#1178]) +2 other tests fail [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@mei-interface: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1468]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#308]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-256x256: - shard-bmg: [PASS][45] -> [DMESG-WARN][46] ([Intel XE#3428]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_cursor_crc@cursor-random-256x256.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_cursor_crc@cursor-random-256x256.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2320]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2321]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1424]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#309]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-dg2-set2: [PASS][51] -> [SKIP][52] ([Intel XE#309]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-433/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2286]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#309]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#2291]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: NOTRUN -> [FAIL][57] ([Intel XE#1475]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#323]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2-set2: [PASS][59] -> [SKIP][60] ([Intel XE#4302]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-435/igt@kms_display_modes@extended-mode-basic.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#1340]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2244]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#2244]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@kms_dsc@dsc-with-bpc.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#4422]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_feature_discovery@chamelium: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#701]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-5/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2-set2: [PASS][66] -> [SKIP][67] ([Intel XE#702]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-435/igt@kms_feature_discovery@display-2x.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-bmg: [PASS][68] -> [SKIP][69] ([Intel XE#2316]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-2/igt@kms_flip@2x-absolute-wf_vblank.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3: - shard-bmg: [PASS][70] -> [FAIL][71] ([Intel XE#2882]) +2 other tests fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1421]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-2/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-dg2-set2: [PASS][73] -> [SKIP][74] ([Intel XE#310]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-435/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#310]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3: - shard-bmg: [PASS][76] -> [FAIL][77] ([Intel XE#3321]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][78] -> [FAIL][79] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4: - shard-dg2-set2: [PASS][80] -> [FAIL][81] ([Intel XE#301]) +7 other tests fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3: - shard-bmg: [PASS][82] -> [INCOMPLETE][83] ([Intel XE#2049] / [Intel XE#2597]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [PASS][84] -> [FAIL][85] ([Intel XE#301]) +3 other tests fail [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank@d-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][86] ([Intel XE#301] / [Intel XE#3321]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1401]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2293]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2380]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#455]) +11 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#651]) +5 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#651]) +14 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2312]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: [PASS][96] -> [SKIP][97] ([Intel XE#656]) +8 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#4141]) +13 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2311]) +23 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#656]) +15 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#656]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2313]) +21 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#653]) +18 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_hdr@static-swap: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1503]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@kms_hdr@static-swap.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#346]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2925]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2927]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#356]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [PASS][109] -> [FAIL][110] ([Intel XE#616]) +1 other test fail [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-463/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_multiple@2x-tiling-none: - shard-bmg: [PASS][111] -> [SKIP][112] ([Intel XE#4596]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-none.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#2493]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-6/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#2763]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2763]) +9 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#870]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_pm_backlight@bad-brightness.html - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#870]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-463/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#3309]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [PASS][119] -> [FAIL][120] ([Intel XE#718]) +2 other tests fail [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#1439] / [Intel XE#836]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2893] / [Intel XE#4608]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#4608]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#1489]) +5 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#2893]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#1489]) +8 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2387]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1406]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#4609]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#1127]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#3414] / [Intel XE#3904]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#3414] / [Intel XE#3904]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@clone-exclusive-crtc: - shard-dg2-set2: [PASS][135] -> [SKIP][136] ([Intel XE#455]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-466/igt@kms_setmode@clone-exclusive-crtc.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#362]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2426]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#330]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_tv_load_detect@load-detect.html - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2450]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@wait-forked: - shard-bmg: [PASS][141] -> [FAIL][142] ([Intel XE#4892]) +1 other test fail [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@kms_vblank@wait-forked.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_vblank@wait-forked.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][143] -> [FAIL][144] ([Intel XE#4459]) +1 other test fail [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#1499]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@lobf: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1499]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-1/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#756]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@kms_writeback@writeback-fb-id.html - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#756]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-5/igt@kms_writeback@writeback-fb-id.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#1091] / [Intel XE#2849]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_copy_basic@mem-copy-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#1123]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0xfd.html * {igt@xe_eu_stall@blocking-read-twice} (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#4497]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-463/igt@xe_eu_stall@blocking-read-twice.html * igt@xe_eudebug@basic-close: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#4837]) +7 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-8/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@discovery-empty: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#4837]) +8 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_eudebug@discovery-empty.html * igt@xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#688]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@xe_evict@evict-large-multi-vm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#1392]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-dg2-set2: [PASS][156] -> [SKIP][157] ([Intel XE#1392]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#1392]) +3 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-basic-defer-bind: - shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2322]) +7 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#288]) +14 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_exec_sip_eudebug@breakpoint-waitsip: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#4837]) +9 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-waitsip.html * igt@xe_exec_threads@threads-hang-fd-rebind: - shard-dg2-set2: [PASS][162] -> [DMESG-WARN][163] ([Intel XE#3876]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-433/igt@xe_exec_threads@threads-hang-fd-rebind.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@xe_exec_threads@threads-hang-fd-rebind.html * igt@xe_live_ktest@xe_eudebug: - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#2833]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-2/igt@xe_live_ktest@xe_eudebug.html * igt@xe_media_fill@media-fill: - shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2459] / [Intel XE#2596]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_media_fill@media-fill.html * igt@xe_oa@non-privileged-access-vaddr: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#2541] / [Intel XE#3573]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@xe_oa@non-privileged-access-vaddr.html * igt@xe_pat@pat-index-xelp: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#2245]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_pat@pat-index-xelp.html * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][168] ([Intel XE#1173]) +1 other test fail [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#2284]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#2284] / [Intel XE#366]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@xe_pm@s4-d3cold-basic-exec.html - shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#2284] / [Intel XE#366]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-435/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pxp@pxp-stale-bo-bind-post-rpm: - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#4733]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html * igt@xe_pxp@pxp-termination-key-update-post-suspend: - shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#4733]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_pxp@pxp-termination-key-update-post-suspend.html * igt@xe_query@multigpu-query-mem-usage: - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#944]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_query@multigpu-query-oa-units: - shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#944]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@xe_query@multigpu-query-oa-units.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-lnl: NOTRUN -> [SKIP][176] ([Intel XE#944]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-2/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_spin_batch@spin-mem-copy: - shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#4821]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-433/igt@xe_spin_batch@spin-mem-copy.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling: - shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#4130]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html * igt@xe_sriov_auto_provisioning@selfconfig-basic: - shard-dg2-set2: NOTRUN -> [SKIP][179] ([Intel XE#4130]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@xe_sriov_auto_provisioning@selfconfig-basic.html * igt@xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#3342]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@xe_sriov_flr@flr-each-isolation.html - shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#3342]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets: - shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#4351]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [FAIL][183] ([Intel XE#3719] / [Intel XE#911]) -> [PASS][184] +3 other tests pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt@kms_atomic_transition@plane-all-transition-nonblocking: - shard-lnl: [FAIL][185] ([Intel XE#3908]) -> [PASS][186] +1 other test pass [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-lnl-2/igt@kms_atomic_transition@plane-all-transition-nonblocking.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-4/igt@kms_atomic_transition@plane-all-transition-nonblocking.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][187] ([Intel XE#3862]) -> [PASS][188] +1 other test pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_cursor_crc@cursor-offscreen-128x128: - shard-bmg: [SKIP][189] ([Intel XE#2320]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-128x128.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-128x128.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2-set2: [SKIP][191] ([Intel XE#309]) -> [PASS][192] +1 other test pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg2-set2: [SKIP][193] ([Intel XE#310]) -> [PASS][194] +4 other tests pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_flip@2x-dpms-vs-vblank-race.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-434/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [FAIL][195] ([Intel XE#3321]) -> [PASS][196] +7 other tests pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6: - shard-dg2-set2: [FAIL][197] ([Intel XE#301]) -> [PASS][198] +1 other test pass [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][199] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][201] ([Intel XE#656]) -> [PASS][202] +6 other tests pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html * igt@kms_hdr@static-swap: - shard-bmg: [SKIP][203] ([Intel XE#1503]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_hdr@static-swap.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@kms_hdr@static-swap.html * igt@kms_plane_multiple@2x-tiling-4@pipe-a-dp-2-pipe-c-hdmi-a-3: - shard-bmg: [FAIL][205] ([Intel XE#4782]) -> [PASS][206] +1 other test pass [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4@pipe-a-dp-2-pipe-c-hdmi-a-3.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4@pipe-a-dp-2-pipe-c-hdmi-a-3.html * igt@kms_plane_multiple@2x-tiling-4@pipe-a-dp-2-pipe-d-hdmi-a-3: - shard-bmg: [DMESG-FAIL][207] ([Intel XE#3428]) -> [PASS][208] +1 other test pass [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4@pipe-a-dp-2-pipe-d-hdmi-a-3.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4@pipe-a-dp-2-pipe-d-hdmi-a-3.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2-set2: [SKIP][209] ([Intel XE#836]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_pm_rpm@dpms-non-lpsp.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-463/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@universal-planes-dpms@plane-68: - shard-bmg: [DMESG-WARN][211] -> [PASS][212] +10 other tests pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_pm_rpm@universal-planes-dpms@plane-68.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@kms_pm_rpm@universal-planes-dpms@plane-68.html * igt@kms_rmfb@close-fd@pipe-b-hdmi-a-3: - shard-bmg: [DMESG-WARN][213] ([Intel XE#3428]) -> [PASS][214] +14 other tests pass [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_rmfb@close-fd@pipe-b-hdmi-a-3.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_rmfb@close-fd@pipe-b-hdmi-a-3.html * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race: - shard-dg2-set2: [SKIP][215] ([Intel XE#1392]) -> [PASS][216] +2 other tests pass [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html * igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early: - shard-lnl: [DMESG-WARN][217] ([Intel XE#4792]) -> [PASS][218] [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-lnl-1/igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-6/igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early.html * igt@xe_pm@s4-basic-exec: - shard-lnl: [ABORT][219] ([Intel XE#1794]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-lnl-2/igt@xe_pm@s4-basic-exec.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-3/igt@xe_pm@s4-basic-exec.html * igt@xe_pmu@gt-frequency: - shard-dg2-set2: [FAIL][221] ([Intel XE#4817]) -> [PASS][222] +1 other test pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-435/igt@xe_pmu@gt-frequency.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@xe_pmu@gt-frequency.html - shard-lnl: [FAIL][223] ([Intel XE#4817]) -> [PASS][224] +1 other test pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-lnl-1/igt@xe_pmu@gt-frequency.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-lnl-1/igt@xe_pmu@gt-frequency.html #### Warnings #### * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][225] ([Intel XE#787]) -> [SKIP][226] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-6.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][227] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][228] ([Intel XE#787]) +4 other tests skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][229] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][230] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_content_protection@legacy: - shard-dg2-set2: [SKIP][231] ([Intel XE#455]) -> [FAIL][232] ([Intel XE#1178]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_content_protection@legacy.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_content_protection@legacy.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [DMESG-WARN][233] -> [INCOMPLETE][234] ([Intel XE#2049] / [Intel XE#2597]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][235] ([Intel XE#2311]) -> [SKIP][236] ([Intel XE#2312]) +6 other tests skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][237] ([Intel XE#656]) -> [SKIP][238] ([Intel XE#651]) +9 other tests skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][239] ([Intel XE#4141]) -> [SKIP][240] ([Intel XE#2312]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][241] ([Intel XE#2312]) -> [SKIP][242] ([Intel XE#4141]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][243] ([Intel XE#2312]) -> [SKIP][244] ([Intel XE#2311]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][245] ([Intel XE#651]) -> [SKIP][246] ([Intel XE#656]) +14 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][247] ([Intel XE#2313]) -> [SKIP][248] ([Intel XE#2312]) +3 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][249] ([Intel XE#2312]) -> [SKIP][250] ([Intel XE#2313]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][251] ([Intel XE#656]) -> [SKIP][252] ([Intel XE#653]) +8 other tests skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][253] ([Intel XE#653]) -> [SKIP][254] ([Intel XE#656]) +10 other tests skip [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_plane_multiple@2x-tiling-y: - shard-dg2-set2: [SKIP][255] ([Intel XE#455]) -> [SKIP][256] ([Intel XE#4596]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-466/igt@kms_plane_multiple@2x-tiling-y.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-464/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][257] ([Intel XE#362]) -> [SKIP][258] ([Intel XE#1500]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@xe_module_load@load: - shard-bmg: ([PASS][259], [PASS][260], [PASS][261], [DMESG-WARN][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [DMESG-WARN][273], [DMESG-WARN][274], [PASS][275], [PASS][276], [PASS][277], [SKIP][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284]) ([Intel XE#2457] / [Intel XE#3428]) -> ([PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [SKIP][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310]) ([Intel XE#2457]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-3/igt@xe_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@xe_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@xe_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-7/igt@xe_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-2/igt@xe_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-2/igt@xe_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-7/igt@xe_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-7/igt@xe_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-7/igt@xe_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-7/igt@xe_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@xe_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@xe_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@xe_module_load@load.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@xe_module_load@load.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-6/igt@xe_module_load@load.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-2/igt@xe_module_load@load.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-3/igt@xe_module_load@load.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-3/igt@xe_module_load@load.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@xe_module_load@load.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-2/igt@xe_module_load@load.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-2/igt@xe_module_load@load.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@xe_module_load@load.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@xe_module_load@load.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@xe_module_load@load.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8331/shard-bmg-8/igt@xe_module_load@load.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-8/igt@xe_module_load@load.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@xe_module_load@load.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@xe_module_load@load.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_module_load@load.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@xe_module_load@load.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@xe_module_load@load.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@xe_module_load@load.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@xe_module_load@load.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@xe_module_load@load.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@xe_module_load@load.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@xe_module_load@load.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@xe_module_load@load.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-2/igt@xe_module_load@load.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@xe_module_load@load.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_module_load@load.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-3/igt@xe_module_load@load.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-8/igt@xe_module_load@load.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-8/igt@xe_module_load@load.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@xe_module_load@load.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_module_load@load.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-6/igt@xe_module_load@load.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-8/igt@xe_module_load@load.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@xe_module_load@load.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@xe_module_load@load.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@xe_module_load@load.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/shard-bmg-7/igt@xe_module_load@load.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351 [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4782 [Intel XE#4792]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4792 [Intel XE#4817]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4817 [Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4892 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8331 -> IGTPW_13026 * Linux: xe-2981-97cf1c266145ae8b2bb3f78168d795930a3f5191 -> xe-2983-2fa6469c618d77a738a79970a89548a657e0fa23 IGTPW_13026: 73505f342cd232367beb1591bb8500263effd660 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8331: e209a9bb68d2b524c7eeed1cb87abb4e187f2b78 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2981-97cf1c266145ae8b2bb3f78168d795930a3f5191: 97cf1c266145ae8b2bb3f78168d795930a3f5191 xe-2983-2fa6469c618d77a738a79970a89548a657e0fa23: 2fa6469c618d77a738a79970a89548a657e0fa23 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13026/index.html [-- Attachment #2: Type: text/html, Size: 91966 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-04-24 23:11 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-04-23 2:57 [PATCH 1/1] tests/intel/xe_eu_stall: Add tests to run blocking and non-blocking read twice Harish Chegondi 2025-04-23 3:37 ` ✓ i915.CI.BAT: success for series starting with [1/1] " Patchwork 2025-04-23 10:00 ` ✗ Xe.CI.Full: failure " Patchwork 2025-04-23 17:20 ` [PATCH 1/1] " Dixit, Ashutosh 2025-04-23 22:02 ` Harish Chegondi 2025-04-23 23:14 ` Dixit, Ashutosh 2025-04-24 10:21 ` Kamil Konieczny 2025-04-24 23:10 ` Harish Chegondi 2025-04-24 15:40 ` ✗ Xe.CI.Full: failure for series starting with [1/1] " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox