* [PATCH i-g-t] lib/amdgpu: enhance sdma test
@ 2024-09-27 9:09 Jesse.zhang@amd.com
2024-09-27 14:48 ` ✓ Fi.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Jesse.zhang@amd.com @ 2024-09-27 9:09 UTC (permalink / raw)
To: igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Kamil Konieczny,
Jesse.zhang@amd.com
The sdma may have multiple rings,
each of which should be tested.
Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: Christian Koenig <christian.koenig@amd.com>
Signed-off-by: Jesse Zhang <jesse.zhang@amd.com>
---
lib/amdgpu/amd_deadlock_helpers.c | 45 +++++++++++++++++++++++++++----
lib/amdgpu/amd_deadlock_helpers.h | 5 ++--
tests/amdgpu/amd_deadlock.c | 18 ++++++-------
3 files changed, 51 insertions(+), 17 deletions(-)
diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c
index c71272e58..851f096b9 100644
--- a/lib/amdgpu/amd_deadlock_helpers.c
+++ b/lib/amdgpu/amd_deadlock_helpers.c
@@ -169,8 +169,8 @@ amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_ty
free_cmd_base(base_cmd);
}
-void
-bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type)
+static void
+bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type, unsigned int ring_id)
{
const struct amdgpu_ip_block_version *ip_block = NULL;
@@ -190,7 +190,7 @@ bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, un
ring_context->pm4 = calloc(pm4_dw, sizeof(*ring_context->pm4));
ring_context->pm4_size = pm4_dw;
ring_context->res_cnt = 1;
- ring_context->ring_id = 0;
+ ring_context->ring_id = ring_id;
igt_assert(ring_context->pm4);
ip_block = get_ip_block(device_handle, ip_type);
r = amdgpu_bo_alloc_and_map(device_handle,
@@ -216,11 +216,27 @@ bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, un
free(ring_context);
}
+void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type)
+{
+ int r;
+ struct drm_amdgpu_info_hw_ip info;
+ uint32_t ring_id;
+
+ r = amdgpu_query_hw_ip_info(device_handle, ip_type, 0, &info);
+ igt_assert_eq(r, 0);
+ if (!info.available_rings)
+ igt_info("SKIP ... as there's no ring for ip %d\n", ip_type);
+
+ for (ring_id = 0; (1 << ring_id) & info.available_rings; ring_id++) {
+ bad_access_helper(device_handle, cmd_error, ip_type, ring_id);
+ }
+}
+
#define MAX_DMABUF_COUNT 0x20000
#define MAX_DWORD_COUNT 256
-void
-amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type)
+static void
+amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type, unsigned int ring_id)
{
int j, r;
uint32_t *ptr, offset;
@@ -240,6 +256,7 @@ amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type)
}
ring_context->secure = false;
ring_context->res_cnt = 2;
+ ring_context->ring_id = ring_id;
igt_assert(ring_context->pm4);
r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle);
@@ -309,3 +326,21 @@ amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type)
igt_assert_eq(r, 0);
free_cmd_base(base_cmd);
}
+
+void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type)
+{
+ int r;
+ struct drm_amdgpu_info_hw_ip info;
+ uint32_t ring_id;
+
+ r = amdgpu_query_hw_ip_info(device_handle, AMDGPU_HW_IP_DMA, 0, &info);
+ igt_assert_eq(r, 0);
+ if (!info.available_rings)
+ igt_info("SKIP ... as there's no ring for the sdma\n");
+
+ for (ring_id = 0; (1 << ring_id) & info.available_rings; ring_id++) {
+ printf("%s[%d] ring_id:%d ######## \n",__func__,__LINE__,ring_id);
+ amdgpu_hang_sdma_helper(device_handle, hang_type, ring_id);
+ }
+}
+
diff --git a/lib/amdgpu/amd_deadlock_helpers.h b/lib/amdgpu/amd_deadlock_helpers.h
index 165ffb98d..7f8419280 100644
--- a/lib/amdgpu/amd_deadlock_helpers.h
+++ b/lib/amdgpu/amd_deadlock_helpers.h
@@ -26,11 +26,10 @@
void
amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_type);
-
void
-bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type);
+bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type);
void
-amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type);
+amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type);
#endif
diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c
index 696fac2eb..b5d053663 100644
--- a/tests/amdgpu/amd_deadlock.c
+++ b/tests/amdgpu/amd_deadlock.c
@@ -73,7 +73,7 @@ igt_main
igt_subtest_with_dynamic("amdgpu-gfx-illegal-reg-access") {
if (arr_cap[AMD_IP_GFX]) {
igt_dynamic_f("amdgpu-illegal-reg-access")
- bad_access_helper(device, CMD_STREAM_TRANS_BAD_REG_ADDRESS,
+ bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_REG_ADDRESS,
AMDGPU_HW_IP_GFX);
}
}
@@ -82,7 +82,7 @@ igt_main
igt_subtest_with_dynamic("amdgpu-gfx-illegal-mem-access") {
if (arr_cap[AMD_IP_GFX]) {
igt_dynamic_f("amdgpu-illegal-mem-access")
- bad_access_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS,
+ bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS,
AMDGPU_HW_IP_GFX);
}
}
@@ -99,7 +99,7 @@ igt_main
igt_describe("Test-GPU-reset-by-access-compute-illegal-mem-addr");
igt_subtest("amdgpu-compute-illegal-mem-access") {
igt_skip_on_f(!arr_cap[AMD_IP_COMPUTE], "SKIP, compute ring don't support\n");
- bad_access_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS,
+ bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS,
AMDGPU_HW_IP_COMPUTE);
}
@@ -115,7 +115,7 @@ igt_main
igt_subtest_with_dynamic("amdgpu-deadlock-sdma-corrupted-header-test") {
if (arr_cap[AMD_IP_DMA]) {
igt_dynamic_f("amdgpu-deadlock-sdma-corrupted-header-test")
- amdgpu_hang_sdma_helper(device, DMA_CORRUPTED_HEADER_HANG);
+ amdgpu_hang_sdma_ring_helper(device, DMA_CORRUPTED_HEADER_HANG);
}
}
@@ -123,7 +123,7 @@ igt_main
igt_subtest_with_dynamic("amdgpu-deadlock-sdma-slow-linear-copy") {
if (arr_cap[AMD_IP_DMA]) {
igt_dynamic_f("amdgpu-deadlock-sdma-slow-linear-copy")
- amdgpu_hang_sdma_helper(device, DMA_SLOW_LINEARCOPY_HANG);
+ amdgpu_hang_sdma_ring_helper(device, DMA_SLOW_LINEARCOPY_HANG);
}
}
@@ -131,7 +131,7 @@ igt_main
igt_subtest_with_dynamic("amdgpu-deadlock-sdma-badop-test") {
if (arr_cap[AMD_IP_DMA]) {
igt_dynamic_f("amdgpu-deadlock-sdma-badop-test")
- bad_access_helper(device, CMD_STREAM_EXEC_INVALID_OPCODE,
+ bad_access_ring_helper(device, CMD_STREAM_EXEC_INVALID_OPCODE,
AMDGPU_HW_IP_DMA);
}
}
@@ -140,7 +140,7 @@ igt_main
igt_subtest_with_dynamic("amdgpu-deadlock-sdma-bad-mem-test") {
if (arr_cap[AMD_IP_DMA]) {
igt_dynamic_f("amdgpu-deadlock-sdma-bad-mem-test")
- bad_access_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS,
+ bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_MEM_ADDRESS,
AMDGPU_HW_IP_DMA);
}
}
@@ -149,7 +149,7 @@ igt_main
igt_subtest_with_dynamic("amdgpu-deadlock-sdma-bad-reg-test") {
if (arr_cap[AMD_IP_DMA]) {
igt_dynamic_f("amdgpu-deadlock-sdma-bad-reg-test")
- bad_access_helper(device, CMD_STREAM_TRANS_BAD_REG_ADDRESS,
+ bad_access_ring_helper(device, CMD_STREAM_TRANS_BAD_REG_ADDRESS,
AMDGPU_HW_IP_DMA);
}
}
@@ -158,7 +158,7 @@ igt_main
igt_subtest_with_dynamic("amdgpu-deadlock-sdma-bad-length-test") {
if (arr_cap[AMD_IP_DMA]) {
igt_dynamic_f("amdgpu-deadlock-sdma-bad-length-test")
- bad_access_helper(device, CMD_STREAM_EXEC_INVALID_PACKET_LENGTH,
+ bad_access_ring_helper(device, CMD_STREAM_EXEC_INVALID_PACKET_LENGTH,
AMDGPU_HW_IP_DMA);
}
}
--
2.25.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* ✓ Fi.CI.BAT: success for lib/amdgpu: enhance sdma test
2024-09-27 9:09 [PATCH i-g-t] lib/amdgpu: enhance sdma test Jesse.zhang@amd.com
@ 2024-09-27 14:48 ` Patchwork
2024-09-27 15:08 ` ✓ CI.xeBAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2024-09-27 14:48 UTC (permalink / raw)
To: Jesse.zhang@amd.com; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 11870 bytes --]
== Series Details ==
Series: lib/amdgpu: enhance sdma test
URL : https://patchwork.freedesktop.org/series/139204/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15452 -> IGTPW_11823
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/index.html
Participating hosts (36 -> 36)
------------------------------
Additional (1): bat-adlp-6
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_11823 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-adlp-6: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-adlp-6/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@random-engines:
- bat-adlp-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-adlp-6/igt@gem_lmem_swapping@random-engines.html
* igt@gem_mmap@basic:
- bat-dg2-14: NOTRUN -> [SKIP][3] ([i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-14/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-14: NOTRUN -> [SKIP][4] ([i915#4079]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-14/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-14: NOTRUN -> [SKIP][5] ([i915#4077]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-14/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-adlp-6: NOTRUN -> [SKIP][6] ([i915#3282])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-adlp-6/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-14: NOTRUN -> [SKIP][7] ([i915#6621])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-14/igt@i915_pm_rps@basic-api.html
- bat-adlp-6: NOTRUN -> [SKIP][8] ([i915#6621])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-adlp-6/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- bat-arls-1: [PASS][9] -> [DMESG-WARN][10] ([i915#10341] / [i915#12133])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/bat-arls-1/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-arls-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@hangcheck:
- bat-arls-1: [PASS][11] -> [DMESG-WARN][12] ([i915#11349])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/bat-arls-1/igt@i915_selftest@live@hangcheck.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-arls-1/igt@i915_selftest@live@hangcheck.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][13] ([i915#5190])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][14] ([i915#4212]) +7 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-14/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][15] ([i915#4215] / [i915#5190])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- bat-dg2-13: NOTRUN -> [SKIP][16] ([i915#7828]) +8 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-13/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][17] ([i915#4103] / [i915#4213]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-adlp-6: NOTRUN -> [SKIP][18] ([i915#4103]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-adlp-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-14: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#3840])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-14/igt@kms_dsc@dsc-basic.html
- bat-adlp-6: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#3840])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-adlp-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-14: NOTRUN -> [SKIP][21]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-14/igt@kms_force_connector_basic@force-load-detect.html
- bat-adlp-6: NOTRUN -> [SKIP][22]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-adlp-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-14: NOTRUN -> [SKIP][23] ([i915#5274])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-14: NOTRUN -> [SKIP][24] ([i915#5354])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-14/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-14: NOTRUN -> [SKIP][25] ([i915#1072] / [i915#9732]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-14/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-14: NOTRUN -> [SKIP][26] ([i915#3555])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-14/igt@kms_setmode@basic-clone-single-crtc.html
- bat-adlp-6: NOTRUN -> [SKIP][27] ([i915#3555])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-adlp-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-14: NOTRUN -> [SKIP][28] ([i915#3708])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-14/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-14: NOTRUN -> [SKIP][29] ([i915#3708] / [i915#4077]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-14/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-adlp-6: NOTRUN -> [SKIP][30] ([i915#3291] / [i915#3708]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-adlp-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-dg2-14: NOTRUN -> [SKIP][31] ([i915#3291] / [i915#3708]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-dg2-14/igt@prime_vgem@basic-read.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][32] ([i915#12216]) -> [PASS][33] +1 other test pass
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/bat-mtlp-8/igt@i915_selftest@live.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-mtlp-8/igt@i915_selftest@live.html
- bat-adlm-1: [DMESG-WARN][34] ([i915#12133]) -> [PASS][35]
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/bat-adlm-1/igt@i915_selftest@live.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-adlm-1/igt@i915_selftest@live.html
- bat-mtlp-6: [ABORT][36] ([i915#12216]) -> [PASS][37] +1 other test pass
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/bat-mtlp-6/igt@i915_selftest@live.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-mtlp-6/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-adlm-1: [DMESG-WARN][38] -> [PASS][39]
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/bat-adlm-1/igt@i915_selftest@live@workarounds.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-adlm-1/igt@i915_selftest@live@workarounds.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- bat-arls-5: [DMESG-WARN][40] ([i915#12253]) -> [PASS][41]
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/bat-arls-5/igt@kms_pm_rpm@basic-pci-d3-state.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-arls-5/igt@kms_pm_rpm@basic-pci-d3-state.html
#### Warnings ####
* igt@i915_module_load@reload:
- bat-arls-5: [DMESG-WARN][42] ([i915#11637] / [i915#1982]) -> [DMESG-WARN][43] ([i915#11637])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/bat-arls-5/igt@i915_module_load@reload.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/bat-arls-5/igt@i915_module_load@reload.html
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
[i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
[i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8035 -> IGTPW_11823
CI-20190529: 20190529
CI_DRM_15452: 4d4fdd11d1cc941f2f7c1653fc07519851d9052b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11823: 3ed9e2e57f9833600143bd4e46a5a34d72343f77 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8035: 54cf84790112f2656b38b9068d4b492fbef13d84 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/index.html
[-- Attachment #2: Type: text/html, Size: 14311 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ CI.xeBAT: success for lib/amdgpu: enhance sdma test
2024-09-27 9:09 [PATCH i-g-t] lib/amdgpu: enhance sdma test Jesse.zhang@amd.com
2024-09-27 14:48 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2024-09-27 15:08 ` Patchwork
2024-09-28 9:41 ` ✗ CI.xeFULL: failure " Patchwork
2024-09-28 18:29 ` ✗ Fi.CI.IGT: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2024-09-27 15:08 UTC (permalink / raw)
To: Jesse.zhang@amd.com; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1623 bytes --]
== Series Details ==
Series: lib/amdgpu: enhance sdma test
URL : https://patchwork.freedesktop.org/series/139204/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8035_BAT -> XEIGTPW_11823_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11823_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-bmg-1: [INCOMPLETE][1] -> [PASS][2] +1 other test pass
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
Build changes
-------------
* IGT: IGT_8035 -> IGTPW_11823
* Linux: xe-1983-6bd25f52157328ac4b7b09a3946281957afe3bfd -> xe-1984-4d4fdd11d1cc941f2f7c1653fc07519851d9052b
IGTPW_11823: 3ed9e2e57f9833600143bd4e46a5a34d72343f77 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8035: 54cf84790112f2656b38b9068d4b492fbef13d84 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1983-6bd25f52157328ac4b7b09a3946281957afe3bfd: 6bd25f52157328ac4b7b09a3946281957afe3bfd
xe-1984-4d4fdd11d1cc941f2f7c1653fc07519851d9052b: 4d4fdd11d1cc941f2f7c1653fc07519851d9052b
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/index.html
[-- Attachment #2: Type: text/html, Size: 2206 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ CI.xeFULL: failure for lib/amdgpu: enhance sdma test
2024-09-27 9:09 [PATCH i-g-t] lib/amdgpu: enhance sdma test Jesse.zhang@amd.com
2024-09-27 14:48 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-09-27 15:08 ` ✓ CI.xeBAT: " Patchwork
@ 2024-09-28 9:41 ` Patchwork
2024-09-28 18:29 ` ✗ Fi.CI.IGT: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2024-09-28 9:41 UTC (permalink / raw)
To: Jesse.zhang@amd.com; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 66112 bytes --]
== Series Details ==
Series: lib/amdgpu: enhance sdma test
URL : https://patchwork.freedesktop.org/series/139204/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8035_full -> XEIGTPW_11823_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11823_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11823_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_11823_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@2x-flip-vs-suspend:
- shard-lnl: NOTRUN -> [SKIP][1] +2 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-4/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_properties@connector-properties-atomic:
- shard-lnl: NOTRUN -> [DMESG-WARN][2] +1 other test dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-7/igt@kms_properties@connector-properties-atomic.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][3] +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [FAIL][4] +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@xe_exec_compute_mode@twice-userptr-invalidate-race:
- shard-lnl: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-4/igt@xe_exec_compute_mode@twice-userptr-invalidate-race.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-1/igt@xe_exec_compute_mode@twice-userptr-invalidate-race.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][7] +2 other tests fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-463/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
#### Warnings ####
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][8] ([Intel XE#1201]) -> [SKIP][9] +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-463/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-lnl: [FAIL][10] -> [SKIP][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_async_flips@crc@pipe-d-hdmi-a-3:
- {shard-bmg}: [FAIL][12] ([Intel XE#1288]) -> [DMESG-FAIL][13]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-bmg-1/igt@kms_async_flips@crc@pipe-d-hdmi-a-3.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-bmg-5/igt@kms_async_flips@crc@pipe-d-hdmi-a-3.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
- {shard-bmg}: NOTRUN -> [SKIP][14] +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- {shard-bmg}: [PASS][15] -> [INCOMPLETE][16] +1 other test incomplete
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-bmg-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
Known issues
------------
Here are the changes found in XEIGTPW_11823_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1407])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: [PASS][18] -> [FAIL][19] ([Intel XE#1659]) +1 other test fail
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-435/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1201] / [Intel XE#607])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1124])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#619])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124] / [Intel XE#1201]) +7 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#2191])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#367]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#367])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1399]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-3/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1201] / [Intel XE#1252]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2669]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#1201] / [Intel XE#787]) +41 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +11 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1152] / [Intel XE#1201]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1201] / [Intel XE#373]) +9 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-435/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#373])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][37] ([Intel XE#1188]) +1 other test fail
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-434/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#1201] / [Intel XE#308]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1424])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-8/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1413])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#309])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#323])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#1201] / [Intel XE#307])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#1201] / [Intel XE#455]) +15 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-463/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@b-edp1:
- shard-lnl: [PASS][45] -> [FAIL][46] ([Intel XE#886])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-7/igt@kms_flip@flip-vs-blocking-wf-vblank@b-edp1.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-1/igt@kms_flip@flip-vs-blocking-wf-vblank@b-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1401] / [Intel XE#1745])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-7/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][48] ([Intel XE#1401])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#651]) +21 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#651]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#651]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#653]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#1201] / [Intel XE#653]) +20 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#656]) +9 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1503] / [Intel XE#599])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-7/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#356])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-1:
- shard-lnl: [PASS][57] -> [DMESG-WARN][58] ([Intel XE#324]) +2 other tests dmesg-warn
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-3/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-1.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-4/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-1.html
* igt@kms_plane_lowres@tiling-none@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][59] ([Intel XE#1195]) +1 other test incomplete
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-434/igt@kms_plane_lowres@tiling-none@pipe-d-dp-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2763]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#870])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][62] -> [FAIL][63] ([Intel XE#718])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1201]) +8 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1201] / [Intel XE#2850]) +7 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1406])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-5/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr@psr-basic:
- shard-lnl: NOTRUN -> [FAIL][67] ([Intel XE#1649]) +3 other tests fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-2/igt@kms_psr@psr-basic.html
* igt@kms_psr@psr2-sprite-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#2850]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#327]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1127])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1201] / [Intel XE#1500])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [PASS][72] -> [FAIL][73] ([Intel XE#899]) +1 other test fail
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vrr@flipline:
- shard-lnl: [PASS][74] -> [FAIL][75] ([Intel XE#2443]) +3 other tests fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-7/igt@kms_vrr@flipline.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-3/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#1201] / [Intel XE#756]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@kms_writeback@writeback-fb-id.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-463/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: NOTRUN -> [FAIL][78] ([Intel XE#1600])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-threads-small:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#688]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-7/igt@xe_evict@evict-threads-small.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1392]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#288])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#1201] / [Intel XE#288]) +16 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-464/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_gt_freq@freq_reset_multiple:
- shard-lnl: [PASS][83] -> [DMESG-FAIL][84] ([Intel XE#1620])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-7/igt@xe_gt_freq@freq_reset_multiple.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-7/igt@xe_gt_freq@freq_reset_multiple.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1201] / [Intel XE#255])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#2229]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-5/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_live_ktest@xe_mocs:
- shard-lnl: [PASS][87] -> [SKIP][88] ([Intel XE#1192])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-5/igt@xe_live_ktest@xe_mocs.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-5/igt@xe_live_ktest@xe_mocs.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#1201] / [Intel XE#2541]) +4 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-464/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_oa@mmio-triggered-reports:
- shard-lnl: [PASS][90] -> [FAIL][91] ([Intel XE#2249])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-2/igt@xe_oa@mmio-triggered-reports.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-2/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@mmio-triggered-reports@ccs-0:
- shard-lnl: NOTRUN -> [FAIL][92] ([Intel XE#2249])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-2/igt@xe_oa@mmio-triggered-reports@ccs-0.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2541])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_pm@d3cold-mmap-system:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#366])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-8/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#1201] / [Intel XE#366])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-lnl: [PASS][96] -> [ABORT][97] ([Intel XE#1607] / [Intel XE#1794])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-1/igt@xe_pm@s4-vm-bind-prefetch.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [PASS][98] -> [FAIL][99] ([Intel XE#958])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#944])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-7/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#1201] / [Intel XE#944])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@xe_query@multigpu-query-uc-fw-version-huc.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][102] ([Intel XE#1426]) -> [PASS][103] +1 other test pass
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-436/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-464/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-lnl: [FAIL][104] ([Intel XE#1426]) -> [PASS][105] +3 other tests pass
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_cursor_edge_walk@128x128-left-edge:
- shard-lnl: [DMESG-WARN][106] ([Intel XE#2055]) -> [PASS][107] +1 other test pass
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-5/igt@kms_cursor_edge_walk@128x128-left-edge.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-7/igt@kms_cursor_edge_walk@128x128-left-edge.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- {shard-bmg}: [DMESG-WARN][108] ([Intel XE#877]) -> [PASS][109] +15 other tests pass
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@absolute-wf_vblank:
- shard-lnl: [FAIL][110] ([Intel XE#2631]) -> [PASS][111] +1 other test pass
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-7/igt@kms_flip@absolute-wf_vblank.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-5/igt@kms_flip@absolute-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [FAIL][112] ([Intel XE#886]) -> [PASS][113] +11 other tests pass
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-5/igt@kms_flip@blocking-wf_vblank.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-2/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@dpms-vs-vblank-race@c-dp2:
- {shard-bmg}: [INCOMPLETE][114] -> [PASS][115] +1 other test pass
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-bmg-7/igt@kms_flip@dpms-vs-vblank-race@c-dp2.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-bmg-2/igt@kms_flip@dpms-vs-vblank-race@c-dp2.html
* igt@kms_flip@modeset-vs-vblank-race:
- shard-dg2-set2: [FAIL][116] -> [PASS][117] +1 other test pass
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-436/igt@kms_flip@modeset-vs-vblank-race.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@kms_flip@modeset-vs-vblank-race.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2-set2: [INCOMPLETE][118] ([Intel XE#1195]) -> [PASS][119] +2 other tests pass
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-434/igt@kms_hdr@bpc-switch-suspend.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-433/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_plane@pixel-format@pipe-a-plane-0:
- shard-lnl: [FAIL][120] -> [PASS][121] +3 other tests pass
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-7/igt@kms_plane@pixel-format@pipe-a-plane-0.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-7/igt@kms_plane@pixel-format@pipe-a-plane-0.html
* igt@kms_plane@plane-position-covered:
- shard-lnl: [DMESG-FAIL][122] ([Intel XE#324]) -> [PASS][123] +2 other tests pass
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-4/igt@kms_plane@plane-position-covered.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-7/igt@kms_plane@plane-position-covered.html
* igt@kms_plane@plane-position-covered@pipe-b-plane-4:
- shard-lnl: [DMESG-WARN][124] ([Intel XE#324]) -> [PASS][125] +3 other tests pass
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-4/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-7/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [FAIL][126] ([Intel XE#616]) -> [PASS][127] +1 other test pass
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-435/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_cursor@viewport:
- shard-lnl: [DMESG-WARN][128] -> [PASS][129] +1 other test pass
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-1/igt@kms_plane_cursor@viewport.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-7/igt@kms_plane_cursor@viewport.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][130] ([Intel XE#2159]) -> [PASS][131] +1 other test pass
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flip-basic:
- shard-lnl: [FAIL][132] ([Intel XE#2443]) -> [PASS][133] +1 other test pass
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-1/igt@kms_vrr@flip-basic.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-2/igt@kms_vrr@flip-basic.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-dg2-set2: [FAIL][134] ([Intel XE#1000]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-435/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_live_ktest@xe_bo:
- shard-lnl: [SKIP][136] ([Intel XE#1192]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-4/igt@xe_live_ktest@xe_bo.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-5/igt@xe_live_ktest@xe_bo.html
* igt@xe_oa@oa-exponents:
- shard-lnl: [FAIL][138] ([Intel XE#2723]) -> [PASS][139]
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-1/igt@xe_oa@oa-exponents.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-7/igt@xe_oa@oa-exponents.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-dg2-set2: [INCOMPLETE][140] ([Intel XE#1195] / [Intel XE#1358]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-463/igt@xe_pm@s2idle-multiple-execs.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-435/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-dg2-set2: [INCOMPLETE][142] ([Intel XE#1195] / [Intel XE#1694]) -> [PASS][143]
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-464/igt@xe_pm@s2idle-vm-bind-prefetch.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-434/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [ABORT][144] ([Intel XE#1794]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-lnl-4/igt@xe_pm@s4-vm-bind-userptr.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: [SKIP][146] ([Intel XE#1201] / [Intel XE#801]) -> [SKIP][147] ([Intel XE#801]) +23 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-433/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][148] ([Intel XE#1195]) -> [FAIL][149] ([Intel XE#1426]) +1 other test fail
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-436/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-466/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][150] ([Intel XE#316]) -> [SKIP][151] ([Intel XE#1201] / [Intel XE#316]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][152] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][153] ([Intel XE#316]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-435/igt@kms_big_fb@linear-8bpp-rotate-270.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][154] ([Intel XE#1201] / [Intel XE#610]) -> [SKIP][155] ([Intel XE#610])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2-set2: [SKIP][156] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][157] ([Intel XE#1124]) +3 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][158] ([Intel XE#607]) -> [SKIP][159] ([Intel XE#1201] / [Intel XE#607])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][160] ([Intel XE#1124]) -> [SKIP][161] ([Intel XE#1124] / [Intel XE#1201]) +4 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][162] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][163] ([Intel XE#367])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-464/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
- shard-dg2-set2: [SKIP][164] ([Intel XE#367]) -> [SKIP][165] ([Intel XE#1201] / [Intel XE#367])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-434/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: [SKIP][166] ([Intel XE#2191]) -> [SKIP][167] ([Intel XE#1201] / [Intel XE#2191])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-463/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [SKIP][168] ([Intel XE#787]) -> [SKIP][169] ([Intel XE#1201] / [Intel XE#787]) +48 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-466/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][170] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][171] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +13 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][172] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][173] ([Intel XE#787]) +55 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][174] ([Intel XE#1252]) -> [SKIP][175] ([Intel XE#1201] / [Intel XE#1252]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][176] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][177] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-436/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][178] ([Intel XE#1201] / [Intel XE#314]) -> [SKIP][179] ([Intel XE#314]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-463/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2-set2: [SKIP][180] ([Intel XE#306]) -> [SKIP][181] ([Intel XE#1201] / [Intel XE#306]) +2 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_chamelium_color@ctm-green-to-red.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-435/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][182] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][183] ([Intel XE#306])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-466/igt@kms_chamelium_color@gamma.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-dg2-set2: [SKIP][184] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][185] ([Intel XE#373]) +6 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-464/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: [SKIP][186] ([Intel XE#373]) -> [SKIP][187] ([Intel XE#1201] / [Intel XE#373]) +4 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [INCOMPLETE][188] ([Intel XE#1195] / [Intel XE#2715]) -> [FAIL][189] ([Intel XE#1178])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-433/igt@kms_content_protection@atomic-dpms.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][190] ([Intel XE#1195]) -> [FAIL][191] ([Intel XE#1178])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-433/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-466/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: [SKIP][192] ([Intel XE#1201] / [Intel XE#307]) -> [SKIP][193] ([Intel XE#307])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-type-1.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: [SKIP][194] ([Intel XE#307]) -> [SKIP][195] ([Intel XE#1201] / [Intel XE#307])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_content_protection@dp-mst-type-0.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-466/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2-set2: [SKIP][196] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][197] ([Intel XE#308])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-464/igt@kms_cursor_crc@cursor-random-512x170.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2-set2: [SKIP][198] ([Intel XE#308]) -> [SKIP][199] ([Intel XE#1201] / [Intel XE#308])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x512.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][200] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][201] ([Intel XE#323])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][202] ([i915#3804]) -> [SKIP][203] ([Intel XE#1201] / [i915#3804])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-466/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: [SKIP][204] ([Intel XE#701]) -> [SKIP][205] ([Intel XE#1201] / [Intel XE#701])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_feature_discovery@chamelium.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-434/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][206] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][207] ([Intel XE#455]) +6 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][208] ([Intel XE#651]) -> [SKIP][209] ([Intel XE#1201] / [Intel XE#651]) +15 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][210] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][211] ([Intel XE#651]) +13 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
- shard-dg2-set2: [SKIP][212] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][213] ([Intel XE#653]) +12 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][214] ([Intel XE#658]) -> [SKIP][215] ([Intel XE#1201] / [Intel XE#658])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][216] ([Intel XE#653]) -> [SKIP][217] ([Intel XE#1201] / [Intel XE#653]) +16 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: [SKIP][218] ([Intel XE#1201] / [Intel XE#605]) -> [SKIP][219] ([Intel XE#605])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-433/igt@kms_getfb@getfb-reject-ccs.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][220] ([Intel XE#2850]) -> [SKIP][221] ([Intel XE#1201] / [Intel XE#2850]) +7 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_psr@psr-dpms.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-436/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr-primary-render:
- shard-dg2-set2: [SKIP][222] ([Intel XE#1201] / [Intel XE#2850]) -> [SKIP][223] ([Intel XE#2850]) +7 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-466/igt@kms_psr@psr-primary-render.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_psr@psr-primary-render.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: [SKIP][224] ([Intel XE#327]) -> [SKIP][225] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_rotation_crc@bad-pixel-format.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-463/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][226] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][227] ([Intel XE#1127]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][228] ([Intel XE#1127]) -> [SKIP][229] ([Intel XE#1127] / [Intel XE#1201])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][230] ([Intel XE#330]) -> [SKIP][231] ([Intel XE#1201] / [Intel XE#330])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-464/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: [SKIP][232] ([Intel XE#455]) -> [SKIP][233] ([Intel XE#1201] / [Intel XE#455]) +13 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_vrr@flip-dpms.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-463/igt@kms_vrr@flip-dpms.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][234] ([Intel XE#2849]) -> [SKIP][235] ([Intel XE#1201] / [Intel XE#2849])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][236] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) -> [SKIP][237] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm:
- shard-dg2-set2: [SKIP][238] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][239] ([Intel XE#288]) +11 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-464/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@once-rebind-imm:
- shard-dg2-set2: [SKIP][240] ([Intel XE#288]) -> [SKIP][241] ([Intel XE#1201] / [Intel XE#288]) +11 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@xe_exec_fault_mode@once-rebind-imm.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-466/igt@xe_exec_fault_mode@once-rebind-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: [SKIP][242] -> [SKIP][243] ([Intel XE#1201]) +16 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][244] ([Intel XE#512]) -> [SKIP][245] ([Intel XE#1201] / [Intel XE#512])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@xe_mmap@small-bar.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-435/igt@xe_mmap@small-bar.html
* igt@xe_oa@buffer-fill:
- shard-dg2-set2: [SKIP][246] ([Intel XE#1201] / [Intel XE#2541]) -> [SKIP][247] ([Intel XE#2541]) +2 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-433/igt@xe_oa@buffer-fill.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@xe_oa@buffer-fill.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: [SKIP][248] ([Intel XE#2541]) -> [SKIP][249] ([Intel XE#1201] / [Intel XE#2541]) +4 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@xe_oa@whitelisted-registers-userspace-config.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-466/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][250] ([Intel XE#1201] / [Intel XE#1337]) -> [SKIP][251] ([Intel XE#1337])
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pm@d3cold-basic:
- shard-dg2-set2: [SKIP][252] ([Intel XE#366]) -> [SKIP][253] ([Intel XE#1201] / [Intel XE#366])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@xe_pm@d3cold-basic.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-464/igt@xe_pm@d3cold-basic.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: [SKIP][254] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][255] ([Intel XE#944]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-463/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-432/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: [SKIP][256] ([Intel XE#944]) -> [SKIP][257] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@xe_query@multigpu-query-oa-units.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/shard-dg2-466/igt@xe_query@multigpu-query-oa-units.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[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#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1288
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[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#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[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#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[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#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[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#2055]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
[Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2631]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2631
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2723]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#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#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_8035 -> IGTPW_11823
* Linux: xe-1983-6bd25f52157328ac4b7b09a3946281957afe3bfd -> xe-1984-4d4fdd11d1cc941f2f7c1653fc07519851d9052b
IGTPW_11823: 3ed9e2e57f9833600143bd4e46a5a34d72343f77 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8035: 54cf84790112f2656b38b9068d4b492fbef13d84 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1983-6bd25f52157328ac4b7b09a3946281957afe3bfd: 6bd25f52157328ac4b7b09a3946281957afe3bfd
xe-1984-4d4fdd11d1cc941f2f7c1653fc07519851d9052b: 4d4fdd11d1cc941f2f7c1653fc07519851d9052b
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11823/index.html
[-- Attachment #2: Type: text/html, Size: 83992 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Fi.CI.IGT: failure for lib/amdgpu: enhance sdma test
2024-09-27 9:09 [PATCH i-g-t] lib/amdgpu: enhance sdma test Jesse.zhang@amd.com
` (2 preceding siblings ...)
2024-09-28 9:41 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-09-28 18:29 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2024-09-28 18:29 UTC (permalink / raw)
To: Jesse.zhang@amd.com; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100249 bytes --]
== Series Details ==
Series: lib/amdgpu: enhance sdma test
URL : https://patchwork.freedesktop.org/series/139204/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15452_full -> IGTPW_11823_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11823_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11823_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/index.html
Participating hosts (9 -> 8)
------------------------------
Missing (1): shard-glk
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11823_full:
### IGT changes ###
#### Possible regressions ####
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][1] +23 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-16/igt@device_reset@cold-reset-bound.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][2] +30 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_busy@extended-pageflip-hang-newfb:
- shard-tglu: [PASS][3] -> [SKIP][4] +63 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-2/igt@kms_busy@extended-pageflip-hang-newfb.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_busy@extended-pageflip-hang-newfb.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][5] +22 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-dg1: [PASS][6] -> [INCOMPLETE][7] +1 other test incomplete
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-12/igt@kms_plane@plane-panning-bottom-right-suspend.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-13/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][8] +11 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@perf@blocking:
- shard-mtlp: [PASS][9] -> [FAIL][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-8/igt@perf@blocking.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-1/igt@perf@blocking.html
* igt@perf@blocking@1-vecs0:
- shard-mtlp: NOTRUN -> [FAIL][11]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-1/igt@perf@blocking@1-vecs0.html
* igt@perf@polling:
- shard-rkl: NOTRUN -> [FAIL][12]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-1/igt@perf@polling.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-mtlp: NOTRUN -> [SKIP][13] +11 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu: [SKIP][14] ([i915#5286]) -> [SKIP][15] +5 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-tglu: [SKIP][16] ([i915#12042]) -> [SKIP][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-tglu: [SKIP][18] ([i915#6095]) -> [SKIP][19] +12 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: [SKIP][20] ([i915#6944] / [i915#9424]) -> [SKIP][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-3/igt@kms_content_protection@content-type-change.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@uevent:
- shard-tglu: [SKIP][22] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) -> [SKIP][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-4/igt@kms_content_protection@uevent.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-tglu: [SKIP][24] ([i915#3555]) -> [SKIP][25] +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@kms_cursor_crc@cursor-offscreen-32x32.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: [SKIP][26] ([i915#11453]) -> [SKIP][27] +4 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: [SKIP][28] ([i915#4103]) -> [SKIP][29] +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dsc@dsc-basic:
- shard-tglu: [SKIP][30] ([i915#3555] / [i915#3840]) -> [SKIP][31]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-6/igt@kms_dsc@dsc-basic.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_dsc@dsc-basic.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: [SKIP][32] ([i915#5354]) -> [SKIP][33] +10 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_hdr@static-swap:
- shard-tglu: [SKIP][34] ([i915#3555] / [i915#8228]) -> [SKIP][35] +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@kms_hdr@static-swap.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_hdr@static-swap.html
* igt@kms_vrr@lobf:
- shard-tglu: [SKIP][36] ([i915#11920]) -> [SKIP][37]
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-2/igt@kms_vrr@lobf.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_vrr@lobf.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- {shard-tglu-1}: NOTRUN -> [SKIP][38] +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
New tests
---------
New tests have been introduced between CI_DRM_15452_full and IGTPW_11823_full:
### New IGT tests (5) ###
* igt@kms_lease@lease-again@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_lease@page-flip-implicit-plane@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.28] s
* igt@kms_lease@page-flip-implicit-plane@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.18] s
* igt@kms_lease@page-flip-implicit-plane@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.23] s
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- Statuses : 1 skip(s)
- Exec time: [1.22] s
Known issues
------------
Here are the changes found in IGTPW_11823_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#8414]) +16 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-3/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@most-busy-check-all:
- shard-rkl: [PASS][40] -> [FAIL][41] ([i915#12179])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][42] -> [FAIL][43] ([i915#7742])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: NOTRUN -> [FAIL][44] ([i915#11900] / [i915#7742])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-1/igt@drm_fdinfo@virtual-idle.html
* igt@fbdev@eof:
- shard-tglu: [PASS][45] -> [SKIP][46] ([i915#2582]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@fbdev@eof.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@fbdev@eof.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#7697])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-6/igt@gem_basic@multigpu-create-close.html
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#7697]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-13/igt@gem_basic@multigpu-create-close.html
- shard-tglu: NOTRUN -> [SKIP][49] ([i915#7697])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-3/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#7697])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-5/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#9323])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-16/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#9323])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-2/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#3555] / [i915#9323]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#9323])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-tglu: NOTRUN -> [SKIP][55] ([i915#9323])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][56] ([i915#7297])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-10/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [ABORT][57] ([i915#9846])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#6335])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-3/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_engines@invalid-engines:
- shard-mtlp: NOTRUN -> [FAIL][59] ([i915#12027])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-6/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#8555]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#8555]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@smoketest:
- shard-snb: NOTRUN -> [SKIP][62] ([i915#1099]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-snb7/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#280])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-2/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-dg1: [PASS][64] -> [ABORT][65] ([i915#7975] / [i915#8213])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-13/igt@gem_eio@hibernate.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-14/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-dg1: NOTRUN -> [FAIL][66] ([i915#5784])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-18/igt@gem_eio@kms.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#4525]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][68] ([i915#11965]) +4 other tests fail
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-7/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fair@basic-none-vip:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4473] / [i915#4771])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-5/igt@gem_exec_fair@basic-none-vip.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: NOTRUN -> [FAIL][70] ([i915#2842]) +8 other tests fail
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-7/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#3539])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-15/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3539])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-7/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3711])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#3539] / [i915#4852]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-6/igt@gem_exec_flush@basic-wb-ro-before-default.html
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#3539] / [i915#4852]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-12/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3281]) +14 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-3/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#3281]) +8 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3281]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-1/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#3281]) +9 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-15/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4860]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-y.html
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4860])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#4613]) +5 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-3/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#4613])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-6/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][84] -> [TIMEOUT][85] ([i915#5493]) +1 other test timeout
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_gtt@basic-read-write-distinct:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4077]) +5 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-8/igt@gem_mmap_gtt@basic-read-write-distinct.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4077]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_wc@write-cpu-read-wc:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#4083]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@gem_mmap_wc@write-cpu-read-wc.html
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#4083]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-13/igt@gem_mmap_wc@write-cpu-read-wc.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3282]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-5/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#3282]) +5 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#3282]) +3 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-14/igt@gem_pread@exhaustion.html
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#3282]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-7/igt@gem_pread@exhaustion.html
* igt@gem_pxp@create-regular-buffer:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#4270])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-18/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#4270]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-2/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#4270])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-3/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#4270]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-10/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#5190] / [i915#8428]) +6 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#8428]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-1/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#4079]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-16/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#4079])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-3/igt@gem_set_tiling_vs_pwrite.html
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#4079])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-4/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#4880])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#3281] / [i915#3297])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-2/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#3297]) +4 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#2527]) +3 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-7/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#2527])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-19/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#2856]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-6/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@valid-registers:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#2527] / [i915#2856]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-3/igt@gen9_exec_parse@valid-registers.html
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#2856])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-8/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [PASS][111] -> [ABORT][112] ([i915#10131] / [i915#10887] / [i915#9820])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#8399])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-6/igt@i915_pm_freq_api@freq-reset.html
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#8399])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-3/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][115] ([i915#2681]) +1 other test warn
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rps@waitboost:
- shard-mtlp: NOTRUN -> [FAIL][116] ([i915#8346])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-4/igt@i915_pm_rps@waitboost.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4387])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-5/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#7984])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-5/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#6245])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-7/igt@i915_query@hwconfig_table.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#6645])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-2/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#4212])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-5/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#3826])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#8709]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#8709]) +11 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#9531])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg1: [PASS][126] -> [FAIL][127] ([i915#5956])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-16/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][128] ([i915#5956]) +2 other tests fail
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-16/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][129] ([i915#11808] / [i915#5956]) +1 other test fail
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#5286]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-2/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5286]) +3 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-15/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#5286]) +5 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#3638]) +2 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-18/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#3638]) +4 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5190]) +8 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#5190] / [i915#9197]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#4538]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-16/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#6095]) +137 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6095]) +24 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-8/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#6095]) +85 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#6095]) +58 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#12042])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-14/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#12042])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#10307] / [i915#6095]) +191 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-3/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#12042])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#4087]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#7828]) +8 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-4/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg1: NOTRUN -> [SKIP][149] +35 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-18/igt@kms_chamelium_color@ctm-0-50.html
- shard-mtlp: NOTRUN -> [SKIP][150] +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-4/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#7828]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#7828])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-7/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#7828]) +5 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-6/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#7828]) +7 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_color@ctm-green-to-red:
- shard-dg2: [PASS][155] -> [SKIP][156] ([i915#5354]) +10 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-11/igt@kms_color@ctm-green-to-red.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_color@ctm-green-to-red.html
* igt@kms_content_protection@content-type-change:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#9424])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-3/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@legacy:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#7118] / [i915#9424])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-7/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#7118])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@srm@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [TIMEOUT][160] ([i915#7173])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-10/igt@kms_content_protection@srm@pipe-a-dp-3.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3359])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#11453])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#11453])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-offscreen-64x64:
- shard-dg2: [PASS][164] -> [SKIP][165] ([i915#9197]) +20 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-64x64.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-64x64.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#8814]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#3555]) +4 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#11453]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#4103]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#9809])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy:
- shard-mtlp: [PASS][171] -> [INCOMPLETE][172] ([i915#2295])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#9067])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#9067])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#9067])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-15/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#9067])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#9723])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#3555]) +5 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#3804])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#3469])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#4854])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#1839])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-7/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#658])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-2/igt@kms_feature_discovery@psr1.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#4881])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-16/igt@kms_fence_pin_leak.html
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#4881])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-3/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [PASS][186] -> [FAIL][187] ([i915#2122]) +5 other tests fail
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb7/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-snb5/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#3637] / [i915#3966]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3637]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#8381]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][191] +11 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-4/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#3637]) +2 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-mtlp: [PASS][193] -> [FAIL][194] ([i915#2122]) +1 other test fail
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1:
- shard-rkl: [PASS][195] -> [FAIL][196] ([i915#2122]) +2 other tests fail
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-modeset-vs-hang:
- shard-tglu: [PASS][197] -> [SKIP][198] ([i915#3637]) +5 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-3/igt@kms_flip@flip-vs-modeset-vs-hang.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_flip@flip-vs-modeset-vs-hang.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg1: [PASS][199] -> [INCOMPLETE][200] ([i915#4839] / [i915#6113])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-19/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-snb: [PASS][201] -> [INCOMPLETE][202] ([i915#4839]) +1 other test incomplete
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a4:
- shard-dg1: NOTRUN -> [INCOMPLETE][203] ([i915#6113])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-19/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a4.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a4:
- shard-dg1: [PASS][204] -> [DMESG-WARN][205] ([i915#4423]) +3 other tests dmesg-warn
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-17/igt@kms_flip@flip-vs-suspend@d-hdmi-a4.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-18/igt@kms_flip@flip-vs-suspend@d-hdmi-a4.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4:
- shard-dg1: [PASS][206] -> [FAIL][207] ([i915#2122]) +5 other tests fail
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-18/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-16/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#2587] / [i915#2672])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
- shard-dg2: [PASS][209] -> [SKIP][210] ([i915#3555])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#2672] / [i915#3555]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#2672]) +4 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#2587] / [i915#2672] / [i915#3555])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#2672] / [i915#3555])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#2672]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555] / [i915#5190])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#5190])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#5274])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#5274])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-10/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
- shard-tglu: [PASS][222] -> [SKIP][223] ([i915#1849]) +15 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#5354]) +34 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#1825]) +48 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-snb: [PASS][226] -> [SKIP][227] +6 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#1825]) +8 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#3023]) +23 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#10433] / [i915#3458]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][231] +27 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#3458]) +12 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#3458]) +8 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][234] +38 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#1849]) +20 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-rkl: [PASS][236] -> [SKIP][237] ([i915#433])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-4/igt@kms_hdmi_inject@inject-audio.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-5/igt@kms_hdmi_inject@inject-audio.html
- shard-tglu: [PASS][238] -> [SKIP][239] ([i915#433])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-4/igt@kms_hdmi_inject@inject-audio.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-4/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch:
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228]) +2 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-5/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@invalid-hdr:
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8228])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-14/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8228]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-3/igt@kms_hdr@static-toggle.html
* igt@kms_invalid_mode@zero-clock:
- shard-tglu: [PASS][243] -> [SKIP][244] ([i915#3555]) +3 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@kms_invalid_mode@zero-clock.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_invalid_mode@zero-clock.html
* igt@kms_panel_fitting@legacy:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#6301])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-13/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@pixel-format:
- shard-tglu: [PASS][246] -> [SKIP][247] ([i915#8825])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-9/igt@kms_plane@pixel-format.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_plane@pixel-format.html
* igt@kms_plane@plane-panning-top-left:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#8825])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_plane@plane-panning-top-left.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-tglu: [PASS][249] -> [SKIP][250] ([i915#7294]) +2 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-dg2: [PASS][251] -> [SKIP][252] ([i915#7294])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-8/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][253] ([i915#8292])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@invalid-num-scalers:
- shard-tglu: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#6953] / [i915#8152])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_plane_scaling@invalid-num-scalers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#12247] / [i915#9423]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#12247] / [i915#8152] / [i915#9423]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#12247]) +8 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
- shard-tglu: [PASS][258] -> [SKIP][259] ([i915#12247] / [i915#8152]) +3 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b:
- shard-tglu: [PASS][260] -> [SKIP][261] ([i915#12247]) +14 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d:
- shard-tglu: [PASS][262] -> [SKIP][263] ([i915#8152]) +3 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
- shard-dg2: [PASS][264] -> [SKIP][265] ([i915#8152] / [i915#9423])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d:
- shard-dg2: [PASS][266] -> [SKIP][267] ([i915#8152])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
- shard-snb: NOTRUN -> [SKIP][268] +71 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-snb4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#12247] / [i915#8152]) +2 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#8152]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#12247]) +18 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#12247]) +20 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#12247] / [i915#6953])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#12247]) +22 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-dg2: [PASS][275] -> [SKIP][276] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- shard-dg2: [PASS][277] -> [SKIP][278] ([i915#12247]) +8 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d:
- shard-dg2: [PASS][279] -> [SKIP][280] ([i915#12247] / [i915#8152]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-tglu: [PASS][281] -> [SKIP][282] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- shard-tglu: [PASS][283] -> [SKIP][284] ([i915#3555] / [i915#8152])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-3/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#12247] / [i915#6953] / [i915#9423])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#12247] / [i915#3555])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#12247] / [i915#3555])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#12247] / [i915#3555] / [i915#8152] / [i915#9423])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#12247] / [i915#3555])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#12247] / [i915#6953])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#12247] / [i915#6953])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#12247] / [i915#6953])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#12247]) +24 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#5354]) +2 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-7/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#5354])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-16/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-tglu: [PASS][296] -> [SKIP][297] ([i915#9293])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-5/igt@kms_pm_dc@dc5-dpms-negative.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#10139])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-8/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#3361])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-12/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: NOTRUN -> [FAIL][300] ([i915#9295])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#9685])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#3361])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@cursor:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#1849])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#9519]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#4077]) +9 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-19/igt@kms_pm_rpm@fences.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#9519])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][307] -> [SKIP][308] ([i915#9519]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2: [PASS][309] -> [SKIP][310] ([i915#3547])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-5/igt@kms_pm_rpm@system-suspend-modeset.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][311] ([i915#6524])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-5/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-tglu: [PASS][312] -> [SKIP][313] ([i915#6524])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-6/igt@kms_prime@basic-crc-vgem.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@d3hot:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#6524] / [i915#6805])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-6/igt@kms_prime@d3hot.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#9683])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][316] ([i915#9732]) +15 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-6/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-basic:
- shard-dg1: NOTRUN -> [SKIP][317] ([i915#1072] / [i915#9732]) +13 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-15/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#9688]) +7 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-6/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#1072] / [i915#9732]) +17 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-7/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#1072] / [i915#9732]) +22 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#9685])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#4884])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-16/igt@kms_rotation_crc@exhaust-fences.html
- shard-mtlp: NOTRUN -> [SKIP][323] ([i915#4235])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-2/igt@kms_rotation_crc@exhaust-fences.html
- shard-dg2: NOTRUN -> [SKIP][324] ([i915#4235])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-3/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_setmode@basic:
- shard-snb: NOTRUN -> [FAIL][325] ([i915#5465]) +2 other tests fail
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-snb6/igt@kms_setmode@basic.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg1: NOTRUN -> [SKIP][326] ([i915#3555]) +4 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-12/igt@kms_setmode@clone-exclusive-crtc.html
- shard-tglu: NOTRUN -> [SKIP][327] ([i915#3555]) +2 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-7/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#3555] / [i915#8809])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [PASS][329] -> [FAIL][330] ([IGT#2])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_sysfs_edid_timing.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-4/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][331] ([i915#8623])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@universal-plane-functional:
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#9197]) +10 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_universal_plane@universal-plane-functional.html
* igt@kms_vrr@flip-basic-fastset:
- shard-mtlp: NOTRUN -> [SKIP][333] ([i915#8808] / [i915#9906])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-4/igt@kms_vrr@flip-basic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#9906])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-18/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][335] ([i915#2437]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-2/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-tglu: NOTRUN -> [SKIP][336] ([i915#2437]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-2/igt@kms_writeback@writeback-fb-id.html
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#2437])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-5/igt@kms_writeback@writeback-fb-id.html
- shard-dg1: NOTRUN -> [SKIP][338] ([i915#2437])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-15/igt@kms_writeback@writeback-fb-id.html
* igt@perf@polling@0-rcs0:
- shard-rkl: NOTRUN -> [FAIL][339] ([i915#10538])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-1/igt@perf@polling@0-rcs0.html
* igt@prime_vgem@basic-fence-flip:
- shard-tglu: [PASS][340] -> [SKIP][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-9/igt@prime_vgem@basic-fence-flip.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-8/igt@prime_vgem@basic-fence-flip.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][342] ([i915#9781])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-1/igt@syncobj_wait@invalid-wait-zero-handles.html
#### Possible fixes ####
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: [FAIL][343] ([i915#7742]) -> [PASS][344] +1 other test pass
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-1/igt@drm_fdinfo@idle@rcs0.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html
* igt@fbdev@unaligned-write:
- shard-dg2: [SKIP][345] ([i915#2582]) -> [PASS][346]
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@fbdev@unaligned-write.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-8/igt@fbdev@unaligned-write.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][347] ([i915#7297]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_eio@hibernate:
- shard-dg2: [ABORT][349] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-5/igt@gem_eio@hibernate.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-11/igt@gem_eio@hibernate.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][351] ([i915#5784]) -> [PASS][352] +1 other test pass
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-17/igt@gem_eio@unwedge-stress.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-16/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][353] ([i915#11713]) -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-2/igt@gem_exec_big@single.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-6/igt@gem_exec_big@single.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-rkl: [FAIL][355] ([i915#2842]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-6/igt@gem_exec_fair@basic-pace@bcs0.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-6/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_suspend@basic-s3@lmem0:
- shard-dg1: [INCOMPLETE][357] -> [PASS][358] +1 other test pass
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-16/igt@gem_exec_suspend@basic-s3@lmem0.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg1-13/igt@gem_exec_suspend@basic-s3@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [ABORT][359] ([i915#9820]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_selftest@live:
- shard-snb: [ABORT][361] -> [PASS][362]
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb2/igt@i915_selftest@live.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-snb6/igt@i915_selftest@live.html
* igt@i915_selftest@live@sanitycheck:
- shard-snb: [ABORT][363] ([i915#11703]) -> [PASS][364]
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb2/igt@i915_selftest@live@sanitycheck.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-snb6/igt@i915_selftest@live@sanitycheck.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-snb: [FAIL][365] ([i915#5956]) -> [PASS][366]
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb1/igt@kms_atomic_transition@plane-all-modeset-transition.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing:
- shard-tglu: [SKIP][367] -> [PASS][368] +16 other tests pass
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-2/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg2: [FAIL][369] ([i915#5956]) -> [PASS][370]
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-10/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-7/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][371] ([i915#5138]) -> [PASS][372] +1 other test pass
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-snb: [SKIP][373] -> [PASS][374] +6 other tests pass
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-snb5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_feature_discovery@display-1x:
- shard-dg2: [SKIP][375] -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_feature_discovery@display-1x.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-10/igt@kms_feature_discovery@display-1x.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][377] ([i915#2122]) -> [PASS][378] +7 other tests pass
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@bo-too-big:
- shard-tglu: [SKIP][379] ([i915#3637]) -> [PASS][380] +1 other test pass
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_flip@bo-too-big.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-2/igt@kms_flip@bo-too-big.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-dg2: [FAIL][381] ([i915#2122]) -> [PASS][382]
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][383] ([i915#5354]) -> [PASS][384] +11 other tests pass
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-tglu: [SKIP][385] ([i915#1849]) -> [PASS][386] +6 other tests pass
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: [SKIP][387] ([i915#3555] / [i915#8228]) -> [PASS][388]
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-3/igt@kms_hdr@static-toggle-suspend.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@clock-too-high:
- shard-dg2: [SKIP][389] ([i915#3555]) -> [PASS][390] +5 other tests pass
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_invalid_mode@clock-too-high.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-5/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_plane@plane-position-hole:
- shard-tglu: [SKIP][391] ([i915#8825]) -> [PASS][392]
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_plane@plane-position-hole.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-3/igt@kms_plane@plane-position-hole.html
* igt@kms_plane@plane-position-hole-dpms:
- shard-dg2: [SKIP][393] ([i915#8825]) -> [PASS][394]
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane@plane-position-hole-dpms.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-7/igt@kms_plane@plane-position-hole-dpms.html
* igt@kms_plane_alpha_blend@constant-alpha-min:
- shard-tglu: [SKIP][395] ([i915#7294]) -> [PASS][396]
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_plane_alpha_blend@constant-alpha-min.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-4/igt@kms_plane_alpha_blend@constant-alpha-min.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
- shard-dg2: [SKIP][397] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-10/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
- shard-dg2: [SKIP][399] ([i915#12247] / [i915#8152]) -> [PASS][400] +3 other tests pass
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-10/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-dg2: [SKIP][401] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][402] +1 other test pass
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling:
- shard-dg2: [SKIP][403] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
- shard-tglu: [SKIP][405] ([i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][406]
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c:
- shard-tglu: [SKIP][407] ([i915#12247]) -> [PASS][408] +2 other tests pass
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d:
- shard-tglu: [SKIP][409] ([i915#12247] / [i915#8152]) -> [PASS][410]
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c:
- shard-dg2: [SKIP][411] ([i915#12247]) -> [PASS][412] +11 other tests pass
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-dg2: [SKIP][413] ([i915#9293]) -> [PASS][414]
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_pm_dc@dc5-dpms-negative.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-7/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][415] ([i915#9519]) -> [PASS][416]
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][417] ([i915#9519]) -> [PASS][418]
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_properties@crtc-properties-legacy:
- shard-dg2: [SKIP][419] ([i915#11521]) -> [PASS][420]
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_properties@crtc-properties-legacy.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-5/igt@kms_properties@crtc-properties-legacy.html
* igt@kms_vblank@query-forked-hang:
- shard-dg2: [SKIP][421] ([i915#9197]) -> [PASS][422] +40 other tests pass
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_vblank@query-forked-hang.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-6/igt@kms_vblank@query-forked-hang.html
* igt@perf_pmu@busy-idle-no-semaphores:
- shard-mtlp: [FAIL][423] -> [PASS][424] +3 other tests pass
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-8/igt@perf_pmu@busy-idle-no-semaphores.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-mtlp-8/igt@perf_pmu@busy-idle-no-semaphores.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][425] ([i915#4349]) -> [PASS][426] +1 other test pass
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [ABORT][427] ([i915#9820]) -> [ABORT][428] ([i915#9697])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_selftest@mock:
- shard-dg2: [DMESG-WARN][429] ([i915#1982] / [i915#9311]) -> [DMESG-WARN][430] ([i915#9311])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-8/igt@i915_selftest@mock.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-7/igt@i915_selftest@mock.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu: [SKIP][431] -> [SKIP][432] ([i915#9531])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-dg2: [SKIP][433] -> [SKIP][434] ([i915#9197]) +4 other tests skip
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-7/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: [SKIP][435] ([i915#9197]) -> [SKIP][436] +2 other tests skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
- shard-dg2: [SKIP][437] ([i915#4538] / [i915#5190]) -> [SKIP][438] ([i915#5190] / [i915#9197]) +5 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-8/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: [SKIP][439] ([i915#5190] / [i915#9197]) -> [SKIP][440] ([i915#4538] / [i915#5190]) +3 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: [SKIP][441] ([i915#5190] / [i915#9197]) -> [SKIP][442] ([i915#5190])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-dg2: [SKIP][443] ([i915#9197]) -> [SKIP][444] ([i915#10307] / [i915#6095]) +7 other tests skip
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs:
- shard-dg2: [SKIP][445] ([i915#10307] / [i915#6095]) -> [SKIP][446] ([i915#9197]) +3 other tests skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: [SKIP][447] -> [SKIP][448] ([i915#6095]) +5 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/shard-tglu-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [SKIP][449] ([i915#9197]) -> [SKIP][450] ([i915#7118] / [i915#9424])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html
[450]: https://
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11823/index.html
[-- Attachment #2: Type: text/html, Size: 109123 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-09-28 18:29 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-27 9:09 [PATCH i-g-t] lib/amdgpu: enhance sdma test Jesse.zhang@amd.com
2024-09-27 14:48 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-09-27 15:08 ` ✓ CI.xeBAT: " Patchwork
2024-09-28 9:41 ` ✗ CI.xeFULL: failure " Patchwork
2024-09-28 18:29 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox