* [PATCH i-g-t v2 0/1] tests/intel/xe_oa: Refactors related to OA buffer size
@ 2024-11-19 9:04 Sai Teja Pottumuttu
2024-11-19 9:04 ` [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL Sai Teja Pottumuttu
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Sai Teja Pottumuttu @ 2024-11-19 9:04 UTC (permalink / raw)
To: igt-dev; +Cc: ashutosh.dixit, sai.teja.pottumuttu
Currently, the OA buffer size is hardcoded in IGT. This patch series
refactors it to get the default oa buffer size using
DRM_XE_OBSERVATION_IOCTL_INFO ioctl.
This way we need not change the oa buffer size in IGT if there are any
changes with the default size on the kernel side.
Sai Teja Pottumuttu (1):
tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL
tests/intel/xe_oa.c | 63 +++++++++++++++++++++++++++++++--------------
1 file changed, 43 insertions(+), 20 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL 2024-11-19 9:04 [PATCH i-g-t v2 0/1] tests/intel/xe_oa: Refactors related to OA buffer size Sai Teja Pottumuttu @ 2024-11-19 9:04 ` Sai Teja Pottumuttu 2024-11-19 23:25 ` Dixit, Ashutosh 2024-11-19 23:24 ` ✗ CI.xeBAT: failure for tests/intel/xe_oa: Refactors related to OA buffer size (rev2) Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 7+ messages in thread From: Sai Teja Pottumuttu @ 2024-11-19 9:04 UTC (permalink / raw) To: igt-dev; +Cc: ashutosh.dixit, sai.teja.pottumuttu Currently, the OA buffer size is hardcoded to 16MB in IGT. The patch refactors it to get the default oa buffer size using DRM_XE_OBSERVATION_IOCTL_INFO ioctl. This way if we decide to increase the default OA buffer size, it wouldn't need IGT modification every time. v2: - Rename the oa_buffer_size global variable [Ashutosh] - Use size_t instead of u64 [Ashutosh] Signed-off-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com> --- tests/intel/xe_oa.c | 63 +++++++++++++++++++++++++++++++-------------- 1 file changed, 43 insertions(+), 20 deletions(-) diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c index 33e978a48..40f5d3607 100644 --- a/tests/intel/xe_oa.c +++ b/tests/intel/xe_oa.c @@ -63,9 +63,6 @@ #define PIPE_CONTROL_PPGTT_WRITE (0 << 2) #define PIPE_CONTROL_GLOBAL_GTT_WRITE (1 << 2) -#define MAX_OA_BUF_SIZE (16 * 1024 * 1024) -#define OA_BUFFER_SIZE MAX_OA_BUF_SIZE - #define RING_FORCE_TO_NONPRIV_ADDRESS_MASK 0x03fffffc /* * Engine specific registers defined as offsets from engine->mmio_base. For @@ -303,6 +300,7 @@ struct drm_xe_engine_class_instance default_hwe; static struct intel_xe_perf *intel_xe_perf; static uint64_t oa_exp_1_millisec; +static size_t default_oa_buffer_size; struct intel_mmio_data mmio_data; static igt_render_copyfunc_t render_copy; @@ -511,6 +509,30 @@ __perf_open(int fd, struct intel_xe_oa_open_prop *param, bool prevent_pm) return ret; } +static size_t get_default_oa_buffer_size(int fd) +{ + struct drm_xe_oa_stream_info info; + uint64_t properties[] = { + DRM_XE_OA_PROPERTY_OA_UNIT_ID, 0, + DRM_XE_OA_PROPERTY_SAMPLE_OA, true, + + /* OA unit configuration */ + DRM_XE_OA_PROPERTY_OA_METRIC_SET, default_test_set->perf_oa_metrics_set, + DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(default_test_set->perf_oa_format), + DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, oa_exp_1_millisec, + }; + struct intel_xe_oa_open_prop param = { + .num_properties = ARRAY_SIZE(properties) / 2, + .properties_ptr = to_user_pointer(properties), + }; + + stream_fd = __perf_open(fd, ¶m, false); + do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_INFO, &info); + __perf_close(stream_fd); + + return info.oa_buf_size; +} + static uint64_t read_u64_file(const char *path) { @@ -1074,6 +1096,9 @@ init_sys_info(void) oa_exp_1_millisec = max_oa_exponent_for_period_lte(1000000); + default_oa_buffer_size = get_default_oa_buffer_size(drm_fd); + igt_debug("default_oa_buffer_size: %zu\n", default_oa_buffer_size); + return true; } @@ -1263,7 +1288,7 @@ read_2_oa_reports(int format_id, * to indicate that the OA unit may be over taxed if lots of reports * are being lost. */ - int max_reports = MAX_OA_BUF_SIZE / format_size; + int max_reports = default_oa_buffer_size / format_size; int buf_size = format_size * max_reports * 1.5; uint8_t *buf = malloc(buf_size); int n = 0; @@ -1685,7 +1710,7 @@ static void test_oa_exponents(const struct drm_xe_engine_class_instance *hwe) }; uint64_t expected_timestamp_delta = 2ULL << exponent; size_t format_size = get_oa_format(fmt).size; - int max_reports = MAX_OA_BUF_SIZE / format_size; + int max_reports = default_oa_buffer_size / format_size; int buf_size = format_size * max_reports * 1.5; uint8_t *buf = calloc(1, buf_size); int ret, n_timer_reports = 0; @@ -2367,8 +2392,7 @@ test_buffer_fill(const struct drm_xe_engine_class_instance *hwe) int buf_size = 65536 * report_size; uint8_t *buf = malloc(buf_size); int len; - size_t oa_buf_size = MAX_OA_BUF_SIZE; - int n_full_oa_reports = oa_buf_size / report_size; + int n_full_oa_reports = default_oa_buffer_size / report_size; uint64_t fill_duration = n_full_oa_reports * oa_period; uint32_t *last_periodic_report = malloc(report_size); u32 oa_status; @@ -2592,8 +2616,7 @@ test_enable_disable(const struct drm_xe_engine_class_instance *hwe) size_t report_size = get_oa_format(fmt).size; int buf_size = 65536 * report_size; uint8_t *buf = malloc(buf_size); - size_t oa_buf_size = MAX_OA_BUF_SIZE; - int n_full_oa_reports = oa_buf_size / report_size; + int n_full_oa_reports = default_oa_buffer_size / report_size; uint64_t fill_duration = n_full_oa_reports * oa_period; uint32_t *last_periodic_report = malloc(report_size); @@ -4012,7 +4035,7 @@ __test_mmio_triggered_reports(struct drm_xe_engine_class_instance *hwe) stream_fd = __perf_open(drm_fd, ¶m, false); set_fd_flags(stream_fd, O_CLOEXEC); - buf = mmap(0, OA_BUFFER_SIZE, PROT_READ, MAP_PRIVATE, stream_fd, 0); + buf = mmap(0, default_oa_buffer_size, PROT_READ, MAP_PRIVATE, stream_fd, 0); igt_assert(buf != NULL); emit_oa_reg_read(ibb, dst_buf, 0, OAG_OABUFFER); @@ -4061,7 +4084,7 @@ __test_mmio_triggered_reports(struct drm_xe_engine_class_instance *hwe) igt_assert_eq(mmio_triggered_reports, 2); - munmap(buf, OA_BUFFER_SIZE); + munmap(buf, default_oa_buffer_size); intel_buf_close(bops, &src); intel_buf_close(bops, &dst); intel_buf_unmap(dst_buf); @@ -4241,10 +4264,10 @@ test_oa_unit_concurrent_oa_buffer_read(void) static void *map_oa_buffer(u32 *size) { - void *vaddr = mmap(0, OA_BUFFER_SIZE, PROT_READ, MAP_PRIVATE, stream_fd, 0); + void *vaddr = mmap(0, default_oa_buffer_size, PROT_READ, MAP_PRIVATE, stream_fd, 0); igt_assert(vaddr != NULL); - *size = OA_BUFFER_SIZE; + *size = default_oa_buffer_size; return vaddr; } @@ -4254,32 +4277,32 @@ static void invalid_param_map_oa_buffer(const struct drm_xe_engine_class_instanc /* try a couple invalid mmaps */ /* bad prots */ - oa_vaddr = mmap(0, OA_BUFFER_SIZE, PROT_WRITE, MAP_PRIVATE, stream_fd, 0); + oa_vaddr = mmap(0, default_oa_buffer_size, PROT_WRITE, MAP_PRIVATE, stream_fd, 0); igt_assert(oa_vaddr == MAP_FAILED); - oa_vaddr = mmap(0, OA_BUFFER_SIZE, PROT_EXEC, MAP_PRIVATE, stream_fd, 0); + oa_vaddr = mmap(0, default_oa_buffer_size, PROT_EXEC, MAP_PRIVATE, stream_fd, 0); igt_assert(oa_vaddr == MAP_FAILED); /* bad MAPs */ - oa_vaddr = mmap(0, OA_BUFFER_SIZE, PROT_READ, MAP_SHARED, stream_fd, 0); + oa_vaddr = mmap(0, default_oa_buffer_size, PROT_READ, MAP_SHARED, stream_fd, 0); igt_assert(oa_vaddr == MAP_FAILED); /* bad size */ - oa_vaddr = mmap(0, OA_BUFFER_SIZE + 1, PROT_READ, MAP_PRIVATE, stream_fd, 0); + oa_vaddr = mmap(0, default_oa_buffer_size + 1, PROT_READ, MAP_PRIVATE, stream_fd, 0); igt_assert(oa_vaddr == MAP_FAILED); /* do the right thing */ - oa_vaddr = mmap(0, OA_BUFFER_SIZE, PROT_READ, MAP_PRIVATE, stream_fd, 0); + oa_vaddr = mmap(0, default_oa_buffer_size, PROT_READ, MAP_PRIVATE, stream_fd, 0); igt_assert(oa_vaddr != MAP_FAILED && oa_vaddr != NULL); - munmap(oa_vaddr, OA_BUFFER_SIZE); + munmap(oa_vaddr, default_oa_buffer_size); } static void unprivileged_try_to_map_oa_buffer(void) { void *oa_vaddr; - oa_vaddr = mmap(0, OA_BUFFER_SIZE, PROT_READ, MAP_PRIVATE, stream_fd, 0); + oa_vaddr = mmap(0, default_oa_buffer_size, PROT_READ, MAP_PRIVATE, stream_fd, 0); igt_assert(oa_vaddr == MAP_FAILED); igt_assert_eq(errno, EACCES); } -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL 2024-11-19 9:04 ` [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL Sai Teja Pottumuttu @ 2024-11-19 23:25 ` Dixit, Ashutosh 2024-11-21 17:13 ` Dixit, Ashutosh 0 siblings, 1 reply; 7+ messages in thread From: Dixit, Ashutosh @ 2024-11-19 23:25 UTC (permalink / raw) To: Sai Teja Pottumuttu; +Cc: igt-dev On Tue, 19 Nov 2024 01:04:05 -0800, Sai Teja Pottumuttu wrote: > > Currently, the OA buffer size is hardcoded to 16MB in IGT. The patch > refactors it to get the default oa buffer size using > DRM_XE_OBSERVATION_IOCTL_INFO ioctl. This way if we decide to increase > the default OA buffer size, it wouldn't need IGT modification every time. > > v2: > - Rename the oa_buffer_size global variable [Ashutosh] > - Use size_t instead of u64 [Ashutosh] Looks good now: Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> I will merge this after CI completes. Thanks for the patch :) ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL 2024-11-19 23:25 ` Dixit, Ashutosh @ 2024-11-21 17:13 ` Dixit, Ashutosh 0 siblings, 0 replies; 7+ messages in thread From: Dixit, Ashutosh @ 2024-11-21 17:13 UTC (permalink / raw) To: Sai Teja Pottumuttu; +Cc: igt-dev On Tue, 19 Nov 2024 15:25:39 -0800, Dixit, Ashutosh wrote: > > On Tue, 19 Nov 2024 01:04:05 -0800, Sai Teja Pottumuttu wrote: > > > > Currently, the OA buffer size is hardcoded to 16MB in IGT. The patch > > refactors it to get the default oa buffer size using > > DRM_XE_OBSERVATION_IOCTL_INFO ioctl. This way if we decide to increase > > the default OA buffer size, it wouldn't need IGT modification every time. > > > > v2: > > - Rename the oa_buffer_size global variable [Ashutosh] > > - Use size_t instead of u64 [Ashutosh] > > Looks good now: > > Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> > > I will merge this after CI completes. Thanks for the patch :) Merged! ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ CI.xeBAT: failure for tests/intel/xe_oa: Refactors related to OA buffer size (rev2) 2024-11-19 9:04 [PATCH i-g-t v2 0/1] tests/intel/xe_oa: Refactors related to OA buffer size Sai Teja Pottumuttu 2024-11-19 9:04 ` [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL Sai Teja Pottumuttu @ 2024-11-19 23:24 ` Patchwork 2024-11-19 23:37 ` ✓ Fi.CI.BAT: success " Patchwork 2024-11-20 13:01 ` ✗ CI.xeFULL: failure " Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-11-19 23:24 UTC (permalink / raw) To: Pottumuttu, Sai Teja; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6911 bytes --] == Series Details == Series: tests/intel/xe_oa: Refactors related to OA buffer size (rev2) URL : https://patchwork.freedesktop.org/series/141471/ State : failure == Summary == CI Bug Log - changes from XEIGT_8118_BAT -> XEIGTPW_12141_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12141_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12141_BAT, 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 (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12141_BAT: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - bat-lnl-1: [PASS][1] -> [DMESG-WARN][2] +56 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_psr@psr-primary-page-flip@edp-1: - bat-adlp-7: [PASS][3] -> [DMESG-WARN][4] +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-7/igt@kms_psr@psr-primary-page-flip@edp-1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/bat-adlp-7/igt@kms_psr@psr-primary-page-flip@edp-1.html Known issues ------------ Here are the changes found in XEIGTPW_12141_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - bat-adlp-7: [PASS][5] -> [DMESG-WARN][6] ([Intel XE#3517]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html * igt@kms_addfb_basic@bad-pitch-0: - bat-lnl-1: [PASS][7] -> [DMESG-WARN][8] ([Intel XE#3466]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-lnl-1/igt@kms_addfb_basic@bad-pitch-0.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/bat-lnl-1/igt@kms_addfb_basic@bad-pitch-0.html * igt@kms_addfb_basic@too-high: - bat-lnl-1: [PASS][9] -> [DMESG-WARN][10] ([Intel XE#3466] / [Intel XE#3514]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-lnl-1/igt@kms_addfb_basic@too-high.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/bat-lnl-1/igt@kms_addfb_basic@too-high.html * igt@kms_psr@psr-cursor-plane-move: - bat-adlp-7: [PASS][11] -> [SKIP][12] ([Intel XE#3443] / [Intel XE#455]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html * igt@xe_exec_atomic@basic-dec-all@engine-drm_xe_engine_class_compute-instance-0-tile-0-system-memory: - bat-lnl-1: [PASS][13] -> [DMESG-WARN][14] ([Intel XE#3514]) +103 other tests dmesg-warn [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-lnl-1/igt@xe_exec_atomic@basic-dec-all@engine-drm_xe_engine_class_compute-instance-0-tile-0-system-memory.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/bat-lnl-1/igt@xe_exec_atomic@basic-dec-all@engine-drm_xe_engine_class_compute-instance-0-tile-0-system-memory.html * igt@xe_live_ktest@xe_migrate: - bat-adlp-vf: [PASS][15] -> [SKIP][16] ([Intel XE#1192]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html * igt@xe_pat@pat-index-xelp@render: - bat-adlp-vf: [PASS][17] -> [DMESG-WARN][18] ([Intel XE#358]) +4 other tests dmesg-warn [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html #### Possible fixes #### * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch: - bat-lnl-1: [DMESG-FAIL][19] ([Intel XE#3466]) -> [PASS][20] +32 other tests pass [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-lnl-1/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/bat-lnl-1/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch.html * igt@xe_exec_threads@threads-basic: - bat-lnl-1: [DMESG-WARN][21] ([Intel XE#3466]) -> [PASS][22] +3 other tests pass [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-lnl-1/igt@xe_exec_threads@threads-basic.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/bat-lnl-1/igt@xe_exec_threads@threads-basic.html #### Warnings #### * igt@xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][23] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][24] ([Intel XE#1192]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#3443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3443 [Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466 [Intel XE#3514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3514 [Intel XE#3517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3517 [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8118 -> IGTPW_12141 * Linux: xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd -> xe-2254-ccf64319402f90f68549e2047a7f985a46436e41 IGTPW_12141: 12141 IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd xe-2254-ccf64319402f90f68549e2047a7f985a46436e41: ccf64319402f90f68549e2047a7f985a46436e41 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/index.html [-- Attachment #2: Type: text/html, Size: 8205 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel/xe_oa: Refactors related to OA buffer size (rev2) 2024-11-19 9:04 [PATCH i-g-t v2 0/1] tests/intel/xe_oa: Refactors related to OA buffer size Sai Teja Pottumuttu 2024-11-19 9:04 ` [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL Sai Teja Pottumuttu 2024-11-19 23:24 ` ✗ CI.xeBAT: failure for tests/intel/xe_oa: Refactors related to OA buffer size (rev2) Patchwork @ 2024-11-19 23:37 ` Patchwork 2024-11-20 13:01 ` ✗ CI.xeFULL: failure " Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-11-19 23:37 UTC (permalink / raw) To: Pottumuttu, Sai Teja; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5857 bytes --] == Series Details == Series: tests/intel/xe_oa: Refactors related to OA buffer size (rev2) URL : https://patchwork.freedesktop.org/series/141471/ State : success == Summary == CI Bug Log - changes from IGT_8118 -> IGTPW_12141 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12141/index.html Participating hosts (46 -> 45) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12141: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_module_load@reload: - {bat-arls-6}: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arls-6/igt@i915_module_load@reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12141/bat-arls-6/igt@i915_module_load@reload.html Known issues ------------ Here are the changes found in IGTPW_12141 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests: - bat-apl-1: [PASS][3] -> [INCOMPLETE][4] ([i915#12904]) +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@dmabuf@all-tests.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12141/bat-apl-1/igt@dmabuf@all-tests.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][5] -> [INCOMPLETE][6] ([i915#12829]) +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arlh-3/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12141/bat-arlh-3/igt@i915_selftest@live@workarounds.html * igt@runner@aborted: - bat-dg2-14: NOTRUN -> [FAIL][7] ([i915#12658]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12141/bat-dg2-14/igt@runner@aborted.html #### Possible fixes #### * igt@i915_module_load@load: - bat-twl-2: [DMESG-WARN][8] ([i915#1982]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_module_load@load.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12141/bat-twl-2/igt@i915_module_load@load.html * igt@i915_pm_rpm@module-reload: - bat-dg2-11: [FAIL][10] -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@i915_pm_rpm@module-reload.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12141/bat-dg2-11/igt@i915_pm_rpm@module-reload.html - bat-adls-6: [FAIL][12] ([i915#12903]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-adls-6/igt@i915_pm_rpm@module-reload.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12141/bat-adls-6/igt@i915_pm_rpm@module-reload.html - bat-dg1-7: [FAIL][14] ([i915#12903]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg1-7/igt@i915_pm_rpm@module-reload.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12141/bat-dg1-7/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live: - bat-mtlp-8: [ABORT][16] ([i915#12829]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12141/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-mtlp-8: [ABORT][18] -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live@workarounds.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12141/bat-mtlp-8/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-apl-1: [DMESG-WARN][20] -> [PASS][21] +2 other tests pass [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12141/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-dg2-11: [SKIP][22] ([i915#9197]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12141/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#12658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12658 [i915#12829]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12829 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8118 -> IGTPW_12141 * Linux: CI_DRM_15720 -> CI_DRM_15722 CI-20190529: 20190529 CI_DRM_15720: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15722: ccf64319402f90f68549e2047a7f985a46436e41 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12141: 12141 IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12141/index.html [-- Attachment #2: Type: text/html, Size: 6886 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ CI.xeFULL: failure for tests/intel/xe_oa: Refactors related to OA buffer size (rev2) 2024-11-19 9:04 [PATCH i-g-t v2 0/1] tests/intel/xe_oa: Refactors related to OA buffer size Sai Teja Pottumuttu ` (2 preceding siblings ...) 2024-11-19 23:37 ` ✓ Fi.CI.BAT: success " Patchwork @ 2024-11-20 13:01 ` Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-11-20 13:01 UTC (permalink / raw) To: Pottumuttu, Sai Teja; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 133877 bytes --] == Series Details == Series: tests/intel/xe_oa: Refactors related to OA buffer size (rev2) URL : https://patchwork.freedesktop.org/series/141471/ State : failure == Summary == CI Bug Log - changes from XEIGT_8118_full -> XEIGTPW_12141_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12141_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12141_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12141_full: ### IGT changes ### #### Possible regressions #### * igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p: - shard-bmg: NOTRUN -> [DMESG-WARN][1] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-1/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html * igt@kms_flip@basic-flip-vs-dpms: - shard-dg2-set2: [PASS][2] -> [DMESG-WARN][3] +3 other tests dmesg-warn [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_flip@basic-flip-vs-dpms.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_flip@basic-flip-vs-dpms.html * igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html * igt@xe_exec_basic@twice-userptr-rebind: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@xe_exec_basic@twice-userptr-rebind.html * igt@xe_mmap@bad-flags: - shard-bmg: [PASS][6] -> [DMESG-WARN][7] +6 other tests dmesg-warn [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_mmap@bad-flags.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-1/igt@xe_mmap@bad-flags.html * igt@xe_oa@oa-tlb-invalidate: - shard-dg2-set2: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-435/igt@xe_oa@oa-tlb-invalidate.html #### Warnings #### * igt@kms_flip@2x-flip-vs-suspend@ab-dp2-hdmi-a3: - shard-bmg: [DMESG-FAIL][9] ([Intel XE#3468]) -> [DMESG-FAIL][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend@ab-dp2-hdmi-a3.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend@ab-dp2-hdmi-a3.html * igt@xe_oa@invalid-oa-metric-set-id: - shard-dg2-set2: [SKIP][11] ([Intel XE#1130]) -> [SKIP][12] +7 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_oa@invalid-oa-metric-set-id.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@xe_oa@invalid-oa-metric-set-id.html * igt@xe_oa@syncs-ufence-wait: - shard-dg2-set2: [SKIP][13] ([Intel XE#2541]) -> [SKIP][14] +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_oa@syncs-ufence-wait.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@xe_oa@syncs-ufence-wait.html * igt@xe_vm@mmap-style-bind-many-all: - shard-dg2-set2: [SKIP][15] ([Intel XE#1130]) -> [ABORT][16] [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_vm@mmap-style-bind-many-all.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@xe_vm@mmap-style-bind-many-all.html Known issues ------------ Here are the changes found in XEIGTPW_12141_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getclient: - shard-dg2-set2: [PASS][17] -> [SKIP][18] ([Intel XE#2423]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@core_getclient.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@core_getclient.html * igt@core_hotunplug@hotunbind-rebind: - shard-bmg: NOTRUN -> [INCOMPLETE][19] ([Intel XE#3468]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@core_hotunplug@hotunbind-rebind.html * igt@core_setmaster@master-drop-set-root: - shard-dg2-set2: [PASS][20] -> [FAIL][21] ([Intel XE#3130] / [Intel XE#3249]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@core_setmaster@master-drop-set-root.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html * igt@fbdev@read: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2134]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@fbdev@read.html * igt@fbdev@write: - shard-dg2-set2: [PASS][23] -> [SKIP][24] ([Intel XE#2134]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@fbdev@write.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@fbdev@write.html * igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs: - shard-lnl: [PASS][25] -> [FAIL][26] ([Intel XE#1701]) +1 other test fail [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#3279]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-lnl: [PASS][28] -> [FAIL][29] ([Intel XE#1426]) +1 other test fail [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1407]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-bmg: [PASS][31] -> [INCOMPLETE][32] ([Intel XE#3225]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-lnl: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#3225] / [Intel XE#3466]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#2136]) +29 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2327]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-6/igt@kms_big_fb@linear-32bpp-rotate-270.html - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#316]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [INCOMPLETE][38] ([Intel XE#3225] / [Intel XE#3466]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#1124]) +5 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1124]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1124]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#2191]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#367]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2314] / [Intel XE#2894]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#367]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-3/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#2887]) +8 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#787]) +97 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#455] / [Intel XE#787]) +14 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#3433]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][50] -> [DMESG-WARN][51] ([Intel XE#3468]) +1 other test dmesg-warn [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][52] -> [INCOMPLETE][53] ([Intel XE#3468]) +2 other tests incomplete [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2887]) +10 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#373]) +8 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-1/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2252]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-3/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#3278]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][58] ([Intel XE#1178]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#307]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-8/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][60] ([Intel XE#1178]) +1 other test fail [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-7/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2320]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#2321]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2321]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#308]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1424]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2-set2: [PASS][66] -> [SKIP][67] ([Intel XE#2423] / [i915#2575]) +106 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#309]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy: - shard-bmg: [PASS][69] -> [SKIP][70] ([Intel XE#3007]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][71] ([Intel XE#1727] / [Intel XE#3468]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-1/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-bmg: [PASS][72] -> [DMESG-FAIL][73] ([Intel XE#2705] / [Intel XE#3468]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1508]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1340]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#2244]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2244]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#1138]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-5/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [PASS][79] -> [FAIL][80] ([Intel XE#3486]) +1 other test fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1421]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-1/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-bmg: [PASS][82] -> [DMESG-WARN][83] ([Intel XE#2955] / [Intel XE#3468]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-1/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-lnl: [PASS][84] -> [FAIL][85] ([Intel XE#886]) +4 other tests fail [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][86] ([Intel XE#3486]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][87] ([Intel XE#301] / [Intel XE#3486]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][88] ([Intel XE#301]) +4 other tests fail [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: [PASS][89] -> [INCOMPLETE][90] ([Intel XE#2597]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_flip@flip-vs-suspend.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-3/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@c-hdmi-a3: - shard-bmg: [PASS][91] -> [INCOMPLETE][92] ([Intel XE#2597] / [Intel XE#2635]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-3/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html * igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a3: - shard-bmg: [PASS][93] -> [FAIL][94] ([Intel XE#2882]) +6 other tests fail [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a3.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-6/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][95] ([Intel XE#3468]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1397] / [Intel XE#1745]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1397]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2380]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#455]) +8 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1401]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2293]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#651]) +8 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#651]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2311]) +15 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [PASS][107] -> [SKIP][108] ([Intel XE#2136]) +33 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2-set2: [PASS][109] -> [SKIP][110] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][111] ([Intel XE#2333]) +6 other tests fail [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#656]) +19 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#653]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2313]) +12 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1503]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-1/igt@kms_hdr@static-toggle-dpms.html * igt@kms_invalid_mode@uint-max-clock: - shard-lnl: [PASS][116] -> [DMESG-WARN][117] ([Intel XE#3466]) +60 other tests dmesg-warn [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@kms_invalid_mode@uint-max-clock.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-5/igt@kms_invalid_mode@uint-max-clock.html * igt@kms_pipe_crc_basic@bad-source: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2423] / [i915#2575]) +32 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_pipe_crc_basic@bad-source.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [PASS][119] -> [INCOMPLETE][120] ([Intel XE#3468]) +4 other tests incomplete [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_plane@plane-panning-bottom-right-suspend.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-4/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-bmg: [PASS][121] -> [DMESG-FAIL][122] ([Intel XE#3468]) +19 other tests dmesg-fail [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-bmg: [PASS][123] -> [DMESG-WARN][124] ([Intel XE#3468]) +74 other tests dmesg-warn [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_plane_alpha_blend@constant-alpha-max.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-1/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#2763]) +11 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2763]) +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2763]) +9 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][129] -> [FAIL][130] ([Intel XE#718]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2446]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1439] / [Intel XE#3141]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-6/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@i2c: - shard-bmg: [PASS][133] -> [DMESG-WARN][134] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_pm_rpm@i2c.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][135] -> [SKIP][136] ([Intel XE#2446]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-lnl: [PASS][137] -> [DMESG-WARN][138] ([Intel XE#2042]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-1/igt@kms_pm_rpm@universal-planes-dpms.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-8/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_pm_rpm@universal-planes-dpms@plane-59: - shard-lnl: [PASS][139] -> [DMESG-WARN][140] ([Intel XE#3184]) +1 other test dmesg-warn [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-1/igt@kms_pm_rpm@universal-planes-dpms@plane-59.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-8/igt@kms_pm_rpm@universal-planes-dpms@plane-59.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1489]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#2893]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-6/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#1489]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2387]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#1128]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2136] / [Intel XE#2351]) +13 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr-suspend: - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-5/igt@kms_psr@fbc-psr-suspend.html * igt@kms_psr@pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1406]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-3/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_psr@psr2-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@kms_psr@psr2-dpms.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#3414]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-x-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [INCOMPLETE][151] ([Intel XE#3466]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-5/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#3414]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#3414]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-4/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_vblank@query-forked: - shard-bmg: NOTRUN -> [DMESG-FAIL][154] ([Intel XE#3468]) +3 other tests dmesg-fail [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-3/igt@kms_vblank@query-forked.html * igt@kms_vblank@query-forked@pipe-d-dp-2: - shard-bmg: NOTRUN -> [DMESG-WARN][155] ([Intel XE#3468]) +25 other tests dmesg-warn [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-3/igt@kms_vblank@query-forked@pipe-d-dp-2.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][156] -> [FAIL][157] ([Intel XE#2159]) +1 other test fail [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#1499]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-6/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-fb-id: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#756]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-2/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#756]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-4/igt@kms_writeback@writeback-pixel-formats.html * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][161] ([Intel XE#3468]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-vram01-vram01: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][162] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests dmesg-fail [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-vram01-vram01.html * igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-vram01: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][163] ([Intel XE#3468]) +1 other test dmesg-fail [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-vram01.html * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#1280] / [Intel XE#455]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2905]) +6 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#2905]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery.html * igt@xe_eudebug@read-metadata: - shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#2905]) +5 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-8/igt@xe_eudebug@read-metadata.html * igt@xe_evict@evict-beng-cm-threads-small: - shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#688]) +4 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-5/igt@xe_evict@evict-beng-cm-threads-small.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: NOTRUN -> [TIMEOUT][169] ([Intel XE#1473]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [PASS][170] -> [INCOMPLETE][171] ([Intel XE#1473]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [PASS][172] -> [TIMEOUT][173] ([Intel XE#1473]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@xe_evict@evict-beng-mixed-threads-large.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-5/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_exec_balancer@no-exec-virtual-userptr-invalidate: - shard-dg2-set2: [PASS][174] -> [DMESG-WARN][175] ([Intel XE#1727]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_exec_balancer@no-exec-virtual-userptr-invalidate.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@xe_exec_balancer@no-exec-virtual-userptr-invalidate.html * igt@xe_exec_basic@many-execqueues-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#1130]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@xe_exec_basic@many-execqueues-userptr-invalidate.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#2322]) +6 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#1392]) +4 other tests skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt@xe_exec_basic@once-userptr-invalidate-race: - shard-dg2-set2: [PASS][179] -> [SKIP][180] ([Intel XE#1130]) +167 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_basic@once-userptr-invalidate-race.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@xe_exec_basic@once-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-bindexecqueue-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][181] ([Intel XE#288]) +6 other tests skip [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@many-userptr-invalidate-imm: - shard-lnl: [PASS][182] -> [DMESG-FAIL][183] ([Intel XE#3466]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@xe_exec_fault_mode@many-userptr-invalidate-imm.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-5/igt@xe_exec_fault_mode@many-userptr-invalidate-imm.html * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate: - shard-bmg: [PASS][184] -> [DMESG-FAIL][185] ([Intel XE#3371]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-dg2-set2: [PASS][186] -> [SKIP][187] ([Intel XE#2229]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][188] ([Intel XE#1999]) +1 other test fail [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][189] ([Intel XE#2457]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-7/igt@xe_module_load@force-load.html * igt@xe_module_load@unload: - shard-bmg: [PASS][190] -> [DMESG-WARN][191] ([Intel XE#3467]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_module_load@unload.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-3/igt@xe_module_load@unload.html * igt@xe_oa@mmio-triggered-reports: - shard-bmg: [PASS][192] -> [FAIL][193] ([Intel XE#2249]) +1 other test fail [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@xe_oa@mmio-triggered-reports.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-7/igt@xe_oa@mmio-triggered-reports.html - shard-lnl: [PASS][194] -> [FAIL][195] ([Intel XE#2249]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-1/igt@xe_oa@mmio-triggered-reports.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-4/igt@xe_oa@mmio-triggered-reports.html * igt@xe_oa@mmio-triggered-reports@ccs-0: - shard-lnl: NOTRUN -> [FAIL][196] ([Intel XE#2249]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-4/igt@xe_oa@mmio-triggered-reports@ccs-0.html * igt@xe_oa@oa-tlb-invalidate: - shard-bmg: NOTRUN -> [SKIP][197] ([Intel XE#2248]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][198] ([Intel XE#2284] / [Intel XE#366]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-5/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@d3cold-mmap-vram: - shard-bmg: NOTRUN -> [SKIP][199] ([Intel XE#2284]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-5/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@s2idle-basic-exec: - shard-bmg: [PASS][200] -> [DMESG-FAIL][201] ([Intel XE#1727] / [Intel XE#3468]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@xe_pm@s2idle-basic-exec.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-7/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s3-basic-exec: - shard-bmg: [PASS][202] -> [DMESG-WARN][203] ([Intel XE#3468] / [Intel XE#569]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@xe_pm@s3-basic-exec.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][204] ([Intel XE#2284] / [Intel XE#366]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-435/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [PASS][205] -> [ABORT][206] ([Intel XE#1794]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@xe_pm@s4-vm-bind-unbind-all.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_pm_residency@cpg-basic: - shard-lnl: NOTRUN -> [SKIP][207] ([Intel XE#584]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-3/igt@xe_pm_residency@cpg-basic.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][208] ([Intel XE#944]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_sriov_flr@flr-each-isolation: - shard-lnl: NOTRUN -> [SKIP][209] ([Intel XE#3342]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-2/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_vm@large-binds-1073741824: - shard-dg2-set2: NOTRUN -> [SKIP][210] ([Intel XE#1130]) +69 other tests skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@xe_vm@large-binds-1073741824.html * igt@xe_vm@large-misaligned-binds-4194304: - shard-lnl: NOTRUN -> [DMESG-WARN][211] ([Intel XE#3466]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-5/igt@xe_vm@large-misaligned-binds-4194304.html * igt@xe_vm@munmap-style-unbind-userptr-inval-many-either-side-full: - shard-bmg: [PASS][212] -> [SKIP][213] ([Intel XE#1130]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@xe_vm@munmap-style-unbind-userptr-inval-many-either-side-full.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@xe_vm@munmap-style-unbind-userptr-inval-many-either-side-full.html * igt@xe_wedged@basic-wedged: - shard-bmg: NOTRUN -> [DMESG-WARN][214] ([Intel XE#2919]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-5/igt@xe_wedged@basic-wedged.html * igt@xe_wedged@wedged-at-any-timeout: - shard-dg2-set2: NOTRUN -> [ABORT][215] ([Intel XE#3421]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@xe_wedged@wedged-at-any-timeout.html #### Possible fixes #### * igt@core_getversion@all-cards: - shard-dg2-set2: [FAIL][216] ([Intel XE#3440]) -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@core_getversion@all-cards.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@core_getversion@all-cards.html * igt@core_hotunplug@hotreplug: - shard-bmg: [DMESG-WARN][218] ([Intel XE#3521]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@core_hotunplug@hotreplug.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-5/igt@core_hotunplug@hotreplug.html * igt@core_hotunplug@unbind-rebind: - shard-dg2-set2: [SKIP][220] ([Intel XE#1885]) -> [PASS][221] [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@core_hotunplug@unbind-rebind.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-435/igt@core_hotunplug@unbind-rebind.html * igt@fbdev@pan: - shard-dg2-set2: [SKIP][222] ([Intel XE#2134]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@fbdev@pan.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@fbdev@pan.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-bmg: [INCOMPLETE][224] ([Intel XE#2613]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-3: - shard-bmg: [INCOMPLETE][226] -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-3.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-3.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][228] ([Intel XE#2136]) -> [PASS][229] +16 other tests pass [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@4-tiled-addfb-size-overflow.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [DMESG-FAIL][230] ([Intel XE#3468]) -> [PASS][231] +15 other tests pass [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-lnl: [INCOMPLETE][232] ([Intel XE#3466]) -> [PASS][233] +1 other test pass [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-180.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: [DMESG-WARN][234] ([Intel XE#2705]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_dp_aux_dev: - shard-dg2-set2: [SKIP][236] ([Intel XE#2423]) -> [PASS][237] +2 other tests pass [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_dp_aux_dev.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@kms_dp_aux_dev.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3: - shard-bmg: [FAIL][238] ([Intel XE#3321] / [Intel XE#3486]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html * igt@kms_flip@busy-flip: - shard-dg2-set2: [SKIP][240] ([Intel XE#2423] / [i915#2575]) -> [PASS][241] +90 other tests pass [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_flip@busy-flip.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@kms_flip@busy-flip.html * igt@kms_flip@flip-vs-expired-vblank@c-dp2: - shard-bmg: [DMESG-WARN][242] ([Intel XE#3468]) -> [PASS][243] +89 other tests pass [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html * igt@kms_frontbuffer_tracking@fbc-1p-rte: - shard-dg2-set2: [INCOMPLETE][244] ([Intel XE#1195]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-dg2-set2: [SKIP][246] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][247] +9 other tests pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_plane_cursor@primary: - shard-lnl: [DMESG-WARN][248] ([Intel XE#3466]) -> [PASS][249] +36 other tests pass [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_plane_cursor@primary.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-1/igt@kms_plane_cursor@primary.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-bmg: [DMESG-WARN][250] ([Intel XE#2566]) -> [PASS][251] +1 other test pass [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][252] ([Intel XE#1430]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2-set2: [SKIP][254] ([Intel XE#2446]) -> [PASS][255] +1 other test pass [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-dg2-set2: [ABORT][256] ([Intel XE#3468]) -> [PASS][257] +1 other test pass [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_pm_rpm@modeset-stress-extra-wait.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_pm_rpm@modeset-stress-extra-wait.html - shard-bmg: [INCOMPLETE][258] ([Intel XE#2864]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-lnl: [FAIL][260] ([Intel XE#899]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_vblank@query-busy: - shard-bmg: [INCOMPLETE][262] ([Intel XE#1727]) -> [PASS][263] +3 other tests pass [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_vblank@query-busy.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-2/igt@kms_vblank@query-busy.html * igt@xe_evict@evict-small-multi-vm: - shard-dg2-set2: [DMESG-WARN][264] ([Intel XE#1727]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_evict@evict-small-multi-vm.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@xe_evict@evict-small-multi-vm.html * igt@xe_exec_basic@many-execqueues-many-vm-userptr-rebind: - shard-bmg: [DMESG-WARN][266] ([Intel XE#1727]) -> [PASS][267] +2 other tests pass [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_exec_basic@many-execqueues-many-vm-userptr-rebind.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-5/igt@xe_exec_basic@many-execqueues-many-vm-userptr-rebind.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race: - shard-lnl: [DMESG-FAIL][268] ([Intel XE#3466]) -> [PASS][269] +5 other tests pass [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-4/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate: - shard-lnl: [DMESG-WARN][270] ([Intel XE#3371]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-5/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html * igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready: - shard-bmg: [DMESG-WARN][272] ([Intel XE#3467]) -> [PASS][273] +3 other tests pass [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-dg2-set2: [TIMEOUT][274] ([Intel XE#2961] / [Intel XE#3191]) -> [PASS][275] +1 other test pass [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_mocs: - shard-bmg: [SKIP][276] ([Intel XE#1192]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_live_ktest@xe_mocs.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@xe_live_ktest@xe_mocs.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-bmg: [DMESG-WARN][278] ([Intel XE#569]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_pm@s3-d3hot-basic-exec.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-5/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_pm@s4-basic-exec: - shard-lnl: [ABORT][280] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@xe_pm@s4-basic-exec.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-6/igt@xe_pm@s4-basic-exec.html * igt@xe_pm_residency@gt-c6-freeze@gt1: - shard-bmg: [DMESG-FAIL][282] ([Intel XE#1727]) -> [PASS][283] +1 other test pass [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt1.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-4/igt@xe_pm_residency@gt-c6-freeze@gt1.html * igt@xe_vm@munmap-style-unbind-many-either-side-partial: - shard-dg2-set2: [SKIP][284] ([Intel XE#1130]) -> [PASS][285] +158 other tests pass [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html #### Warnings #### * igt@core_hotunplug@hotunbind-rebind: - shard-dg2-set2: [DMESG-WARN][286] ([Intel XE#3521]) -> [INCOMPLETE][287] ([Intel XE#3468]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@core_hotunplug@hotunbind-rebind.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@core_hotunplug@hotunbind-rebind.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg2-set2: [SKIP][288] ([Intel XE#316]) -> [SKIP][289] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: [SKIP][290] ([Intel XE#2136]) -> [SKIP][291] ([Intel XE#316]) +2 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-270.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-0: - shard-bmg: [DMESG-WARN][292] ([Intel XE#3468]) -> [DMESG-FAIL][293] ([Intel XE#3468]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_big_fb@linear-8bpp-rotate-0.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@kms_big_fb@linear-8bpp-rotate-0.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][294] ([Intel XE#316]) -> [SKIP][295] ([Intel XE#2136]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][296] ([Intel XE#2136]) -> [SKIP][297] ([Intel XE#1124]) +5 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][298] ([Intel XE#1124]) -> [SKIP][299] ([Intel XE#2136]) +10 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2-set2: [SKIP][300] ([Intel XE#1124]) -> [SKIP][301] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][302] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][303] ([Intel XE#1124]) +3 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: [SKIP][304] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][305] ([Intel XE#619]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][306] ([Intel XE#2136]) -> [SKIP][307] ([Intel XE#610]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-dg2-set2: [SKIP][308] ([Intel XE#2423] / [i915#2575]) -> [SKIP][309] ([Intel XE#2191]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][310] ([Intel XE#2191]) -> [SKIP][311] ([Intel XE#2423] / [i915#2575]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: [SKIP][312] ([Intel XE#2423] / [i915#2575]) -> [SKIP][313] ([Intel XE#367]) +6 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: [SKIP][314] ([Intel XE#367]) -> [SKIP][315] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][316] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][317] ([Intel XE#2136]) +8 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][318] ([Intel XE#2136]) -> [SKIP][319] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][320] ([Intel XE#2907]) -> [SKIP][321] ([Intel XE#2136]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][322] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][323] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][324] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][325] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][326] ([Intel XE#2136]) -> [SKIP][327] ([Intel XE#3442]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [FAIL][328] ([Intel XE#616]) -> [SKIP][329] ([Intel XE#2136]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][330] ([Intel XE#2136]) -> [SKIP][331] ([Intel XE#2907]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][332] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][333] ([Intel XE#314]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][334] ([Intel XE#306]) -> [SKIP][335] ([Intel XE#2423] / [i915#2575]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_chamelium_color@ctm-limited-range.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@degamma: - shard-dg2-set2: [SKIP][336] ([Intel XE#2423] / [i915#2575]) -> [SKIP][337] ([Intel XE#306]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_chamelium_color@degamma.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-dg2-set2: [SKIP][338] ([Intel XE#373]) -> [SKIP][339] ([Intel XE#2423] / [i915#2575]) +12 other tests skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_chamelium_frames@vga-frame-dump.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][340] ([Intel XE#2423] / [i915#2575]) -> [SKIP][341] ([Intel XE#373]) +9 other tests skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@atomic-dpms: - shard-dg2-set2: [SKIP][342] ([Intel XE#2423] / [i915#2575]) -> [FAIL][343] ([Intel XE#1178]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: [SKIP][344] ([Intel XE#2423] / [i915#2575]) -> [SKIP][345] ([Intel XE#307]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_content_protection@dp-mst-type-0.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][346] ([Intel XE#307]) -> [SKIP][347] ([Intel XE#2423] / [i915#2575]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm: - shard-dg2-set2: [FAIL][348] ([Intel XE#1178]) -> [SKIP][349] ([Intel XE#2423] / [i915#2575]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_content_protection@srm.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_content_protection@srm.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: [FAIL][350] ([Intel XE#1178]) -> [INCOMPLETE][351] ([Intel XE#2715] / [Intel XE#3468]) +1 other test incomplete [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_content_protection@srm@pipe-a-dp-2.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-4/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: [SKIP][352] ([Intel XE#308]) -> [SKIP][353] ([Intel XE#2423] / [i915#2575]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-512x170.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2-set2: [SKIP][354] ([Intel XE#2423] / [i915#2575]) -> [SKIP][355] ([Intel XE#455]) +11 other tests skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-dg2-set2: [INCOMPLETE][356] ([Intel XE#1195] / [Intel XE#3226]) -> [SKIP][357] ([Intel XE#2423] / [i915#2575]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][358] ([Intel XE#2423] / [i915#2575]) -> [SKIP][359] ([Intel XE#323]) +2 other tests skip [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2-set2: [SKIP][360] ([Intel XE#323]) -> [SKIP][361] ([Intel XE#2423] / [i915#2575]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-dg2-set2: [FAIL][362] ([Intel XE#1475]) -> [SKIP][363] ([Intel XE#2423] / [i915#2575]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: [SKIP][364] ([Intel XE#455]) -> [SKIP][365] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_dsc@dsc-with-bpc-formats.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: [DMESG-FAIL][366] ([Intel XE#3468]) -> [FAIL][367] ([Intel XE#1695]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][368] ([Intel XE#776]) -> [SKIP][369] ([Intel XE#2136]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][370] ([Intel XE#2423] / [i915#2575]) -> [SKIP][371] ([Intel XE#701]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_feature_discovery@chamelium.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: [SKIP][372] ([Intel XE#1135]) -> [SKIP][373] ([Intel XE#2423] / [i915#2575]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_feature_discovery@psr2.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][374] ([Intel XE#301]) -> [SKIP][375] ([Intel XE#2423] / [i915#2575]) +1 other test skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-bmg: [INCOMPLETE][376] ([Intel XE#2597]) -> [ABORT][377] ([Intel XE#3468]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3: - shard-bmg: [DMESG-FAIL][378] ([Intel XE#3468]) -> [ABORT][379] ([Intel XE#3468]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [SKIP][380] ([Intel XE#2423] / [i915#2575]) -> [FAIL][381] ([Intel XE#301]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6: - shard-dg2-set2: [DMESG-FAIL][382] ([Intel XE#1727]) -> [FAIL][383] ([Intel XE#301]) +1 other test fail [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [SKIP][384] ([Intel XE#2136]) -> [INCOMPLETE][385] ([Intel XE#3468]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-dg2-set2: [INCOMPLETE][386] ([Intel XE#1195] / [Intel XE#1727]) -> [SKIP][387] ([Intel XE#2136]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-dg2-set2: [INCOMPLETE][388] ([Intel XE#1195] / [Intel XE#3468]) -> [SKIP][389] ([Intel XE#2136] / [Intel XE#2351]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][390] ([Intel XE#2136]) -> [SKIP][391] ([Intel XE#455]) +4 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2-set2: [SKIP][392] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][393] ([Intel XE#455]) +3 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][394] ([Intel XE#455]) -> [SKIP][395] ([Intel XE#2136]) +1 other test skip [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-bmg: [SKIP][396] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][397] ([Intel XE#2136] / [Intel XE#2231]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move: - shard-dg2-set2: [SKIP][398] ([Intel XE#651]) -> [SKIP][399] ([Intel XE#2136] / [Intel XE#2351]) +11 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][400] ([Intel XE#2136]) -> [SKIP][401] ([Intel XE#651]) +17 other tests skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][402] ([Intel XE#651]) -> [SKIP][403] ([Intel XE#2136]) +21 other tests skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-bmg: [DMESG-FAIL][404] ([Intel XE#3468]) -> [FAIL][405] ([Intel XE#2333]) +11 other tests fail [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-rte: - shard-bmg: [INCOMPLETE][406] ([Intel XE#3468]) -> [FAIL][407] ([Intel XE#2333]) [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [FAIL][408] ([Intel XE#2333]) -> [DMESG-FAIL][409] ([Intel XE#3468]) +8 other tests dmesg-fail [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2-set2: [INCOMPLETE][410] ([Intel XE#1195] / [Intel XE#3468]) -> [SKIP][411] ([Intel XE#2136]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-rte.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][412] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][413] ([Intel XE#651]) +10 other tests skip [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][414] ([Intel XE#2136]) -> [SKIP][415] ([Intel XE#653]) +23 other tests skip [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: [SKIP][416] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][417] ([Intel XE#653]) +8 other tests skip [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][418] ([Intel XE#653]) -> [SKIP][419] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][420] ([Intel XE#653]) -> [SKIP][421] ([Intel XE#2136]) +28 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][422] ([Intel XE#605]) -> [SKIP][423] ([Intel XE#2423] / [i915#2575]) [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_getfb@getfb-reject-ccs.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: [SKIP][424] ([Intel XE#2136]) -> [SKIP][425] ([Intel XE#2927]) [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-set2: [SKIP][426] ([Intel XE#2423] / [i915#2575]) -> [SKIP][427] ([Intel XE#2763] / [Intel XE#455]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: [SKIP][428] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][429] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: [SKIP][430] ([Intel XE#870]) -> [SKIP][431] ([Intel XE#2136]) +2 other tests skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][432] ([Intel XE#2136]) -> [SKIP][433] ([Intel XE#870]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][434] ([Intel XE#3309]) -> [SKIP][435] ([Intel XE#2136]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][436] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][437] ([Intel XE#1129]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: [SKIP][438] ([Intel XE#2136]) -> [SKIP][439] ([Intel XE#908]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@i2c: - shard-dg2-set2: [SKIP][440] ([Intel XE#2446]) -> [DMESG-FAIL][441] ([Intel XE#1727] / [Intel XE#3468]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_rpm@i2c.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2-set2: [ABORT][442] ([Intel XE#3468]) -> [SKIP][443] ([Intel XE#2446]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_pm_rpm@modeset-lpsp.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-dg2-set2: [DMESG-WARN][444] ([Intel XE#2042]) -> [SKIP][445] ([Intel XE#2446]) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@universal-planes-dpms.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][446] ([Intel XE#2136]) -> [SKIP][447] ([Intel XE#1489]) +9 other tests skip [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][448] ([Intel XE#1489]) -> [SKIP][449] ([Intel XE#2136]) +7 other tests skip [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2-set2: [SKIP][450] ([Intel XE#1122]) -> [SKIP][451] ([Intel XE#2136]) +1 other test skip [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_psr2_su@page_flip-p010.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][452] ([Intel XE#2136]) -> [SKIP][453] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr@pr-sprite-blt: - shard-dg2-set2: [SKIP][454] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][455] ([Intel XE#2136]) +13 other tests skip [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_psr@pr-sprite-blt.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][456] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][457] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_psr@psr-dpms.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_psr@psr-dpms.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][458] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][459] ([Intel XE#2351]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_psr@psr-sprite-plane-onoff.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-primary-blt: - shard-dg2-set2: [SKIP][460] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][461] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr@psr2-primary-blt.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@kms_psr@psr2-primary-blt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][462] ([Intel XE#2136]) -> [SKIP][463] ([Intel XE#2939]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: [SKIP][464] ([Intel XE#2423] / [i915#2575]) -> [SKIP][465] ([Intel XE#3414]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_rotation_crc@bad-tiling.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: [SKIP][466] ([Intel XE#3414]) -> [SKIP][467] ([Intel XE#2423] / [i915#2575]) [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_rotation_crc@primary-rotation-90.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][468] ([Intel XE#1127]) -> [SKIP][469] ([Intel XE#2423] / [i915#2575]) +1 other test skip [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][470] ([Intel XE#455]) -> [SKIP][471] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_vrr@flip-dpms.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-dg2-set2: [SKIP][472] ([Intel XE#2423] / [i915#2575]) -> [SKIP][473] ([Intel XE#2168]) [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_vrr@lobf.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: [SKIP][474] ([Intel XE#756]) -> [SKIP][475] ([Intel XE#2423] / [i915#2575]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_writeback@writeback-fb-id-xrgb2101010.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@xe_ccs@suspend-resume: - shard-dg2-set2: [SKIP][476] ([Intel XE#1130]) -> [INCOMPLETE][477] ([Intel XE#3468]) [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_ccs@suspend-resume.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@xe_ccs@suspend-resume.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][478] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][479] ([Intel XE#1130]) [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][480] ([Intel XE#1130]) -> [SKIP][481] ([Intel XE#1280] / [Intel XE#455]) [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_compute_preempt@compute-threadgroup-preempt.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: [SKIP][482] ([Intel XE#1130]) -> [SKIP][483] ([Intel XE#1123]) [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][484] ([Intel XE#1126]) -> [SKIP][485] ([Intel XE#1130]) +1 other test skip [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfffe.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: [SKIP][486] ([Intel XE#1130]) -> [SKIP][487] ([Intel XE#2905]) +10 other tests skip [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_eudebug@basic-close.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@xe_eudebug@basic-close.html * igt@xe_eudebug_online@basic-breakpoint: - shard-dg2-set2: [SKIP][488] ([Intel XE#2905]) -> [SKIP][489] ([Intel XE#1130]) +14 other tests skip [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_eudebug_online@basic-breakpoint.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@xe_eudebug_online@basic-breakpoint.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [FAIL][490] ([Intel XE#1600]) -> [SKIP][491] ([Intel XE#1130]) [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@xe_evict@evict-beng-large-multi-vm-cm.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][492] ([Intel XE#1473]) -> [SKIP][493] ([Intel XE#1130]) [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_balancer@many-execqueues-virtual-rebind: - shard-dg2-set2: [DMESG-WARN][494] ([Intel XE#1727]) -> [SKIP][495] ([Intel XE#1130]) +2 other tests skip [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_balancer@many-execqueues-virtual-rebind.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@xe_exec_balancer@many-execqueues-virtual-rebind.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [INCOMPLETE][496] ([Intel XE#1195]) -> [SKIP][497] ([Intel XE#1130]) [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt@xe_exec_fault_mode@once-basic-imm: - shard-dg2-set2: [SKIP][498] ([Intel XE#288]) -> [SKIP][499] ([Intel XE#1130]) +36 other tests skip [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_fault_mode@once-basic-imm.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@xe_exec_fault_mode@once-basic-imm.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][500] ([Intel XE#1130]) -> [SKIP][501] ([Intel XE#288]) +30 other tests skip [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence: - shard-dg2-set2: [SKIP][502] ([Intel XE#2360]) -> [SKIP][503] ([Intel XE#1130]) [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][504] ([Intel XE#1130]) -> [SKIP][505] ([Intel XE#2360]) +1 other test skip [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt@xe_fault_injection@inject-fault-probe-function-xe_device_create: - shard-dg2-set2: [DMESG-WARN][506] ([Intel XE#3467]) -> [SKIP][507] ([Intel XE#1130]) +3 other tests skip [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: - shard-dg2-set2: [DMESG-WARN][508] ([Intel XE#3343]) -> [SKIP][509] ([Intel XE#1130]) [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init: - shard-dg2-set2: [SKIP][510] ([Intel XE#1130]) -> [DMESG-WARN][511] ([Intel XE#3343]) +1 other test dmesg-warn [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html - shard-bmg: [DMESG-WARN][512] ([Intel XE#3343]) -> [DMESG-WARN][513] ([Intel XE#3343] / [Intel XE#3468]) [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-bmg: [DMESG-WARN][514] ([Intel XE#3467]) -> [DMESG-WARN][515] ([Intel XE#3467] / [Intel XE#3468]) +2 other tests dmesg-warn [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: - shard-bmg: [DMESG-FAIL][516] ([Intel XE#3467]) -> [DMESG-FAIL][517] ([Intel XE#3467] / [Intel XE#3468]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: - shard-bmg: [FAIL][518] ([Intel XE#3499]) -> [DMESG-FAIL][519] ([Intel XE#3467] / [Intel XE#3468]) [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: - shard-lnl: [FAIL][520] ([Intel XE#3499]) -> [FAIL][521] ([Intel XE#3499] / [Intel XE#3539]) +4 other tests fail [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-lnl-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html - shard-bmg: [FAIL][522] ([Intel XE#3499]) -> [FAIL][523] ([Intel XE#3499] / [Intel XE#3539]) +1 other test fail [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: - shard-dg2-set2: [SKIP][524] ([Intel XE#1130]) -> [DMESG-WARN][525] ([Intel XE#3467]) +1 other test dmesg-warn [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc: - shard-bmg: [DMESG-FAIL][526] ([Intel XE#3467]) -> [FAIL][527] ([Intel XE#3499] / [Intel XE#3539]) [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html * igt@xe_live_ktest@xe_mocs: - shard-dg2-set2: [SKIP][528] ([Intel XE#1192]) -> [FAIL][529] ([Intel XE#1999]) [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@xe_live_ktest@xe_mocs.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][530] ([Intel XE#1130]) -> [SKIP][531] ([Intel XE#560]) [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_media_fill@media-fill.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-433/igt@xe_media_fill@media-fill.html * igt@xe_module_load@reload: - shard-dg2-set2: [FAIL][532] ([Intel XE#2136]) -> [DMESG-WARN][533] ([Intel XE#3467]) [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_module_load@reload.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@xe_module_load@reload.html * igt@xe_oa@non-system-wide-paranoid: - shard-dg2-set2: [SKIP][534] ([Intel XE#2541]) -> [SKIP][535] ([Intel XE#1130]) +12 other tests skip [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_oa@non-system-wide-paranoid.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@xe_oa@non-system-wide-paranoid.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][536] ([Intel XE#1337]) -> [SKIP][537] ([Intel XE#1130]) [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][538] ([Intel XE#1130]) -> [SKIP][539] ([Intel XE#2839] / [Intel XE#977]) [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_pat@pat-index-xe2.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-464/igt@xe_pat@pat-index-xe2.html * igt@xe_pm@d3cold-mmap-system: - shard-dg2-set2: [SKIP][540] ([Intel XE#1130]) -> [SKIP][541] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_pm@d3cold-mmap-system.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][542] ([Intel XE#2284]) -> [SKIP][543] ([Intel XE#1130]) [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_pm@d3cold-mocs.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s2idle-vm-bind-prefetch: - shard-bmg: [DMESG-FAIL][544] ([Intel XE#3468]) -> [DMESG-WARN][545] ([Intel XE#1616] / [Intel XE#3468]) [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-prefetch.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-prefetch.html - shard-dg2-set2: [DMESG-FAIL][546] ([Intel XE#3468]) -> [SKIP][547] ([Intel XE#1130]) [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s2idle-vm-bind-prefetch.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@xe_pm@s2idle-vm-bind-prefetch.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [DMESG-WARN][548] ([Intel XE#569]) -> [DMESG-WARN][549] ([Intel XE#3468] / [Intel XE#569]) +1 other test dmesg-warn [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s3-basic-exec.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-463/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: [SKIP][550] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][551] ([Intel XE#1130]) [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_pm@s3-d3cold-basic-exec.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-434/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s3-multiple-execs: - shard-bmg: [DMESG-WARN][552] ([Intel XE#569]) -> [DMESG-WARN][553] ([Intel XE#3468] / [Intel XE#569]) [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_pm@s3-multiple-execs.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-bmg-1/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: [SKIP][554] ([Intel XE#579]) -> [SKIP][555] ([Intel XE#1130]) [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_pm@vram-d3cold-threshold.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][556] ([Intel XE#1130]) -> [SKIP][557] ([Intel XE#944]) +4 other tests skip [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_query@multigpu-query-engines.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-436/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-topology: - shard-dg2-set2: [SKIP][558] ([Intel XE#944]) -> [SKIP][559] ([Intel XE#1130]) +2 other tests skip [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_query@multigpu-query-topology.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@xe_query@multigpu-query-topology.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][560] ([Intel XE#3342]) -> [SKIP][561] ([Intel XE#1130]) [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_sriov_flr@flr-vf1-clear.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/shard-dg2-466/igt@xe_sriov_flr@flr-vf1-clear.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [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#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [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#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#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#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955 [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3130 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191 [Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225 [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [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#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421 [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521 [Intel XE#3539]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3539 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8118 -> IGTPW_12141 * Linux: xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd -> xe-2254-ccf64319402f90f68549e2047a7f985a46436e41 IGTPW_12141: 12141 IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd xe-2254-ccf64319402f90f68549e2047a7f985a46436e41: ccf64319402f90f68549e2047a7f985a46436e41 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12141/index.html [-- Attachment #2: Type: text/html, Size: 171250 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-11-21 17:13 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-19 9:04 [PATCH i-g-t v2 0/1] tests/intel/xe_oa: Refactors related to OA buffer size Sai Teja Pottumuttu 2024-11-19 9:04 ` [PATCH i-g-t v2 1/1] tests/intel/xe_oa: Fetch OA buffer size from observation IOCTL Sai Teja Pottumuttu 2024-11-19 23:25 ` Dixit, Ashutosh 2024-11-21 17:13 ` Dixit, Ashutosh 2024-11-19 23:24 ` ✗ CI.xeBAT: failure for tests/intel/xe_oa: Refactors related to OA buffer size (rev2) Patchwork 2024-11-19 23:37 ` ✓ Fi.CI.BAT: success " Patchwork 2024-11-20 13:01 ` ✗ CI.xeFULL: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox