* [PATCH i-g-t 1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper
@ 2024-10-10 4:58 Jesse.zhang@amd.com
2024-10-10 4:58 ` [PATCH i-g-t 2/2] tests/amdgpu: enhance sdma test for deadlock Jesse.zhang@amd.com
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Jesse.zhang@amd.com @ 2024-10-10 4:58 UTC (permalink / raw)
To: igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Kamil Konieczny,
Jesse.zhang@amd.com, Jesse Zhang
Since sdma may have multiple rings on different chip,
deadlock testing should cover all sdma ring tests.
Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
---
lib/amdgpu/amd_deadlock_helpers.c | 43 +++++++++++++++++++++++++++----
lib/amdgpu/amd_deadlock_helpers.h | 5 ++--
2 files changed, 40 insertions(+), 8 deletions(-)
diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c
index c71272e58..39641ce23 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,19 @@ 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++)
+ 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
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH i-g-t 2/2] tests/amdgpu: enhance sdma test for deadlock
2024-10-10 4:58 [PATCH i-g-t 1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper Jesse.zhang@amd.com
@ 2024-10-10 4:58 ` Jesse.zhang@amd.com
2024-10-10 19:52 ` vitaly prosyak
2024-10-10 5:49 ` ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 7+ messages in thread
From: Jesse.zhang@amd.com @ 2024-10-10 4:58 UTC (permalink / raw)
To: igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Kamil Konieczny,
Jesse.zhang@amd.com, Jesse Zhang
Test all sdma rings and ensure
all rings can be recovered by sdma queue reset.
Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
---
tests/amdgpu/amd_deadlock.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
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] 7+ messages in thread
* ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper
2024-10-10 4:58 [PATCH i-g-t 1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper Jesse.zhang@amd.com
2024-10-10 4:58 ` [PATCH i-g-t 2/2] tests/amdgpu: enhance sdma test for deadlock Jesse.zhang@amd.com
@ 2024-10-10 5:49 ` Patchwork
2024-10-10 5:59 ` ✓ Fi.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-10-10 5:49 UTC (permalink / raw)
To: Jesse.zhang@amd.com; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 818 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper
URL : https://patchwork.freedesktop.org/series/139829/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8063_BAT -> XEIGTPW_11894_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8063 -> IGTPW_11894
IGTPW_11894: 11894
IGT_8063: 8063
xe-2042-e1aba2bf4f79f2f8ae7ce538124d445fc91df852: e1aba2bf4f79f2f8ae7ce538124d445fc91df852
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/index.html
[-- Attachment #2: Type: text/html, Size: 1363 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper
2024-10-10 4:58 [PATCH i-g-t 1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper Jesse.zhang@amd.com
2024-10-10 4:58 ` [PATCH i-g-t 2/2] tests/amdgpu: enhance sdma test for deadlock Jesse.zhang@amd.com
2024-10-10 5:49 ` ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper Patchwork
@ 2024-10-10 5:59 ` Patchwork
2024-10-10 19:06 ` ✗ CI.xeFULL: failure " Patchwork
2024-10-11 11:45 ` ✓ Fi.CI.IGT: success " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-10-10 5:59 UTC (permalink / raw)
To: Jesse.zhang@amd.com; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5007 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper
URL : https://patchwork.freedesktop.org/series/139829/
State : success
== Summary ==
CI Bug Log - changes from IGT_8063 -> IGTPW_11894
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/index.html
Participating hosts (43 -> 41)
------------------------------
Missing (2): bat-rpls-4 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_11894 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@i915_module_load@reload:
- fi-kbl-7567u: [DMESG-WARN][1] ([i915#11621] / [i915#180] / [i915#1982]) -> [PASS][2] +1 other test pass
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/fi-kbl-7567u/igt@i915_module_load@reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/fi-kbl-7567u/igt@i915_module_load@reload.html
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][3] ([i915#12216]) -> [PASS][4] +1 other test pass
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/bat-mtlp-8/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/bat-mtlp-8/igt@i915_selftest@live.html
- {bat-arlh-3}: [ABORT][5] ([i915#12133]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/bat-arlh-3/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/bat-arlh-3/igt@i915_selftest@live.html
- bat-twl-2: [INCOMPLETE][7] ([i915#12133]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/bat-twl-2/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/bat-twl-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@hangcheck:
- bat-twl-2: [INCOMPLETE][9] ([i915#12382]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/bat-twl-2/igt@i915_selftest@live@hangcheck.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/bat-twl-2/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [DMESG-WARN][11] ([i915#11621]) -> [PASS][12] +132 other tests pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [DMESG-WARN][13] ([i915#11621]) -> [PASS][14] +81 other tests pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@i915_selftest@live@workarounds:
- {bat-arlh-3}: [ABORT][15] ([i915#12061]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/bat-arlh-3/igt@i915_selftest@live@workarounds.html
* igt@kms_busy@basic@flip:
- fi-kbl-7567u: [DMESG-WARN][17] ([i915#180]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/fi-kbl-7567u/igt@kms_busy@basic@flip.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/fi-kbl-7567u/igt@kms_busy@basic@flip.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [DMESG-WARN][19] ([i915#11621] / [i915#180]) -> [PASS][20] +50 other tests pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
[i915#12382]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12382
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8063 -> IGTPW_11894
CI-20190529: 20190529
CI_DRM_15510: e1aba2bf4f79f2f8ae7ce538124d445fc91df852 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11894: 11894
IGT_8063: 8063
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/index.html
[-- Attachment #2: Type: text/html, Size: 6249 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ CI.xeFULL: failure for series starting with [i-g-t,1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper
2024-10-10 4:58 [PATCH i-g-t 1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper Jesse.zhang@amd.com
` (2 preceding siblings ...)
2024-10-10 5:59 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-10-10 19:06 ` Patchwork
2024-10-11 11:45 ` ✓ Fi.CI.IGT: success " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-10-10 19:06 UTC (permalink / raw)
To: Jesse.zhang@amd.com; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 57028 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper
URL : https://patchwork.freedesktop.org/series/139829/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8063_full -> XEIGTPW_11894_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11894_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11894_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_11894_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [PASS][1] -> [SKIP][2] +2 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][3] +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr:
- shard-lnl: [PASS][4] -> [DMESG-WARN][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-4/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-8/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html
* igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate-race:
- shard-lnl: [PASS][6] -> [FAIL][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-7/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate-race.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-3/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate-race.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-lnl: [PASS][8] -> [INCOMPLETE][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-3/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-dg2-set2: [PASS][10] -> [FAIL][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-466/igt@xe_pm@s4-vm-bind-userptr.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-434/igt@xe_pm@s4-vm-bind-userptr.html
#### Warnings ####
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][12] ([Intel XE#1124]) -> [SKIP][13]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][14] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][15] +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][16] ([Intel XE#651]) -> [SKIP][17]
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2-set2: [SKIP][18] ([Intel XE#653]) -> [SKIP][19] +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-dg2-set2: [SKIP][20] ([Intel XE#1489]) -> [SKIP][21]
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@xe_pm@d3hot-multiple-execs:
- shard-lnl: [DMESG-WARN][22] ([Intel XE#1620]) -> [DMESG-WARN][23]
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-4/igt@xe_pm@d3hot-multiple-execs.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-6/igt@xe_pm@d3hot-multiple-execs.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- {shard-bmg}: [SKIP][24] ([Intel XE#2385]) -> [SKIP][25]
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-bmg-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-bmg-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- {shard-bmg}: [SKIP][26] ([Intel XE#2252]) -> [SKIP][27] +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-bmg-1/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-bmg-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_content_protection@lic-type-1:
- {shard-bmg}: [SKIP][28] ([Intel XE#2341]) -> [SKIP][29]
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-bmg-7/igt@kms_content_protection@lic-type-1.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-bmg-5/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-random-64x21:
- {shard-bmg}: [SKIP][30] ([Intel XE#2320]) -> [SKIP][31] +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-bmg-2/igt@kms_cursor_crc@cursor-random-64x21.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-bmg-5/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_flip@basic-plain-flip@a-dp2:
- {shard-bmg}: [PASS][32] -> [INCOMPLETE][33] +3 other tests incomplete
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-bmg-7/igt@kms_flip@basic-plain-flip@a-dp2.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-bmg-1/igt@kms_flip@basic-plain-flip@a-dp2.html
* igt@kms_invalid_mode@bad-vsync-end:
- {shard-bmg}: NOTRUN -> [SKIP][34]
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-bmg-5/igt@kms_invalid_mode@bad-vsync-end.html
* igt@kms_pm_rpm@i2c:
- {shard-bmg}: [PASS][35] -> [FAIL][36] +1 other test fail
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-bmg-3/igt@kms_pm_rpm@i2c.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-bmg-1/igt@kms_pm_rpm@i2c.html
* igt@kms_setmode@clone-exclusive-crtc:
- {shard-bmg}: [PASS][37] -> [SKIP][38] +7 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html
Known issues
------------
Here are the changes found in XEIGTPW_11894_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getversion@basic:
- shard-dg2-set2: [PASS][39] -> [FAIL][40] ([Intel XE#2452])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-435/igt@core_getversion@basic.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@core_getversion@basic.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-lnl: [PASS][41] -> [FAIL][42] ([Intel XE#1426]) +1 other test fail
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-4/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-lnl: [PASS][43] -> [FAIL][44] ([Intel XE#1659])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-180:
- shard-dg2-set2: [PASS][45] -> [SKIP][46] ([Intel XE#2890])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-464/igt@kms_big_fb@linear-16bpp-rotate-180.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#316]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-432/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#1124]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1124]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#367]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#2887]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#787]) +62 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-433/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#373]) +9 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-432/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#373])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-7/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_content_protection@atomic:
- shard-dg2-set2: NOTRUN -> [FAIL][56] ([Intel XE#1178]) +1 other test fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-463/igt@kms_content_protection@atomic.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#308])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_edge_walk@128x128-top-edge:
- shard-lnl: [PASS][58] -> [FAIL][59] ([Intel XE#2577]) +1 other test fail
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-5/igt@kms_cursor_edge_walk@128x128-top-edge.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-1/igt@kms_cursor_edge_walk@128x128-top-edge.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#309]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-lnl: [PASS][61] -> [FAIL][62] ([Intel XE#1475])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-5/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#323])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@torture-move@pipe-b:
- shard-dg2-set2: [PASS][64] -> [DMESG-WARN][65] ([Intel XE#1620]) +1 other test dmesg-warn
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-464/igt@kms_cursor_legacy@torture-move@pipe-b.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-434/igt@kms_cursor_legacy@torture-move@pipe-b.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#776])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@dp-mst:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1137])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-4/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#1135])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1421])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-8/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ac-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][70] -> [INCOMPLETE][71] ([Intel XE#1195]) +1 other test incomplete
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-434/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ac-hdmi-a6-dp4.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-434/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ac-hdmi-a6-dp4.html
* igt@kms_flip@busy-flip:
- shard-dg2-set2: [PASS][72] -> [SKIP][73] ([Intel XE#2423] / [i915#2575]) +7 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-436/igt@kms_flip@busy-flip.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_flip@busy-flip.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6:
- shard-dg2-set2: [PASS][74] -> [FAIL][75] ([Intel XE#301])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1:
- shard-lnl: [PASS][76] -> [FAIL][77] ([Intel XE#886])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-2/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-4/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1401] / [Intel XE#1745])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1401])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#455]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#656]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#651]) +21 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [FAIL][83] ([Intel XE#1332])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [PASS][84] -> [SKIP][85] ([Intel XE#2351])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#651])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#653]) +13 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#2890])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_invalid_mode@bad-vsync-end:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#2423] / [i915#2575])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_invalid_mode@bad-vsync-end.html
* igt@kms_plane@plane-position-hole@pipe-a-plane-4:
- shard-lnl: [PASS][90] -> [DMESG-FAIL][91] ([Intel XE#324]) +2 other tests dmesg-fail
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-8/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html
* igt@kms_plane@plane-position-hole@pipe-b-plane-1:
- shard-lnl: [PASS][92] -> [DMESG-WARN][93] ([Intel XE#324]) +1 other test dmesg-warn
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-8/igt@kms_plane@plane-position-hole@pipe-b-plane-1.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-b-plane-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#599])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-2/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2763]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#1129])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2-set2: [PASS][98] -> [SKIP][99] ([Intel XE#2446])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-435/igt@kms_pm_rpm@basic-pci-d3-state.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@i2c:
- shard-dg2-set2: [PASS][100] -> [FAIL][101] ([Intel XE#2897])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-433/igt@kms_pm_rpm@i2c.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-435/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@legacy-planes@plane-68:
- shard-lnl: [PASS][102] -> [DMESG-WARN][103] ([Intel XE#1620]) +1 other test dmesg-warn
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-4/igt@kms_pm_rpm@legacy-planes@plane-68.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-1/igt@kms_pm_rpm@legacy-planes@plane-68.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#1489]) +4 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-434/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-433/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#327]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][107] ([Intel XE#899]) +2 other tests fail
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][108] -> [FAIL][109] ([Intel XE#2159]) +1 other test fail
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flip-basic:
- shard-lnl: [PASS][110] -> [FAIL][111] ([Intel XE#2443]) +1 other test fail
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-7/igt@kms_vrr@flip-basic.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-3/igt@kms_vrr@flip-basic.html
* igt@kms_writeback@writeback-check-output:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#756])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-8/igt@kms_writeback@writeback-check-output.html
* igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01:
- shard-dg2-set2: [PASS][113] -> [ABORT][114] ([Intel XE#2625]) +1 other test abort
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-466/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-432/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-dg2-set2: NOTRUN -> [FAIL][115] ([Intel XE#1050])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-434/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_eudebug@basic-read-event:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#2905])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-1/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug@basic-vm-bind-extended-discovery:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2905]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-extended-discovery.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [PASS][118] -> [TIMEOUT][119] ([Intel XE#1473] / [Intel XE#402])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-432/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-432/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#688]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-3/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
* igt@xe_exec_basic@no-exec-basic:
- shard-dg2-set2: [PASS][121] -> [SKIP][122] ([Intel XE#1130]) +16 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-434/igt@xe_exec_basic@no-exec-basic.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@xe_exec_basic@no-exec-basic.html
* igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate:
- shard-lnl: [PASS][123] -> [FAIL][124] ([Intel XE#2754])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-5/igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-2/igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#288]) +6 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html
* igt@xe_exec_fault_mode@once-basic-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#1130]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@xe_exec_fault_mode@once-basic-imm.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][127] ([Intel XE#2961]) +1 other test timeout
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-433/igt@xe_live_ktest@xe_bo.html
- shard-lnl: [PASS][128] -> [INCOMPLETE][129] ([Intel XE#2819])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-3/igt@xe_live_ktest@xe_bo.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-1/igt@xe_live_ktest@xe_bo.html
* igt@xe_oa@mmio-triggered-reports:
- shard-lnl: [PASS][130] -> [FAIL][131] ([Intel XE#2249])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-4/igt@xe_oa@mmio-triggered-reports.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-2/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@mmio-triggered-reports@rcs-0:
- shard-lnl: NOTRUN -> [FAIL][132] ([Intel XE#2249])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-2/igt@xe_oa@mmio-triggered-reports@rcs-0.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-lnl: [PASS][133] -> [FAIL][134] ([Intel XE#2514]) +1 other test fail
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-5/igt@xe_oa@oa-regs-whitelisted.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-8/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_oa@privileged-forked-access-vaddr:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2541]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-464/igt@xe_oa@privileged-forked-access-vaddr.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-dg2-set2: [PASS][136] -> [ABORT][137] ([Intel XE#1358])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-436/igt@xe_pm@s2idle-multiple-execs.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-432/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [PASS][138] -> [ABORT][139] ([Intel XE#1794])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-1/igt@xe_pm@s4-vm-bind-unbind-all.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [PASS][140] -> [FAIL][141] ([Intel XE#958])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-4/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#944]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-435/igt@xe_query@multigpu-query-mem-usage.html
#### Possible fixes ####
* igt@kms_atomic@crtc-invalid-params-fence:
- {shard-bmg}: [SKIP][143] -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-bmg-8/igt@kms_atomic@crtc-invalid-params-fence.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-bmg-8/igt@kms_atomic@crtc-invalid-params-fence.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- {shard-bmg}: [FAIL][145] ([Intel XE#1659]) -> [PASS][146] +1 other test pass
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-bmg-4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][147] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions:
- {shard-bmg}: [INCOMPLETE][149] -> [PASS][150] +1 other test pass
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][151] ([Intel XE#301]) -> [PASS][152] +5 other tests pass
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-432/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
- {shard-bmg}: [FAIL][153] ([Intel XE#301]) -> [PASS][154]
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@blocking-wf_vblank:
- shard-dg2-set2: [INCOMPLETE][155] ([Intel XE#1195] / [Intel XE#2049]) -> [PASS][156]
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-433/igt@kms_flip@blocking-wf_vblank.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-432/igt@kms_flip@blocking-wf_vblank.html
- shard-lnl: [FAIL][157] ([Intel XE#886]) -> [PASS][158] +8 other tests pass
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-1/igt@kms_flip@blocking-wf_vblank.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-8/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@a-dp4:
- shard-dg2-set2: [INCOMPLETE][159] ([Intel XE#1195]) -> [PASS][160] +2 other tests pass
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-433/igt@kms_flip@blocking-wf_vblank@a-dp4.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-432/igt@kms_flip@blocking-wf_vblank@a-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [INCOMPLETE][161] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][162]
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-dp4:
- shard-dg2-set2: [INCOMPLETE][163] ([Intel XE#2049]) -> [PASS][164]
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
- shard-lnl: [INCOMPLETE][165] ([Intel XE#2050]) -> [PASS][166]
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2-set2: [FAIL][167] -> [PASS][168] +2 other tests pass
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-434/igt@kms_hdr@static-toggle-dpms.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-434/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3:
- shard-lnl: [DMESG-WARN][169] ([Intel XE#324]) -> [PASS][170] +4 other tests pass
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-5/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-3/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-dg2-set2: [INCOMPLETE][171] ([Intel XE#1195] / [Intel XE#2566]) -> [PASS][172]
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
- {shard-bmg}: [INCOMPLETE][173] ([Intel XE#2566]) -> [PASS][174]
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][175] ([Intel XE#718]) -> [PASS][176] +1 other test pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-lnl: [DMESG-WARN][177] ([Intel XE#1620] / [Intel XE#2042]) -> [PASS][178]
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-7/igt@kms_pm_rpm@universal-planes-dpms.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-8/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_pm_rpm@universal-planes-dpms@plane-77:
- shard-lnl: [DMESG-WARN][179] -> [PASS][180] +1 other test pass
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-7/igt@kms_pm_rpm@universal-planes-dpms@plane-77.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-8/igt@kms_pm_rpm@universal-planes-dpms@plane-77.html
* igt@kms_psr@psr2-cursor-blt@edp-1:
- shard-lnl: [FAIL][181] ([Intel XE#2948]) -> [PASS][182] +3 other tests pass
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-2/igt@kms_psr@psr2-cursor-blt@edp-1.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-1/igt@kms_psr@psr2-cursor-blt@edp-1.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][183] ([Intel XE#1473]) -> [PASS][184] +1 other test pass
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: [FAIL][185] ([Intel XE#1000]) -> [PASS][186]
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-large.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen:
- {shard-bmg}: [FAIL][187] -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-bmg-7/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-bmg-8/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html
* igt@xe_exec_reset@close-execqueues-close-fd:
- shard-dg2-set2: [FAIL][189] ([Intel XE#1081]) -> [PASS][190]
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-463/igt@xe_exec_reset@close-execqueues-close-fd.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-433/igt@xe_exec_reset@close-execqueues-close-fd.html
- shard-lnl: [FAIL][191] ([Intel XE#1081]) -> [PASS][192]
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-lnl-7/igt@xe_exec_reset@close-execqueues-close-fd.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-lnl-5/igt@xe_exec_reset@close-execqueues-close-fd.html
- {shard-bmg}: [FAIL][193] ([Intel XE#1081]) -> [PASS][194]
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-bmg-7/igt@xe_exec_reset@close-execqueues-close-fd.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-bmg-8/igt@xe_exec_reset@close-execqueues-close-fd.html
* igt@xe_module_load@many-reload:
- {shard-bmg}: [FAIL][195] ([Intel XE#2136]) -> [PASS][196]
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-bmg-8/igt@xe_module_load@many-reload.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-bmg-5/igt@xe_module_load@many-reload.html
- shard-dg2-set2: [FAIL][197] ([Intel XE#2136]) -> [PASS][198]
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-432/igt@xe_module_load@many-reload.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@xe_module_load@many-reload.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [ABORT][199] ([Intel XE#1358]) -> [PASS][200]
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-432/igt@xe_pm@s3-basic-exec.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-464/igt@xe_pm@s3-basic-exec.html
* igt@xe_query@query-invalid-extension:
- {shard-bmg}: [SKIP][201] ([Intel XE#1130]) -> [PASS][202] +8 other tests pass
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-bmg-8/igt@xe_query@query-invalid-extension.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-bmg-2/igt@xe_query@query-invalid-extension.html
#### Warnings ####
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][203] ([Intel XE#1124]) -> [SKIP][204] ([Intel XE#2351])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][205] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][206] ([Intel XE#2351])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-464/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-dg2-set2: [SKIP][207] ([Intel XE#373]) -> [SKIP][208] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-433/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: [SKIP][209] ([Intel XE#455]) -> [SKIP][210] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-463/igt@kms_content_protection@lic-type-1.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_content_protection@lic-type-1.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-dg2-set2: [ABORT][211] ([Intel XE#2625]) -> [SKIP][212] ([Intel XE#2423] / [i915#2575])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][213] ([Intel XE#651]) -> [SKIP][214] ([Intel XE#2351]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2-set2: [SKIP][215] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][216] ([Intel XE#2351]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-466/igt@kms_psr@psr-cursor-render.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@kms_psr@psr-cursor-render.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][217] ([Intel XE#362]) -> [SKIP][218] ([Intel XE#1500])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: [SKIP][219] ([Intel XE#1123]) -> [SKIP][220] ([Intel XE#1130])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_eudebug_online@interrupt-other-debuggable:
- shard-dg2-set2: [SKIP][221] ([Intel XE#2905]) -> [SKIP][222] ([Intel XE#1130])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-435/igt@xe_eudebug_online@interrupt-other-debuggable.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@xe_eudebug_online@interrupt-other-debuggable.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm:
- shard-dg2-set2: [SKIP][223] ([Intel XE#288]) -> [SKIP][224] ([Intel XE#1130]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-432/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [FAIL][225] ([Intel XE#1173]) -> [SKIP][226] ([Intel XE#1061])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-463/igt@xe_peer2peer@read.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@xe_peer2peer@read.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-dg2-set2: [SKIP][227] ([Intel XE#944]) -> [SKIP][228] ([Intel XE#1130])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8063/shard-dg2-432/igt@xe_query@multigpu-query-invalid-size.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/shard-dg2-466/igt@xe_query@multigpu-query-invalid-size.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#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1288
[Intel XE#1332]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1332
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[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#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2055]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[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#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2452]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2452
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2819
[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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890
[Intel XE#2897]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2897
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948
[Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[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#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#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[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#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[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#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8063 -> IGTPW_11894
IGTPW_11894: 11894
IGT_8063: 8063
xe-2042-e1aba2bf4f79f2f8ae7ce538124d445fc91df852: e1aba2bf4f79f2f8ae7ce538124d445fc91df852
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11894/index.html
[-- Attachment #2: Type: text/html, Size: 63533 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/amdgpu: enhance sdma test for deadlock
2024-10-10 4:58 ` [PATCH i-g-t 2/2] tests/amdgpu: enhance sdma test for deadlock Jesse.zhang@amd.com
@ 2024-10-10 19:52 ` vitaly prosyak
0 siblings, 0 replies; 7+ messages in thread
From: vitaly prosyak @ 2024-10-10 19:52 UTC (permalink / raw)
To: Jesse.zhang@amd.com, igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Kamil Konieczny
Both changes looks good to me. Reviewed-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
On 2024-10-10 00:58, Jesse.zhang@amd.com wrote:
> Test all sdma rings and ensure
> all rings can be recovered by sdma queue reset.
>
> Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
> ---
> tests/amdgpu/amd_deadlock.c | 18 +++++++++---------
> 1 file changed, 9 insertions(+), 9 deletions(-)
>
> 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);
> }
> }
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper
2024-10-10 4:58 [PATCH i-g-t 1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper Jesse.zhang@amd.com
` (3 preceding siblings ...)
2024-10-10 19:06 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-10-11 11:45 ` Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-10-11 11:45 UTC (permalink / raw)
To: jesse.zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100310 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper
URL : https://patchwork.freedesktop.org/series/139829/
State : success
== Summary ==
CI Bug Log - changes from IGT_8063_full -> IGTPW_11894_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/index.html
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11894_full:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_dp_linktrain_fallback@dp-fallback:
- {shard-tglu-1}: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- {shard-tglu-1}: NOTRUN -> [ABORT][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
New tests
---------
New tests have been introduced between IGT_8063_full and IGTPW_11894_full:
### New IGT tests (1) ###
* igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [2.05] s
Known issues
------------
Here are the changes found in IGTPW_11894_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-4/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-16/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#9318])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-2/igt@debugfs_test@basic-hwmon.html
* igt@drm_fdinfo@busy@bcs0:
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8414]) +7 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-1/igt@drm_fdinfo@busy@bcs0.html
* igt@drm_fdinfo@busy@rcs0:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +9 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-11/igt@drm_fdinfo@busy@rcs0.html
* igt@drm_fdinfo@busy@vcs1:
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +6 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-15/igt@drm_fdinfo@busy@vcs1.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-6/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][11] -> [INCOMPLETE][12] ([i915#7297])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_compute@compute-square:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#9310])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-8/igt@gem_compute@compute-square.html
* igt@gem_ctx_engines@invalid-engines:
- shard-mtlp: [PASS][14] -> [FAIL][15] ([i915#12027])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-mtlp-3/igt@gem_ctx_engines@invalid-engines.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-7/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-dg2: [PASS][16] -> [INCOMPLETE][17] ([i915#12353]) +1 other test incomplete
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-3/igt@gem_ctx_isolation@preservation-s3.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-1/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][18] ([i915#1099]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-snb5/igt@gem_ctx_persistence@file.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@hostile:
- shard-tglu: [PASS][20] -> [FAIL][21] ([i915#11980])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-tglu-10/igt@gem_ctx_persistence@hostile.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-6/igt@gem_ctx_persistence@hostile.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][22] ([i915#10030] / [i915#7975] / [i915#8213])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-3/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-dg1: NOTRUN -> [FAIL][23] ([i915#5784])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-17/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][24] ([i915#8898])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-snb7/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#4812]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#4812]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-16/igt@gem_exec_balancer@bonded-semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4812]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-4/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#4036])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-4/igt@gem_exec_balancer@invalid-bonds.html
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#4036])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-13/igt@gem_exec_balancer@invalid-bonds.html
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4036])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-2/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_big@single:
- shard-tglu: [PASS][31] -> [ABORT][32] ([i915#11713])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-tglu-3/igt@gem_exec_big@single.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-9/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#6334]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@gem_exec_capture@capture-invisible.html
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#6334]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-18/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#6344])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-7/igt@gem_exec_capture@capture-recoverable.html
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#6344])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-8/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-rkl: [PASS][38] -> [FAIL][39] ([i915#2842]) +2 other tests fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-rkl-6/igt@gem_exec_fair@basic-pace-solo.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-tglu: NOTRUN -> [FAIL][40] ([i915#2842]) +7 other tests fail
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-4/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-17/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#5107])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-16/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-gtt-active:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-active.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +4 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-4/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-8/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-1/igt@gem_fence_thrash@bo-copy.html
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4860])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-19/igt@gem_fence_thrash@bo-copy.html
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-8/igt@gem_fence_thrash@bo-copy.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu: NOTRUN -> [SKIP][50] ([i915#2190])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-2/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-8/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#8289])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@fault-concurrent-y:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-8/igt@gem_mmap_gtt@fault-concurrent-y.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4077]) +8 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@gem_mmap_gtt@zero-extend.html
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077]) +6 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-18/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4083]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-1/igt@gem_mmap_wc@invalid-flags.html
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-19/igt@gem_mmap_wc@invalid-flags.html
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4083]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-8/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#3282]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-19/igt@gem_pread@exhaustion.html
- shard-snb: NOTRUN -> [WARN][60] ([i915#2658])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-snb5/igt@gem_pread@exhaustion.html
- shard-tglu: NOTRUN -> [WARN][61] ([i915#2658])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-10/igt@gem_pread@exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#4270]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-2/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@create-regular-context-2:
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#4270]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-6/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@create-valid-protected-context:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4270])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-15/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4270]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3282]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-8/igt@gem_readwrite@new-obj.html
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#3282]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-4/igt@gem_readwrite@new-obj.html
* igt@gem_readwrite@read-write:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-6/igt@gem_readwrite@read-write.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#5190] / [i915#8428]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_render_copy@yf-tiled-to-vebox-linear:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#8428])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-2/igt@gem_render_copy@yf-tiled-to-vebox-linear.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4079])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-1/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4885])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-18/igt@gem_softpin@evict-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4885])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-3/igt@gem_softpin@evict-snoop.html
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#4885])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@gem_softpin@evict-snoop.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-3/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#2856]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-1/igt@gen9_exec_parse@bb-start-far.html
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#2527]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-1/igt@gen9_exec_parse@bb-start-far.html
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#2527])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-19/igt@gen9_exec_parse@bb-start-far.html
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#2856])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-8/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#2527] / [i915#2856]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-6/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: NOTRUN -> [ABORT][81] ([i915#9820])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
- shard-snb: NOTRUN -> [ABORT][82] ([i915#11703] / [i915#12367])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: NOTRUN -> [ABORT][83] ([i915#9820])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: NOTRUN -> [ABORT][84] ([i915#10887] / [i915#9820])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: NOTRUN -> [ABORT][85] ([i915#10131] / [i915#10887] / [i915#9820])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [ABORT][86] ([i915#9820])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#8399])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-5/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_rps@reset:
- shard-tglu: [PASS][88] -> [ABORT][89] ([i915#12309])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-tglu-10/igt@i915_pm_rps@reset.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-10/igt@i915_pm_rps@reset.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][90] ([i915#5723])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-5/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][91] ([i915#9311]) +1 other test dmesg-warn
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-1/igt@i915_selftest@mock@memory_region.html
- shard-dg1: NOTRUN -> [DMESG-WARN][92] ([i915#9311]) +1 other test dmesg-warn
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-15/igt@i915_selftest@mock@memory_region.html
- shard-snb: NOTRUN -> [DMESG-WARN][93] ([i915#9311])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-snb7/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#4212]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-7/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#4212])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#4212]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-12/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#4215])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-18/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#4215] / [i915#5190])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#8709]) +7 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#8709]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#6228])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-1/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#9531])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_interruptible@atomic-setmode:
- shard-dg2: [PASS][103] -> [SKIP][104] ([i915#9197]) +14 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-1/igt@kms_atomic_interruptible@atomic-setmode.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_atomic_interruptible@atomic-setmode.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#5286]) +3 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#4538] / [i915#5286]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-15/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#5286]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#4538] / [i915#5190]) +13 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#3638])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-16/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-rkl: [PASS][110] -> [ABORT][111] ([i915#10354])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][112] +6 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#5190] / [i915#9197])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#4538]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#6095]) +19 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#12313]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][118] ([i915#12313]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#12313]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#6095]) +48 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#10307] / [i915#6095]) +139 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#9197]) +12 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#12313])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#6095]) +34 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#12313]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-13/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#6095]) +104 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#7828]) +10 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-8/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#7828]) +5 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#7828]) +4 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#7828]) +6 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#7828]) +3 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#7116] / [i915#9424])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-19/igt@kms_content_protection@atomic.html
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6944] / [i915#9424])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-8/igt@kms_content_protection@atomic.html
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#7118] / [i915#9424])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#3116] / [i915#3299])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3299])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-7/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#3116])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#3299])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-12/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-3/igt@kms_content_protection@legacy.html
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#7118] / [i915#9424])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-5/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#8814]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#3555]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-8/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#3555]) +4 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-4/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#11453]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][145] +11 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
- shard-dg1: NOTRUN -> [SKIP][146] +18 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-17/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#9809]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#9067])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#9833])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#3804])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#3840])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#3840])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-18/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#3555] / [i915#3840])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#3840] / [i915#9053])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#1839])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-4/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#9337])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-11/igt@kms_feature_discovery@dp-mst.html
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#9337])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#9337])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-18/igt@kms_feature_discovery@dp-mst.html
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#9337])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-9/igt@kms_feature_discovery@dp-mst.html
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#9337])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-5/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#3637] / [i915#3966])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-7/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][162] -> [FAIL][163] ([i915#2122]) +11 other tests fail
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-snb5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#9934]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-13/igt@kms_flip@2x-flip-vs-dpms.html
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3637]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-2/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#8381])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#3637]) +6 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-4/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][168] +13 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@absolute-wf_vblank-interruptible:
- shard-dg2: [PASS][169] -> [SKIP][170] ([i915#5354]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-6/igt@kms_flip@absolute-wf_vblank-interruptible.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_flip@absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1:
- shard-tglu: [PASS][171] -> [FAIL][172] ([i915#2122]) +5 other tests fail
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-tglu-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-dg2: [PASS][173] -> [FAIL][174] ([i915#2122])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-8/igt@kms_flip@wf_vblank-ts-check.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-1/igt@kms_flip@wf_vblank-ts-check.html
- shard-snb: [PASS][175] -> [FAIL][176] ([i915#10826] / [i915#2122])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-snb2/igt@kms_flip@wf_vblank-ts-check.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-snb7/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip@wf_vblank-ts-check@a-vga1:
- shard-snb: [PASS][177] -> [FAIL][178] ([i915#10826])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-snb2/igt@kms_flip@wf_vblank-ts-check@a-vga1.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-snb7/igt@kms_flip@wf_vblank-ts-check@a-vga1.html
* igt@kms_flip@wf_vblank-ts-check@b-hdmi-a3:
- shard-dg2: NOTRUN -> [FAIL][179] ([i915#2122]) +1 other test fail
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-1/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#2672] / [i915#3555])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#2672])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2: [PASS][182] -> [SKIP][183] ([i915#3555]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#2672] / [i915#3555])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#2587] / [i915#2672])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#2587] / [i915#2672] / [i915#3555])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#2587] / [i915#2672])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#2672]) +5 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8813])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8810])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#2672] / [i915#3555])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [FAIL][193] ([i915#6880])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#8708]) +4 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#4423])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#5354]) +38 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-snb: [PASS][197] -> [SKIP][198] +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#1825]) +11 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2: [PASS][200] -> [FAIL][201] ([i915#6880]) +2 other tests fail
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#8708]) +12 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#1825]) +5 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][204] +61 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#8708]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#3023]) +5 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#9766])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#9766])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-18/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#9766])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#4342] / [i915#5354])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#3458]) +8 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#3458]) +9 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2: [PASS][213] -> [SKIP][214] ([i915#433])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-11/igt@kms_hdmi_inject@inject-audio.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-4/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_invalid_mode@clock-too-high:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#6403] / [i915#8826])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-5/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#9457]) +3 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-5/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#12339])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-4/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#12339])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-18/igt@kms_joiner@basic-ultra-joiner.html
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#12339])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-9/igt@kms_joiner@basic-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#12339])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-5/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#12339])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-11/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-dg2: [PASS][223] -> [SKIP][224] ([i915#8825])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-8/igt@kms_plane@plane-panning-bottom-right-suspend.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_lowres@tiling-4:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#10226] / [i915#3555] / [i915#8821])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-7/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_lowres@tiling-4@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#11614] / [i915#3582]) +3 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-7/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#12247]) +4 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#3555]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#12247]) +3 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#8152] / [i915#9423])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#8152])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#12247] / [i915#6953] / [i915#9423])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#12247] / [i915#6953])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-7/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-a:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#12247]) +6 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- shard-dg2: [PASS][235] -> [SKIP][236] ([i915#3555] / [i915#8152] / [i915#9423])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-7/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- shard-dg2: [PASS][237] -> [SKIP][238] ([i915#12247]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-7/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
- shard-dg2: [PASS][239] -> [SKIP][240] ([i915#12247] / [i915#8152])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-7/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#12247] / [i915#6953])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#12247]) +13 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [PASS][243] -> [FAIL][244] ([i915#9295])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#9340])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#3828])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#9340])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-19/igt@kms_pm_lpsp@kms-lpsp.html
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#3828])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-10/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#8430])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-7/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#8430])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-10/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: [PASS][251] -> [SKIP][252] ([i915#9519]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-rkl-6/igt@kms_pm_rpm@dpms-non-lpsp.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#9519]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#9519]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-19/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#6524])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-5/igt@kms_prime@d3hot.html
- shard-tglu: NOTRUN -> [SKIP][256] ([i915#6524])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-5/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#11520]) +6 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-4/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#12316]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
- shard-snb: NOTRUN -> [SKIP][259] ([i915#11520]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-snb7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][260] ([i915#11520]) +5 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-6/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#11520]) +3 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#11520]) +3 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-19/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#9683])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-17/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#9683])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@kms_psr2_su@page_flip-nv12.html
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#9683])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#1072] / [i915#9732]) +5 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-7/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#1072] / [i915#9732]) +20 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr2-basic:
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#1072] / [i915#9732]) +13 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-19/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#9732]) +16 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-6/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#9688]) +11 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-4/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#5190])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#11131] / [i915#5190])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#5289])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#5289])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#11131])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#5289])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8809])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-4/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vrr@flip-basic:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#3555])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-2/igt@kms_vrr@flip-basic.html
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8808])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-1/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#11920])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-10/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#11920])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-16/igt@kms_vrr@lobf.html
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#11920])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-3/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#9906])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-8/igt@kms_vrr@negative-basic.html
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#3555] / [i915#9906])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-14/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#9906]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-3/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#2437] / [i915#9412])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#2437] / [i915#9412])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-7/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#2433])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-18/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start:
- shard-mtlp: NOTRUN -> [FAIL][289] ([i915#4349]) +2 other tests fail
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-7/igt@perf_pmu@busy-double-start.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][290] ([i915#4349]) +4 other tests fail
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@busy-idle@bcs0:
- shard-mtlp: [PASS][291] -> [FAIL][292] ([i915#4349])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-mtlp-7/igt@perf_pmu@busy-idle@bcs0.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-4/igt@perf_pmu@busy-idle@bcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#8516])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-3/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#3708])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-10/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#3291] / [i915#3708])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-4/igt@prime_vgem@basic-read.html
- shard-dg1: NOTRUN -> [SKIP][296] ([i915#3708])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-13/igt@prime_vgem@basic-read.html
* igt@sysfs_timeslice_duration@idempotent@vcs0:
- shard-snb: NOTRUN -> [SKIP][297] +56 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-snb4/igt@sysfs_timeslice_duration@idempotent@vcs0.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all:
- shard-rkl: [FAIL][298] -> [PASS][299] +1 other test pass
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all.html
* igt@fbdev@nullptr:
- shard-dg2: [SKIP][300] ([i915#2582]) -> [PASS][301]
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@fbdev@nullptr.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-8/igt@fbdev@nullptr.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [ABORT][302] ([i915#9846]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-4/igt@gem_create@create-ext-cpu-access-big.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_exec_balancer@nop:
- shard-mtlp: [DMESG-WARN][304] -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-mtlp-5/igt@gem_exec_balancer@nop.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-5/igt@gem_exec_balancer@nop.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-tglu: [TIMEOUT][306] ([i915#3778]) -> [PASS][307] +1 other test pass
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-tglu-4/igt@gem_exec_endless@dispatch@bcs0.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-5/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fair@basic-none@vecs0:
- shard-rkl: [FAIL][308] ([i915#2842]) -> [PASS][309] +1 other test pass
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-rkl-5/igt@gem_exec_fair@basic-none@vecs0.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-6/igt@gem_exec_fair@basic-none@vecs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][310] ([i915#2876]) -> [PASS][311]
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-3/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [INCOMPLETE][312] -> [PASS][313] +1 other test pass
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-8/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [FAIL][314] ([i915#3591]) -> [PASS][315] +1 other test pass
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_selftest@mock@sanitycheck:
- shard-snb: [ABORT][316] ([i915#11703]) -> [PASS][317]
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-snb2/igt@i915_selftest@mock@sanitycheck.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-snb7/igt@i915_selftest@mock@sanitycheck.html
* igt@kms_cursor_crc@cursor-sliding-128x128:
- shard-mtlp: [FAIL][318] -> [PASS][319] +2 other tests pass
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-128x128.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-128x128.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-dg1: [INCOMPLETE][320] ([i915#12358]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg1-13/igt@kms_cursor_crc@cursor-suspend.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-14/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-mtlp: [FAIL][322] ([i915#2346]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-dg2: [SKIP][324] ([i915#1849]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-7/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-tglu: [FAIL][326] ([i915#2122]) -> [PASS][327] +2 other tests pass
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-tglu-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg1: [INCOMPLETE][328] ([i915#4839] / [i915#6113]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg1-15/igt@kms_flip@flip-vs-suspend-interruptible.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-tglu: [INCOMPLETE][330] ([i915#6113]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-tglu-4/igt@kms_flip@flip-vs-suspend-interruptible.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-5/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-mtlp: [INCOMPLETE][332] ([i915#6113]) -> [PASS][333] +1 other test pass
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-mtlp-2/igt@kms_flip@flip-vs-suspend-interruptible.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-2/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1:
- shard-tglu: [INCOMPLETE][334] -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-tglu-4/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-5/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-snb: [FAIL][336] ([i915#10826] / [i915#2122]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-snb4/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-snb5/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1:
- shard-rkl: [FAIL][338] ([i915#2122]) -> [PASS][339] +2 other tests pass
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-rkl-7/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-rkl-2/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1:
- shard-snb: [FAIL][340] ([i915#10826]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-snb4/igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-snb5/igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1:
- shard-mtlp: [FAIL][342] ([i915#2122]) -> [PASS][343] +2 other tests pass
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-mtlp-6/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-2/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a4:
- shard-dg1: [FAIL][344] ([i915#2122]) -> [PASS][345] +2 other tests pass
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg1-14/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a4.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-19/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a4.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1:
- shard-snb: [FAIL][346] ([i915#2122]) -> [PASS][347] +4 other tests pass
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-snb4/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-snb5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-dg2: [SKIP][348] ([i915#3555]) -> [PASS][349] +3 other tests pass
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_frontbuffer_tracking@basic:
- shard-dg2: [SKIP][350] ([i915#5354]) -> [PASS][351] +14 other tests pass
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_frontbuffer_tracking@basic.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-3/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render:
- shard-dg2: [FAIL][352] ([i915#6880]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-snb: [SKIP][354] -> [PASS][355] +9 other tests pass
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: [SKIP][356] ([i915#3555] / [i915#8228]) -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_plane@plane-position-hole-dpms:
- shard-dg2: [SKIP][358] ([i915#8825]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_plane@plane-position-hole-dpms.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-4/igt@kms_plane@plane-position-hole-dpms.html
* igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant:
- shard-dg2: [SKIP][360] ([i915#7294]) -> [PASS][361] +1 other test pass
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-8/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
- shard-dg2: [SKIP][362] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][363]
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-dg2: [SKIP][364] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][365] +1 other test pass
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- shard-dg2: [SKIP][366] ([i915#12247]) -> [PASS][367] +17 other tests pass
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-10/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: [SKIP][368] ([i915#12247] / [i915#8152]) -> [PASS][369] +5 other tests pass
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling:
- shard-dg2: [SKIP][370] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) -> [PASS][371] +1 other test pass
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- shard-dg2: [SKIP][372] ([i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][373]
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [SKIP][374] ([i915#9519]) -> [PASS][375]
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2: [SKIP][376] ([i915#3547]) -> [PASS][377]
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_pm_rpm@system-suspend-modeset.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-1/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_properties@plane-properties-atomic:
- shard-dg2: [SKIP][378] ([i915#11521]) -> [PASS][379] +1 other test pass
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_properties@plane-properties-atomic.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-8/igt@kms_properties@plane-properties-atomic.html
* igt@kms_vblank@ts-continuation-idle-hang:
- shard-dg2: [SKIP][380] ([i915#9197]) -> [PASS][381] +34 other tests pass
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_vblank@ts-continuation-idle-hang.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-1/igt@kms_vblank@ts-continuation-idle-hang.html
* igt@perf@gen12-group-concurrent-oa-buffer-read:
- shard-tglu: [FAIL][382] ([i915#10538]) -> [PASS][383]
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-tglu-7/igt@perf@gen12-group-concurrent-oa-buffer-read.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-tglu-6/igt@perf@gen12-group-concurrent-oa-buffer-read.html
* igt@perf_pmu@render-node-busy-idle:
- shard-mtlp: [FAIL][384] ([i915#4349]) -> [PASS][385] +2 other tests pass
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-mtlp-1/igt@perf_pmu@render-node-busy-idle.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle.html
* igt@perf_pmu@render-node-busy-idle@vcs0:
- shard-dg2: [FAIL][386] ([i915#4349]) -> [PASS][387] +5 other tests pass
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-3/igt@perf_pmu@render-node-busy-idle@vcs0.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@perf_pmu@render-node-busy-idle@vcs0.html
- shard-dg1: [FAIL][388] ([i915#4349]) -> [PASS][389] +3 other tests pass
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg1-13/igt@perf_pmu@render-node-busy-idle@vcs0.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-18/igt@perf_pmu@render-node-busy-idle@vcs0.html
#### Warnings ####
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-dg1: [SKIP][390] ([i915#4077]) -> [INCOMPLETE][391] ([i915#2295])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg1-15/igt@gem_mmap_gtt@basic-small-copy-odd.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-19/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: [SKIP][392] ([i915#9197]) -> [SKIP][393] ([i915#7091])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-8/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_selftest@mock:
- shard-snb: [ABORT][394] -> [DMESG-WARN][395] ([i915#9311])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-snb2/igt@i915_selftest@mock.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-snb7/igt@i915_selftest@mock.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: [SKIP][396] ([i915#9197]) -> [SKIP][397] ([i915#6228])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-6/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: [SKIP][398] ([i915#9197]) -> [SKIP][399] ([i915#9531])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg2: [SKIP][400] -> [SKIP][401] ([i915#9197])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-5/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2: [SKIP][402] ([i915#9197]) -> [SKIP][403]
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-11/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
- shard-dg2: [SKIP][404] ([i915#4538] / [i915#5190]) -> [SKIP][405] ([i915#5190] / [i915#9197]) +4 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-3/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: [SKIP][406] ([i915#5190]) -> [SKIP][407] ([i915#5190] / [i915#9197])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: [SKIP][408] ([i915#5190] / [i915#9197]) -> [SKIP][409] ([i915#4538] / [i915#5190]) +5 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2: [SKIP][410] ([i915#5190] / [i915#9197]) -> [SKIP][411] ([i915#5190]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: [SKIP][412] ([i915#4538]) -> [SKIP][413] ([i915#4423] / [i915#4538])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg1: [SKIP][414] ([i915#4423] / [i915#4538]) -> [SKIP][415] ([i915#4538])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc:
- shard-dg2: [SKIP][416] ([i915#10307] / [i915#6095]) -> [SKIP][417] ([i915#9197]) +3 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-11/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs:
- shard-dg2: [SKIP][418] ([i915#9197]) -> [SKIP][419] ([i915#10307] / [i915#6095]) +3 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-1/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-dg2: [SKIP][420] ([i915#11616] / [i915#7213]) -> [SKIP][421] ([i915#9197])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-5/igt@kms_cdclk@mode-transition.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_cdclk@mode-transition.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [SKIP][422] ([i915#9197]) -> [SKIP][423] ([i915#7118] / [i915#9424])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: [SKIP][424] ([i915#3299]) -> [SKIP][425] ([i915#9197])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-1.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2: [SKIP][426] ([i915#9197]) -> [SKIP][427] ([i915#3555]) +4 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: [SKIP][428] ([i915#11453]) -> [SKIP][429] ([i915#9197]) +2 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x512.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2: [SKIP][430] ([i915#9197]) -> [SKIP][431] ([i915#5354]) +2 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-8/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: [SKIP][432] ([i915#5354]) -> [SKIP][433] ([i915#9197])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: [SKIP][434] ([i915#9197]) -> [SKIP][435] ([i915#9067])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: [SKIP][436] ([i915#4103] / [i915#4213]) -> [SKIP][437] ([i915#9197])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: [SKIP][438] ([i915#8812]) -> [SKIP][439] ([i915#9197])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-gtt.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: [SKIP][440] ([i915#9197]) -> [SKIP][441] ([i915#3840])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2: [SKIP][442] ([i915#3555] / [i915#3840]) -> [SKIP][443] ([i915#9197])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-8/igt@kms_dsc@dsc-with-formats.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2: [SKIP][444] ([i915#9197]) -> [SKIP][445] ([i915#3840] / [i915#9053])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fence_pin_leak:
- shard-dg2: [SKIP][446] ([i915#4881]) -> [SKIP][447] ([i915#9197])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-7/igt@kms_fence_pin_leak.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_fence_pin_leak.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: [SKIP][448] ([i915#2672] / [i915#3555]) -> [SKIP][449] ([i915#3555]) +1 other test skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2: [SKIP][450] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][451] ([i915#3555] / [i915#5190]) +1 other test skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/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: [SKIP][452] ([i915#3555] / [i915#5190]) -> [SKIP][453] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2: [SKIP][454] ([i915#3555]) -> [SKIP][455] ([i915#2672] / [i915#3555])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: [SKIP][456] ([i915#3458]) -> [SKIP][457] ([i915#5354]) +8 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: [SKIP][458] ([i915#8708]) -> [SKIP][459] ([i915#5354]) +5 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8063/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][460] ([i915#3458]) -> [SKIP][461] ([i915#10433] / [i915#3458])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_80
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11894/index.html
[-- Attachment #2: Type: text/html, Size: 108468 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-10-11 11:45 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-10 4:58 [PATCH i-g-t 1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper Jesse.zhang@amd.com
2024-10-10 4:58 ` [PATCH i-g-t 2/2] tests/amdgpu: enhance sdma test for deadlock Jesse.zhang@amd.com
2024-10-10 19:52 ` vitaly prosyak
2024-10-10 5:49 ` ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] lib/amdgpu: add sdma ring id paramter for deadlock helper Patchwork
2024-10-10 5:59 ` ✓ Fi.CI.BAT: " Patchwork
2024-10-10 19:06 ` ✗ CI.xeFULL: failure " Patchwork
2024-10-11 11:45 ` ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox