* [PATCH i-g-t] lib/amdgpu: ad support for page queues in amd_deadlock
@ 2025-02-24 7:23 Jesse.zhang@amd.com
2025-02-24 19:32 ` vitaly prosyak
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Jesse.zhang@amd.com @ 2025-02-24 7:23 UTC (permalink / raw)
To: igt-dev; +Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig,
Jesse.zhang@amd.com
This commit introduces enhancements to the deadlock to handle
page queues and modify the logic for enabling/disabling scheduling rings.
- New Function `is_support_page_queue`:
- Checks if page queue files exist for a given IP block type and PCI address.
- Modify `amdgpu_wait_memory_helper`:
- Updates the logic for enabling/disabling scheduling rings based on whether page queues are supported.
- Calls `is_support_page_queue` to check if page queues are supported.
- If page queues are supported, enables two rings (sdma gfx queue and page queue).
- Similar Modifications in Other Functions:
- Applies similar logic to handle page queues in `bad_access_ring_helper` and `amdgpu_hang_sdma_ring_helper`.
- Ensures consistency across different helper functions, maintaining the same logic for handling page queues.
Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>
Cc: Christian Koenig <christian.koenig@amd.com>
Cc: Alexander Deucher <alexander.deucher@amd.com>
Signed-off-by: Jesse Zhang <jesse.zhang@amd.com>
---
lib/amdgpu/amd_deadlock_helpers.c | 96 ++++++++++++++++++++++++++-----
1 file changed, 81 insertions(+), 15 deletions(-)
diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c
index d7bf0e111..3463653a7 100644
--- a/lib/amdgpu/amd_deadlock_helpers.c
+++ b/lib/amdgpu/amd_deadlock_helpers.c
@@ -10,6 +10,7 @@
#include <unistd.h>
#include <pthread.h>
#include <signal.h>
+#include <glob.h>
#include "amd_memory.h"
#include "amd_deadlock_helpers.h"
#include "lib/amdgpu/amd_command_submission.h"
@@ -26,6 +27,31 @@ struct thread_param {
static int
use_uc_mtype = 1;
+/* Function to check if page queue files exist for a given IP block type and PCI address */
+static bool
+is_support_page_queue(enum amd_ip_block_type ip_type, const struct pci_addr *pci)
+{
+ glob_t glob_result;
+ int ret;
+ char search_pattern[1024];
+
+ /* If the IP type is not SDMA, return false */
+ if (ip_type != AMD_IP_DMA)
+ return false;
+
+ /* Construct the search pattern for the page queue files */
+ snprintf(search_pattern, sizeof(search_pattern) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_ring_page*",
+ pci->domain, pci->bus, pci->device, pci->function);
+
+ /* Use glob to find files matching the pattern */
+ ret = glob(search_pattern, GLOB_NOSORT, NULL, &glob_result);
+ /* Free the memory allocated by glob */
+ globfree(&glob_result);
+
+ /* Return true if files matching the pattern were found, otherwise return false */
+ return (ret == 0 && glob_result.gl_pathc > 0);
+}
+
static void*
write_mem_address(void *data)
{
@@ -179,16 +205,19 @@ void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int
FILE *fp;
char cmd[1024];
char buffer[128];
- long sched_mask = 0;
+ uint64_t sched_mask = 0, ring_id;
struct drm_amdgpu_info_hw_ip info;
- uint32_t ring_id, prio;
+ uint32_t prio;
char sysfs[125];
+ bool support_page;
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);
+ support_page = is_support_page_queue(ip_type, pci);
+
if (ip_type == AMD_IP_GFX)
snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_gfx_sched_mask",
pci->domain, pci->bus, pci->device, pci->function);
@@ -215,7 +244,7 @@ void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int
igt_info("The scheduling ring only enables one for ip %d\n", ip_type);
}
- for (ring_id = 0; (0x1 << ring_id) <= sched_mask; ring_id++) {
+ for (ring_id = 0; ((uint64_t)0x1 << ring_id) <= sched_mask; ring_id += 1) {
/* check sched is ready is on the ring. */
if (!((1 << ring_id) & sched_mask))
continue;
@@ -239,9 +268,20 @@ void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int
}
if (sched_mask > 1) {
- snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
- 0x1 << ring_id, sysfs);
- igt_info("Disable other rings, keep only ring: %d enabled, cmd: %s\n", ring_id, cmd);
+ /* If page queues are supported, run with
+ * multiple queues(sdma gfx queue + page queue)
+ */
+ if (support_page) {
+ snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
+ 0x3 << ring_id, sysfs);
+ igt_info("Disable other rings, keep ring: %ld and %ld enabled, cmd: %s\n", ring_id, ring_id + 1, cmd);
+ ring_id++;
+
+ } else {
+ snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
+ 0x1 << ring_id, sysfs);
+ igt_info("Disable other rings, keep only ring: %ld enabled, cmd: %s\n", ring_id, cmd);
+ }
r = system(cmd);
igt_assert_eq(r, 0);
}
@@ -411,16 +451,18 @@ void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd
FILE *fp;
char cmd[1024];
char buffer[128];
- long sched_mask = 0;
+ uint64_t sched_mask = 0, ring_id;
struct drm_amdgpu_info_hw_ip info;
- uint32_t ring_id, prio;
+ uint32_t prio;
char sysfs[125];
+ bool support_page;
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);
+ support_page = is_support_page_queue(ip_type, pci);
if (ip_type == AMD_IP_GFX)
snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_gfx_sched_mask",
pci->domain, pci->bus, pci->device, pci->function);
@@ -447,7 +489,7 @@ void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd
igt_info("The scheduling ring only enables one for ip %d\n", ip_type);
}
- for (ring_id = 0; (0x1 << ring_id) <= sched_mask; ring_id++) {
+ for (ring_id = 0; ((uint64_t)0x1 << ring_id) <= sched_mask; ring_id++) {
/* check sched is ready is on the ring. */
if (!((1 << ring_id) & sched_mask))
continue;
@@ -471,9 +513,20 @@ void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd
}
if (sched_mask > 1) {
- snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
+ /* If page queues are supported, run with
+ * multiple queues(sdma gfx queue + page queue)
+ */
+ if (support_page) {
+ snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
+ 0x3 << ring_id, sysfs);
+ igt_info("Disable other rings, keep ring: %ld and %ld enabled, cmd: %s\n", ring_id, ring_id + 1, cmd);
+ ring_id++;
+ } else {
+ snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
0x1 << ring_id, sysfs);
- igt_info("Disable other rings, keep only ring: %d enabled, cmd: %s\n", ring_id, cmd);
+ igt_info("Disable other rings, keep only ring: %ld enabled, cmd: %s\n", ring_id, cmd);
+ }
+
r = system(cmd);
igt_assert_eq(r, 0);
}
@@ -496,16 +549,17 @@ void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t ha
FILE *fp;
char cmd[1024];
char buffer[128];
- long sched_mask = 0;
+ uint64_t sched_mask = 0, ring_id;
struct drm_amdgpu_info_hw_ip info;
- uint32_t ring_id;
char sysfs[125];
+ bool support_page;
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");
+ support_page = is_support_page_queue(AMDGPU_HW_IP_DMA, pci);
snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_sdma_sched_mask",
pci->domain, pci->bus, pci->device, pci->function);
snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs);
@@ -522,14 +576,26 @@ void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t ha
} else
sched_mask = 1;
- for (ring_id = 0; (0x1 << ring_id) <= sched_mask; ring_id++) {
+ for (ring_id = 0; ((uint64_t)0x1 << ring_id) <= sched_mask; ring_id++) {
/* check sched is ready is on the ring. */
if (!((1 << ring_id) & sched_mask))
continue;
if (sched_mask > 1) {
- snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
+ /* If page queues are supported, run with
+ * multiple queues(sdma gfx queue + page queue)
+ */
+ if (support_page) {
+ snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
+ 0x3 << ring_id, sysfs);
+ igt_info("Disable other rings, keep ring: %ld and %ld enabled, cmd: %s\n", ring_id, ring_id + 1, cmd);
+ ring_id++;
+ } else {
+ snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
0x1 << ring_id, sysfs);
+ igt_info("Disable other rings, keep only ring: %ld enabled, cmd: %s\n", ring_id, cmd);
+ }
+
r = system(cmd);
igt_assert_eq(r, 0);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] lib/amdgpu: ad support for page queues in amd_deadlock
2025-02-24 7:23 [PATCH i-g-t] lib/amdgpu: ad support for page queues in amd_deadlock Jesse.zhang@amd.com
@ 2025-02-24 19:32 ` vitaly prosyak
2025-02-25 5:47 ` ✓ Xe.CI.BAT: success for " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: vitaly prosyak @ 2025-02-24 19:32 UTC (permalink / raw)
To: Jesse.zhang@amd.com, igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig
The change looks good to me with the following updates: move is_support_page_queue into the amd_ip_block file to allow other test cases to access this function, and fix some spelling errors.
Posted updated change.
Reviewed-by: Vitaly Prosyak <vitaly.prosyak.amd.com>
On 2025-02-24 02:23, Jesse.zhang@amd.com wrote:
> This commit introduces enhancements to the deadlock to handle
> page queues and modify the logic for enabling/disabling scheduling rings.
>
> - New Function `is_support_page_queue`:
> - Checks if page queue files exist for a given IP block type and PCI address.
>
> - Modify `amdgpu_wait_memory_helper`:
> - Updates the logic for enabling/disabling scheduling rings based on whether page queues are supported.
> - Calls `is_support_page_queue` to check if page queues are supported.
> - If page queues are supported, enables two rings (sdma gfx queue and page queue).
>
> - Similar Modifications in Other Functions:
> - Applies similar logic to handle page queues in `bad_access_ring_helper` and `amdgpu_hang_sdma_ring_helper`.
> - Ensures consistency across different helper functions, maintaining the same logic for handling page queues.
>
> Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>
> Cc: Christian Koenig <christian.koenig@amd.com>
> Cc: Alexander Deucher <alexander.deucher@amd.com>
>
> Signed-off-by: Jesse Zhang <jesse.zhang@amd.com>
> ---
> lib/amdgpu/amd_deadlock_helpers.c | 96 ++++++++++++++++++++++++++-----
> 1 file changed, 81 insertions(+), 15 deletions(-)
>
> diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c
> index d7bf0e111..3463653a7 100644
> --- a/lib/amdgpu/amd_deadlock_helpers.c
> +++ b/lib/amdgpu/amd_deadlock_helpers.c
> @@ -10,6 +10,7 @@
> #include <unistd.h>
> #include <pthread.h>
> #include <signal.h>
> +#include <glob.h>
> #include "amd_memory.h"
> #include "amd_deadlock_helpers.h"
> #include "lib/amdgpu/amd_command_submission.h"
> @@ -26,6 +27,31 @@ struct thread_param {
> static int
> use_uc_mtype = 1;
>
> +/* Function to check if page queue files exist for a given IP block type and PCI address */
> +static bool
> +is_support_page_queue(enum amd_ip_block_type ip_type, const struct pci_addr *pci)
> +{
> + glob_t glob_result;
> + int ret;
> + char search_pattern[1024];
> +
> + /* If the IP type is not SDMA, return false */
> + if (ip_type != AMD_IP_DMA)
> + return false;
> +
> + /* Construct the search pattern for the page queue files */
> + snprintf(search_pattern, sizeof(search_pattern) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_ring_page*",
> + pci->domain, pci->bus, pci->device, pci->function);
> +
> + /* Use glob to find files matching the pattern */
> + ret = glob(search_pattern, GLOB_NOSORT, NULL, &glob_result);
> + /* Free the memory allocated by glob */
> + globfree(&glob_result);
> +
> + /* Return true if files matching the pattern were found, otherwise return false */
> + return (ret == 0 && glob_result.gl_pathc > 0);
> +}
> +
> static void*
> write_mem_address(void *data)
> {
> @@ -179,16 +205,19 @@ void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int
> FILE *fp;
> char cmd[1024];
> char buffer[128];
> - long sched_mask = 0;
> + uint64_t sched_mask = 0, ring_id;
> struct drm_amdgpu_info_hw_ip info;
> - uint32_t ring_id, prio;
> + uint32_t prio;
> char sysfs[125];
> + bool support_page;
>
> 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);
>
> + support_page = is_support_page_queue(ip_type, pci);
> +
> if (ip_type == AMD_IP_GFX)
> snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_gfx_sched_mask",
> pci->domain, pci->bus, pci->device, pci->function);
> @@ -215,7 +244,7 @@ void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int
> igt_info("The scheduling ring only enables one for ip %d\n", ip_type);
> }
>
> - for (ring_id = 0; (0x1 << ring_id) <= sched_mask; ring_id++) {
> + for (ring_id = 0; ((uint64_t)0x1 << ring_id) <= sched_mask; ring_id += 1) {
> /* check sched is ready is on the ring. */
> if (!((1 << ring_id) & sched_mask))
> continue;
> @@ -239,9 +268,20 @@ void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int
> }
>
> if (sched_mask > 1) {
> - snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
> - 0x1 << ring_id, sysfs);
> - igt_info("Disable other rings, keep only ring: %d enabled, cmd: %s\n", ring_id, cmd);
> + /* If page queues are supported, run with
> + * multiple queues(sdma gfx queue + page queue)
> + */
> + if (support_page) {
> + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
> + 0x3 << ring_id, sysfs);
> + igt_info("Disable other rings, keep ring: %ld and %ld enabled, cmd: %s\n", ring_id, ring_id + 1, cmd);
> + ring_id++;
> +
> + } else {
> + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
> + 0x1 << ring_id, sysfs);
> + igt_info("Disable other rings, keep only ring: %ld enabled, cmd: %s\n", ring_id, cmd);
> + }
> r = system(cmd);
> igt_assert_eq(r, 0);
> }
> @@ -411,16 +451,18 @@ void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd
> FILE *fp;
> char cmd[1024];
> char buffer[128];
> - long sched_mask = 0;
> + uint64_t sched_mask = 0, ring_id;
> struct drm_amdgpu_info_hw_ip info;
> - uint32_t ring_id, prio;
> + uint32_t prio;
> char sysfs[125];
> + bool support_page;
>
> 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);
>
> + support_page = is_support_page_queue(ip_type, pci);
> if (ip_type == AMD_IP_GFX)
> snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_gfx_sched_mask",
> pci->domain, pci->bus, pci->device, pci->function);
> @@ -447,7 +489,7 @@ void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd
> igt_info("The scheduling ring only enables one for ip %d\n", ip_type);
> }
>
> - for (ring_id = 0; (0x1 << ring_id) <= sched_mask; ring_id++) {
> + for (ring_id = 0; ((uint64_t)0x1 << ring_id) <= sched_mask; ring_id++) {
> /* check sched is ready is on the ring. */
> if (!((1 << ring_id) & sched_mask))
> continue;
> @@ -471,9 +513,20 @@ void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd
> }
>
> if (sched_mask > 1) {
> - snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
> + /* If page queues are supported, run with
> + * multiple queues(sdma gfx queue + page queue)
> + */
> + if (support_page) {
> + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
> + 0x3 << ring_id, sysfs);
> + igt_info("Disable other rings, keep ring: %ld and %ld enabled, cmd: %s\n", ring_id, ring_id + 1, cmd);
> + ring_id++;
> + } else {
> + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
> 0x1 << ring_id, sysfs);
> - igt_info("Disable other rings, keep only ring: %d enabled, cmd: %s\n", ring_id, cmd);
> + igt_info("Disable other rings, keep only ring: %ld enabled, cmd: %s\n", ring_id, cmd);
> + }
> +
> r = system(cmd);
> igt_assert_eq(r, 0);
> }
> @@ -496,16 +549,17 @@ void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t ha
> FILE *fp;
> char cmd[1024];
> char buffer[128];
> - long sched_mask = 0;
> + uint64_t sched_mask = 0, ring_id;
> struct drm_amdgpu_info_hw_ip info;
> - uint32_t ring_id;
> char sysfs[125];
> + bool support_page;
>
> 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");
>
> + support_page = is_support_page_queue(AMDGPU_HW_IP_DMA, pci);
> snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/%04x:%02x:%02x.%01x/amdgpu_sdma_sched_mask",
> pci->domain, pci->bus, pci->device, pci->function);
> snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs);
> @@ -522,14 +576,26 @@ void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t ha
> } else
> sched_mask = 1;
>
> - for (ring_id = 0; (0x1 << ring_id) <= sched_mask; ring_id++) {
> + for (ring_id = 0; ((uint64_t)0x1 << ring_id) <= sched_mask; ring_id++) {
> /* check sched is ready is on the ring. */
> if (!((1 << ring_id) & sched_mask))
> continue;
>
> if (sched_mask > 1) {
> - snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
> + /* If page queues are supported, run with
> + * multiple queues(sdma gfx queue + page queue)
> + */
> + if (support_page) {
> + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
> + 0x3 << ring_id, sysfs);
> + igt_info("Disable other rings, keep ring: %ld and %ld enabled, cmd: %s\n", ring_id, ring_id + 1, cmd);
> + ring_id++;
> + } else {
> + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
> 0x1 << ring_id, sysfs);
> + igt_info("Disable other rings, keep only ring: %ld enabled, cmd: %s\n", ring_id, cmd);
> + }
> +
> r = system(cmd);
> igt_assert_eq(r, 0);
> }
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for lib/amdgpu: ad support for page queues in amd_deadlock
2025-02-24 7:23 [PATCH i-g-t] lib/amdgpu: ad support for page queues in amd_deadlock Jesse.zhang@amd.com
2025-02-24 19:32 ` vitaly prosyak
@ 2025-02-25 5:47 ` Patchwork
2025-02-25 6:07 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-02-25 5:47 UTC (permalink / raw)
To: Zhang, Jesse(Jie); +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 782 bytes --]
== Series Details ==
Series: lib/amdgpu: ad support for page queues in amd_deadlock
URL : https://patchwork.freedesktop.org/series/145297/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8247_BAT -> XEIGTPW_12654_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8247 -> IGTPW_12654
IGTPW_12654: 12654
IGT_8247: 8247
xe-2706-9f112b86fd27ff7de2ce09718596cfefd71ee41f: 9f112b86fd27ff7de2ce09718596cfefd71ee41f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/index.html
[-- Attachment #2: Type: text/html, Size: 1327 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for lib/amdgpu: ad support for page queues in amd_deadlock
2025-02-24 7:23 [PATCH i-g-t] lib/amdgpu: ad support for page queues in amd_deadlock Jesse.zhang@amd.com
2025-02-24 19:32 ` vitaly prosyak
2025-02-25 5:47 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2025-02-25 6:07 ` Patchwork
2025-02-25 8:04 ` ✗ i915.CI.Full: failure " Patchwork
2025-02-25 10:37 ` ✗ Xe.CI.Full: " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-02-25 6:07 UTC (permalink / raw)
To: Zhang, Jesse(Jie); +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1750 bytes --]
== Series Details ==
Series: lib/amdgpu: ad support for page queues in amd_deadlock
URL : https://patchwork.freedesktop.org/series/145297/
State : success
== Summary ==
CI Bug Log - changes from IGT_8247 -> IGTPW_12654
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/index.html
Participating hosts (43 -> 43)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_12654 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-twl-1: [INCOMPLETE][1] -> [PASS][2] +1 other test pass
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/bat-twl-1/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/bat-twl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][3] ([i915#12061]) -> [PASS][4] +1 other test pass
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8247 -> IGTPW_12654
CI-20190529: 20190529
CI_DRM_16175: 9f112b86fd27ff7de2ce09718596cfefd71ee41f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12654: 12654
IGT_8247: 8247
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/index.html
[-- Attachment #2: Type: text/html, Size: 2377 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for lib/amdgpu: ad support for page queues in amd_deadlock
2025-02-24 7:23 [PATCH i-g-t] lib/amdgpu: ad support for page queues in amd_deadlock Jesse.zhang@amd.com
` (2 preceding siblings ...)
2025-02-25 6:07 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-02-25 8:04 ` Patchwork
2025-02-25 10:37 ` ✗ Xe.CI.Full: " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-02-25 8:04 UTC (permalink / raw)
To: Zhang, Jesse(Jie); +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 147898 bytes --]
== Series Details ==
Series: lib/amdgpu: ad support for page queues in amd_deadlock
URL : https://patchwork.freedesktop.org/series/145297/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8247_full -> IGTPW_12654_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12654_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12654_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12654_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cdclk@mode-transition@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][1] +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-dp-3.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-dg1: [PASS][2] -> [FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-17/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-13/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a3:
- shard-dg1: NOTRUN -> [FAIL][4] +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-13/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-dp4:
- shard-dg2: NOTRUN -> [FAIL][5] +2 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-10/igt@kms_flip@wf_vblank-ts-check-interruptible@b-dp4.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a2:
- shard-rkl: [PASS][6] -> [FAIL][7] +1 other test fail
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-6/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a2.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a2.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [ABORT][8] ([i915#13427]) -> [INCOMPLETE][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@i915_fb_tiling@basic-x-tiling}:
- shard-mtlp: NOTRUN -> [SKIP][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-2/igt@i915_fb_tiling@basic-x-tiling.html
New tests
---------
New tests have been introduced between IGT_8247_full and IGTPW_12654_full:
### New IGT tests (31) ###
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-b-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-a-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-c-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-d-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-d-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.02] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-a-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-c-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_12654_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8411])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-2/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#11078])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@device_reset@cold-reset-bound.html
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#11078])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-1/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414]) +8 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-7/igt@drm_fdinfo@busy@vcs0.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-8/igt@drm_fdinfo@virtual-busy-all.html
* igt@drm_fdinfo@virtual-busy-idle-all:
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#8414])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-18/igt@drm_fdinfo@virtual-busy-idle-all.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#7697])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-8/igt@gem_basic@multigpu-create-close.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#4873]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-7/igt@gem_caching@writes.html
* igt@gem_ccs@block-copy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-6/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#9323]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: NOTRUN -> [INCOMPLETE][21] ([i915#13356])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-6/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][22] ([i915#12392] / [i915#13356])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#7697])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-1/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][24] ([i915#12353]) +1 other test incomplete
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk7/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_persistence@engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][25] ([i915#1099])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-snb2/igt@gem_ctx_persistence@engines-mixed-process.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8555])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][28] ([i915#8898])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-snb5/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-tglu: NOTRUN -> [SKIP][29] ([i915#4525])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-3/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#4525]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#6344])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_endless@dispatch@vcs1:
- shard-dg1: [PASS][32] -> [INCOMPLETE][33] ([i915#3778]) +1 other test incomplete
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-12/igt@gem_exec_endless@dispatch@vcs1.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-13/igt@gem_exec_endless@dispatch@vcs1.html
* igt@gem_exec_fence@submit3:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4812]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-8/igt@gem_exec_fence@submit3.html
- shard-dg2-9: NOTRUN -> [SKIP][35] ([i915#4812])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3711])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-8/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2-9: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-10/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#3281]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-14/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +7 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +5 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-4/igt@gem_exec_reloc@basic-gtt-wc.html
* igt@gem_exec_reloc@basic-range:
- shard-dg2-9: NOTRUN -> [SKIP][42] ([i915#3281]) +5 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#3281]) +4 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-3/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2-9: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4812]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-18/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_schedule@semaphore-power:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-8/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-11/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4860])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][50] ([i915#4613]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk3/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4613]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-3/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#12193])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-15/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-tglu: NOTRUN -> [SKIP][53] ([i915#4613]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4565])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-15/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][55] ([i915#4613]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_mmap_gtt@big-copy:
- shard-dg2-9: NOTRUN -> [SKIP][56] ([i915#4077]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@gem_mmap_gtt@big-copy.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4077]) +11 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-7/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2-9: NOTRUN -> [SKIP][58] ([i915#4083]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4083]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-10/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@copy:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4083]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-17/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@read-write:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-4/igt@gem_mmap_wc@read-write.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3282]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pread@display:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-7/igt@gem_pread@display.html
* igt@gem_pread@exhaustion:
- shard-tglu-1: NOTRUN -> [WARN][64] ([i915#2658]) +1 other test warn
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#3282])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-17/igt@gem_pwrite@basic-exhaustion.html
- shard-snb: NOTRUN -> [WARN][66] ([i915#2658])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-snb4/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-random:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#3282]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-4/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@create-regular-context-1:
- shard-rkl: NOTRUN -> [TIMEOUT][68] ([i915#12917] / [i915#12964])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-5/igt@gem_pxp@create-regular-context-1.html
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4270])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-13/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@create-valid-protected-context:
- shard-rkl: [PASS][70] -> [TIMEOUT][71] ([i915#12964])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-8/igt@gem_pxp@create-valid-protected-context.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-2/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#13398]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2-9: NOTRUN -> [SKIP][73] ([i915#4270])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#4270]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-3/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_readwrite@write-bad-handle:
- shard-dg2-9: NOTRUN -> [SKIP][75] ([i915#3282]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428]) +4 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-1/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#5190] / [i915#8428]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg2-9: NOTRUN -> [SKIP][79] ([i915#4885])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@noreloc:
- shard-rkl: [PASS][80] -> [DMESG-WARN][81] ([i915#12964]) +28 other tests dmesg-warn
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-2/igt@gem_softpin@noreloc.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-2/igt@gem_softpin@noreloc.html
* igt@gem_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4077]) +12 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-4/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4079])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-6/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3297]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2-9: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#3297]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#3297])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-7/igt@gem_userptr_blits@readonly-unsync.html
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#3297])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-3/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4958])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-8/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2-9: NOTRUN -> [SKIP][90] ([i915#3297])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@gem_userptr_blits@unsync-unmap.html
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-17/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@basic-rejected:
- shard-dg2-9: NOTRUN -> [SKIP][93] ([i915#2856]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][94] ([i915#2527] / [i915#2856]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#2527])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-3/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu-1: NOTRUN -> [SKIP][96] ([i915#2527] / [i915#2856]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#2856]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-5/igt@gen9_exec_parse@bb-start-far.html
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#2527]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-15/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@bb-start-param:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#2856]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-6/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_hangman@hangcheck-unterminated:
- shard-rkl: NOTRUN -> [DMESG-WARN][100] ([i915#12964]) +1 other test dmesg-warn
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-3/igt@i915_hangman@hangcheck-unterminated.html
* igt@i915_module_load@load:
- shard-dg1: ([PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125]) -> ([PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [DMESG-WARN][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [DMESG-WARN][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150]) ([i915#4423])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-14/igt@i915_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-18/igt@i915_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-12/igt@i915_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-18/igt@i915_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-13/igt@i915_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-12/igt@i915_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-12/igt@i915_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-13/igt@i915_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-18/igt@i915_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-15/igt@i915_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-19/igt@i915_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-19/igt@i915_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-19/igt@i915_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-15/igt@i915_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-14/igt@i915_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-16/igt@i915_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-15/igt@i915_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-13/igt@i915_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-15/igt@i915_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-14/igt@i915_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-16/igt@i915_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-17/igt@i915_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-17/igt@i915_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-17/igt@i915_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-16/igt@i915_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-18/igt@i915_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-19/igt@i915_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-16/igt@i915_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-13/igt@i915_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-19/igt@i915_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-19/igt@i915_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-16/igt@i915_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-12/igt@i915_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-14/igt@i915_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-17/igt@i915_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-17/igt@i915_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-15/igt@i915_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-13/igt@i915_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-16/igt@i915_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-12/igt@i915_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-17/igt@i915_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-19/igt@i915_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-15/igt@i915_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-18/igt@i915_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-12/igt@i915_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-14/igt@i915_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-17/igt@i915_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-18/igt@i915_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-15/igt@i915_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-13/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [PASS][151] -> [ABORT][152] ([i915#9820])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [PASS][153] -> [ABORT][154] ([i915#12817] / [i915#9820])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#8399]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-dg1: NOTRUN -> [SKIP][156] +10 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-13/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: NOTRUN -> [WARN][157] ([i915#2681]) +4 other tests warn
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][158] ([i915#12797])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk6/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@waitboost:
- shard-mtlp: NOTRUN -> [FAIL][159] ([i915#8346])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-6/igt@i915_pm_rps@waitboost.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#6188])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#5723])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#5723])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-15/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@gt_pm:
- shard-rkl: [PASS][163] -> [DMESG-FAIL][164] ([i915#13550]) +1 other test dmesg-fail
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-3/igt@i915_selftest@live@gt_pm.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-1/igt@i915_selftest@live@gt_pm.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][165] ([i915#4817])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk8/igt@i915_suspend@debugfs-reader.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#4212])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-2/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2-9: NOTRUN -> [SKIP][167] ([i915#4215] / [i915#5190])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#4212])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-7/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#12454] / [i915#12712])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#8709]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#8709]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#12967])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-1/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_async_flips@test-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#10333])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-5/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_atomic_transition@modeset-transition-nonblocking:
- shard-glk: [PASS][174] -> [FAIL][175] ([i915#12177])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk4/igt@kms_atomic_transition@modeset-transition-nonblocking.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking.html
* igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs:
- shard-glk: [PASS][176] -> [FAIL][177] ([i915#11859])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk4/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][178] ([i915#1769]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#5286]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#4538] / [i915#5286]) +4 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-13/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#5286]) +3 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#5286]) +7 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3638]) +2 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#3638]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-16/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][185] +27 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
- shard-dg2-9: NOTRUN -> [SKIP][186] +4 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#4538] / [i915#5190]) +7 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-8/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#4538])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-16/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg2-9: NOTRUN -> [SKIP][189] ([i915#4538] / [i915#5190]) +5 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#6187])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][191] ([i915#10307] / [i915#6095]) +24 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#4423] / [i915#6095]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-14/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#12313])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#6095]) +54 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#10307] / [i915#6095]) +140 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#6095]) +44 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#6095]) +78 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#12805])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#12805])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#6095]) +11 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-dp-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][201] ([i915#6095]) +4 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#12313]) +3 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][203] ([i915#12313])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#6095]) +59 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-7/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#12313]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#6095]) +144 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@mode-transition:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#3742]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-2/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#11151] / [i915#7828]) +6 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-3/igt@kms_chamelium_audio@dp-audio.html
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#11151] / [i915#7828]) +8 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-6/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#11151] / [i915#7828])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-18/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#11151] / [i915#7828])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#11151] / [i915#7828]) +4 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-7/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#11151] / [i915#7828]) +6 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-9: NOTRUN -> [SKIP][215] ([i915#11151] / [i915#7828]) +4 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_color@deep-color:
- shard-dg2: [PASS][216] -> [SKIP][217] ([i915#3555]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-11/igt@kms_color@deep-color.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-3/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-4/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-9: NOTRUN -> [SKIP][219] ([i915#7118] / [i915#9424])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3299]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#3299])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-8/igt@kms_content_protection@dp-mst-type-0.html
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#3116])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#3299])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-17/igt@kms_content_protection@dp-mst-type-0.html
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#3116] / [i915#3299])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-9/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#9424]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-4/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#7118] / [i915#9424])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-5/igt@kms_content_protection@type1.html
- shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#6944] / [i915#9424])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-1/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][229] ([i915#1339] / [i915#7173])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-3.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#3555]) +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#13049]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#13049]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#13049]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#13049])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-15/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2-9: NOTRUN -> [SKIP][235] ([i915#13049])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#13049])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-rkl: [PASS][237] -> [FAIL][238] ([i915#13566])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-128x42.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42.html
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#8814])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][240] -> [FAIL][241] ([i915#13566]) +1 other test fail
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][242] ([i915#13566]) +2 other tests fail
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8814]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-32x32.html
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#3555]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][245] +4 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-glk: [PASS][246] -> [FAIL][247] ([i915#13028])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-9: NOTRUN -> [SKIP][248] ([i915#4103] / [i915#4213])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#4213])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
- shard-dg1: [PASS][250] -> [DMESG-WARN][251] ([i915#4391] / [i915#4423])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-16/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-15/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipa-toggle:
- shard-rkl: [PASS][252] -> [DMESG-WARN][253] ([i915#12917] / [i915#12964])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-8/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-5/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2-9: NOTRUN -> [SKIP][254] ([i915#13046] / [i915#5354]) +3 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#13046] / [i915#5354]) +2 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#9809]) +2 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2-9: NOTRUN -> [SKIP][257] ([i915#9067])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][258] ([i915#2346])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk8/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#9833])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#9723])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-15/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#9723])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#9833])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#9723]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#8588])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-11/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#3804])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][266] ([i915#8812])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#3840])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#4854])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-2/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-9: NOTRUN -> [SKIP][269] ([i915#1839])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#1839])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-6/igt@kms_feature_discovery@display-4x.html
- shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#1839])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#658])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-5/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#3637]) +4 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#3637]) +3 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][275] ([i915#9934]) +2 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#8381])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#9934])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#9934])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-17/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#9934]) +4 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#3637]) +5 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1:
- shard-glk: NOTRUN -> [FAIL][281] ([i915#13027]) +1 other test fail
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-glk: NOTRUN -> [FAIL][282] ([i915#13734]) +2 other tests fail
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk4/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-rkl: [PASS][283] -> [FAIL][284] ([i915#11832] / [i915#13743])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-6/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8810] / [i915#8813])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8810])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#2672] / [i915#3555]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-9: NOTRUN -> [SKIP][288] ([i915#2672] / [i915#3555])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#2672] / [i915#8813]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][290] ([i915#2672])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#2672] / [i915#3555])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#2672])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#2587] / [i915#2672]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#2587] / [i915#2672]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#2672] / [i915#3555]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#2672]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#2672] / [i915#3555]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
- shard-dg2: [PASS][299] -> [FAIL][300] ([i915#6880]) +1 other test fail
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#1825]) +42 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#1825]) +11 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][303] ([i915#8708]) +5 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][304] ([i915#10056] / [i915#13353])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk3/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][305] ([i915#10055])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#3023]) +9 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#8708]) +4 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#3458]) +3 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
- shard-tglu-1: NOTRUN -> [SKIP][309] +56 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][310] +72 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][311] ([i915#5439])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
- shard-dg2-9: NOTRUN -> [SKIP][312] ([i915#3458]) +6 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#3458]) +10 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#8708]) +14 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#5354]) +15 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-9: NOTRUN -> [SKIP][316] ([i915#5354]) +11 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#8708]) +11 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#3555] / [i915#8228]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-7/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-mtlp: NOTRUN -> [SKIP][319] ([i915#3555] / [i915#8228])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-8/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#3555] / [i915#8228])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#3555] / [i915#8228]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-3/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@clock-too-high:
- shard-mtlp: NOTRUN -> [SKIP][322] ([i915#3555] / [i915#6403] / [i915#8826])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-6/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][323] ([i915#9457]) +3 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-6/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#10656])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-2/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: [PASS][325] -> [SKIP][326] ([i915#12388])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][327] ([i915#12339])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#12339])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#4816])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][330] ([i915#6301])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#6301])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-5/igt@kms_panel_fitting@legacy.html
- shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#6301])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@planar-pixel-format-settings:
- shard-dg1: [PASS][333] -> [DMESG-WARN][334] ([i915#4423]) +4 other tests dmesg-warn
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-13/igt@kms_plane@planar-pixel-format-settings.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-14/igt@kms_plane@planar-pixel-format-settings.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][335] ([i915#10647] / [i915#12169]) +1 other test fail
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk9/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][336] ([i915#10647]) +3 other tests fail
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk2/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-x:
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#11614] / [i915#3582]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-7/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][338] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-7/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2-9: NOTRUN -> [SKIP][339] ([i915#3555] / [i915#8821])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#3555]) +5 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2-9: NOTRUN -> [SKIP][341] ([i915#13046] / [i915#5354] / [i915#9423])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: [PASS][342] -> [SKIP][343] ([i915#6953] / [i915#9423])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-4/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#12247] / [i915#9423]) +2 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][345] ([i915#12247]) +12 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- shard-rkl: NOTRUN -> [SKIP][346] ([i915#12247]) +1 other test skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#12247]) +11 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-tglu: NOTRUN -> [SKIP][348] ([i915#12247] / [i915#3555])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-mtlp: NOTRUN -> [SKIP][349] ([i915#12247] / [i915#3555])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][350] ([i915#12247]) +20 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-mtlp: NOTRUN -> [SKIP][351] ([i915#12247] / [i915#6953]) +1 other test skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][352] ([i915#12247] / [i915#3555] / [i915#6953])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][353] ([i915#12343])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-3/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#9812]) +1 other test skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-9: NOTRUN -> [SKIP][355] ([i915#9685])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2: NOTRUN -> [SKIP][356] ([i915#3828])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][357] ([i915#5978])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][358] ([i915#9685])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-11/igt@kms_pm_dc@dc6-psr.html
- shard-rkl: NOTRUN -> [SKIP][359] ([i915#9685])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-1/igt@kms_pm_dc@dc6-psr.html
- shard-dg1: NOTRUN -> [SKIP][360] ([i915#9685])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-14/igt@kms_pm_dc@dc6-psr.html
- shard-tglu: NOTRUN -> [SKIP][361] ([i915#9685])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-8/igt@kms_pm_dc@dc6-psr.html
- shard-mtlp: NOTRUN -> [FAIL][362] ([i915#12912])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#4281])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-tglu: NOTRUN -> [SKIP][364] ([i915#3828])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-mtlp: NOTRUN -> [SKIP][365] ([i915#8430])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-3/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][366] ([i915#9519])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-rkl: [PASS][367] -> [SKIP][368] ([i915#12916])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-8/igt@kms_pm_rpm@drm-resources-equal.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-3/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2-9: NOTRUN -> [SKIP][369] ([i915#9519])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][370] ([i915#9519])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][371] -> [SKIP][372] ([i915#9519]) +1 other test skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu: NOTRUN -> [SKIP][373] ([i915#9519]) +1 other test skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-mtlp: NOTRUN -> [SKIP][374] ([i915#9519]) +2 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@pc8-residency:
- shard-dg1: NOTRUN -> [SKIP][375] ([i915#12916] / [i915#4423])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-14/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_pm_rpm@pm-caching:
- shard-dg1: NOTRUN -> [SKIP][376] ([i915#4077]) +5 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-13/igt@kms_pm_rpm@pm-caching.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2-9: NOTRUN -> [SKIP][377] ([i915#6524] / [i915#6805])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][378] ([i915#6524])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-4/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][379] ([i915#11520]) +10 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-snb: NOTRUN -> [SKIP][380] ([i915#11520]) +3 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-snb6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][381] ([i915#9808])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][382] ([i915#11520]) +5 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
- shard-rkl: NOTRUN -> [SKIP][383] ([i915#11520]) +3 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
- shard-dg1: NOTRUN -> [SKIP][384] ([i915#11520]) +3 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-15/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][385] ([i915#12316]) +5 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-8/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-dg2-9: NOTRUN -> [SKIP][386] ([i915#11520]) +2 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][387] ([i915#11520]) +6 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][388] ([i915#11520]) +9 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg1: NOTRUN -> [SKIP][389] ([i915#9683])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-19/igt@kms_psr2_su@page_flip-p010.html
- shard-mtlp: NOTRUN -> [SKIP][390] ([i915#4348])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-1/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][391] ([i915#1072] / [i915#9732]) +6 other tests skip
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-2/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
- shard-dg1: NOTRUN -> [SKIP][392] ([i915#1072] / [i915#9732]) +3 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-12/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][393] ([i915#9732]) +20 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-8/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-suspend:
- shard-dg2-9: NOTRUN -> [SKIP][394] ([i915#1072] / [i915#9732]) +9 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_psr@fbc-psr2-suspend.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-mtlp: NOTRUN -> [SKIP][395] ([i915#9688]) +16 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-7/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][396] ([i915#9732]) +13 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-no-drrs:
- shard-glk: NOTRUN -> [SKIP][397] +351 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk4/igt@kms_psr@psr-no-drrs.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][398] ([i915#1072] / [i915#9732]) +12 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-10/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2-9: NOTRUN -> [SKIP][399] ([i915#4235])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][400] ([i915#5289])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2-9: NOTRUN -> [SKIP][401] ([i915#12755]) +1 other test skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][402] ([i915#12755]) +4 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-3/igt@kms_rotation_crc@primary-rotation-90.html
- shard-dg2: NOTRUN -> [SKIP][403] ([i915#12755])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-9: NOTRUN -> [SKIP][404] ([i915#5190])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][405] ([i915#5190])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][406] ([i915#5289])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-mtlp: NOTRUN -> [SKIP][407] ([i915#5289]) +1 other test skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-tglu: NOTRUN -> [SKIP][408] ([i915#5289])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][409] ([i915#3555]) +5 other tests skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_selftest@drm_framebuffer:
- shard-glk: NOTRUN -> [ABORT][410] ([i915#13179]) +1 other test abort
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk9/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-rkl: NOTRUN -> [SKIP][411] ([i915#3555]) +3 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-5/igt@kms_setmode@basic-clone-single-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][412] ([i915#3555] / [i915#8809]) +1 other test skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-5/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][413] ([i915#3555] / [i915#8809] / [i915#8823])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][414] ([i915#8623])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][415] ([i915#12276]) +1 other test incomplete
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-9: NOTRUN -> [SKIP][416] ([i915#3555]) +1 other test skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@max-min:
- shard-mtlp: NOTRUN -> [SKIP][417] ([i915#8808] / [i915#9906])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-6/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][418] ([i915#3555] / [i915#9906])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-4/igt@kms_vrr@negative-basic.html
- shard-rkl: NOTRUN -> [SKIP][419] ([i915#3555] / [i915#9906])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-7/igt@kms_vrr@negative-basic.html
- shard-dg1: NOTRUN -> [SKIP][420] ([i915#3555] / [i915#9906])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-19/igt@kms_vrr@negative-basic.html
- shard-tglu: NOTRUN -> [SKIP][421] ([i915#3555] / [i915#9906])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-8/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-check-output:
- shard-glk: NOTRUN -> [SKIP][422] ([i915#2437])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk9/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][423] ([i915#2437] / [i915#9412])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-10/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-tglu-1: NOTRUN -> [SKIP][424] ([i915#2437] / [i915#9412])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2: NOTRUN -> [SKIP][425] ([i915#2437])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-11/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-tglu: NOTRUN -> [SKIP][426] ([i915#2437])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-9/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg2: NOTRUN -> [SKIP][427] +6 other tests skip
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-10/igt@perf@per-context-mode-unprivileged.html
- shard-rkl: NOTRUN -> [SKIP][428] ([i915#2435])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html
- shard-dg1: NOTRUN -> [SKIP][429] ([i915#2433])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-accuracy-98:
- shard-snb: NOTRUN -> [SKIP][430] +115 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-snb7/igt@perf_pmu@busy-accuracy-98.html
* igt@perf_pmu@busy-double-start:
- shard-glk: NOTRUN -> [DMESG-WARN][431] ([i915#118]) +1 other test dmesg-warn
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk6/igt@perf_pmu@busy-double-start.html
* igt@perf_pmu@invalid-init:
- shard-dg2: NOTRUN -> [FAIL][432] ([i915#13663])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-8/igt@perf_pmu@invalid-init.html
- shard-rkl: NOTRUN -> [FAIL][433] ([i915#13663])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-7/igt@perf_pmu@invalid-init.html
- shard-dg1: NOTRUN -> [FAIL][434] ([i915#13663])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-19/igt@perf_pmu@invalid-init.html
- shard-snb: NOTRUN -> [FAIL][435] ([i915#13663])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-snb7/igt@perf_pmu@invalid-init.html
- shard-tglu: NOTRUN -> [FAIL][436] ([i915#13663])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-3/igt@perf_pmu@invalid-init.html
- shard-mtlp: NOTRUN -> [FAIL][437] ([i915#13663])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-3/igt@perf_pmu@invalid-init.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2-9: NOTRUN -> [SKIP][438] ([i915#8516])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-tglu-1: NOTRUN -> [SKIP][439] ([i915#8516])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-1/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@perf_pmu@render-node-busy-idle@vcs1:
- shard-dg2: [PASS][440] -> [FAIL][441] ([i915#4349]) +5 other tests fail
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-6/igt@perf_pmu@render-node-busy-idle@vcs1.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-8/igt@perf_pmu@render-node-busy-idle@vcs1.html
* igt@perf_pmu@semaphore-busy@vcs1:
- shard-mtlp: [PASS][442] -> [FAIL][443] ([i915#4349]) +3 other tests fail
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-mtlp-4/igt@perf_pmu@semaphore-busy@vcs1.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-7/igt@perf_pmu@semaphore-busy@vcs1.html
* igt@prime_vgem@basic-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][444] ([i915#3708] / [i915#4077])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-9/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][445] ([i915#3708]) +1 other test skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-6/igt@prime_vgem@basic-read.html
- shard-dg2: NOTRUN -> [SKIP][446] ([i915#3291] / [i915#3708])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-11/igt@prime_vgem@basic-read.html
- shard-dg1: NOTRUN -> [SKIP][447] ([i915#3708])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-14/igt@prime_vgem@basic-read.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [FAIL][448] ([i915#12910]) +9 other tests fail
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-3/igt@sriov_basic@bind-unbind-vf@vf-4.html
* igt@sriov_basic@bind-unbind-vf@vf-5:
- shard-mtlp: NOTRUN -> [FAIL][449] ([i915#12910]) +9 other tests fail
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-6/igt@sriov_basic@bind-unbind-vf@vf-5.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg2: NOTRUN -> [SKIP][450] ([i915#9917]) +1 other test skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@sysfs_heartbeat_interval@nopreempt:
- shard-mtlp: [PASS][451] -> [ABORT][452] ([i915#13193]) +3 other tests abort
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-mtlp-1/igt@sysfs_heartbeat_interval@nopreempt.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt.html
* igt@sysfs_heartbeat_interval@nopreempt@vcs0:
- shard-mtlp: [PASS][453] -> [DMESG-WARN][454] ([i915#13723]) +1 other test dmesg-warn
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-mtlp-1/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
#### Possible fixes ####
* igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox:
- shard-mtlp: [ABORT][455] ([i915#13193]) -> [PASS][456] +4 other tests pass
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-mtlp-7/igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-2/igt@gem_ctx_persistence@legacy-engines-mixed-process@vebox.html
* igt@gem_eio@kms:
- shard-rkl: [DMESG-WARN][457] ([i915#13363]) -> [PASS][458]
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-8/igt@gem_eio@kms.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-5/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][459] ([i915#12543] / [i915#5784]) -> [PASS][460]
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-19/igt@gem_eio@reset-stress.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-12/igt@gem_eio@reset-stress.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][461] ([i915#11713]) -> [PASS][462]
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-tglu-5/igt@gem_exec_big@single.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-9/igt@gem_exec_big@single.html
* igt@gem_exec_schedule@noreorder-corked@vecs0:
- shard-rkl: [DMESG-WARN][463] ([i915#12964]) -> [PASS][464] +33 other tests pass
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-5/igt@gem_exec_schedule@noreorder-corked@vecs0.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-5/igt@gem_exec_schedule@noreorder-corked@vecs0.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: [TIMEOUT][465] ([i915#12917] / [i915#12964]) -> [PASS][466] +2 other tests pass
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: [INCOMPLETE][467] -> [PASS][468]
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk8/igt@gem_softpin@noreloc-s3.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk9/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_swapping@non-threaded:
- shard-tglu: [FAIL][469] ([i915#12941]) -> [PASS][470]
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-tglu-6/igt@gem_tiled_swapping@non-threaded.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-6/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_workarounds@suspend-resume:
- shard-glk: [INCOMPLETE][471] ([i915#13356]) -> [PASS][472]
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk6/igt@gem_workarounds@suspend-resume.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk2/igt@gem_workarounds@suspend-resume.html
* igt@i915_module_load@load:
- shard-glk: ([PASS][473], [PASS][474], [PASS][475], [PASS][476], [PASS][477], [PASS][478], [PASS][479], [PASS][480], [PASS][481], [PASS][482], [PASS][483], [PASS][484], [PASS][485], [PASS][486], [PASS][487], [PASS][488], [PASS][489], [PASS][490], [DMESG-WARN][491], [PASS][492], [PASS][493], [PASS][494], [PASS][495]) ([i915#118]) -> ([PASS][496], [PASS][497], [PASS][498], [PASS][499], [PASS][500], [PASS][501], [PASS][502], [PASS][503], [PASS][504], [PASS][505], [PASS][506], [PASS][507], [PASS][508], [PASS][509], [PASS][510], [PASS][511], [PASS][512], [PASS][513])
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk1/igt@i915_module_load@load.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk8/igt@i915_module_load@load.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk4/igt@i915_module_load@load.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk6/igt@i915_module_load@load.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk1/igt@i915_module_load@load.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk8/igt@i915_module_load@load.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk9/igt@i915_module_load@load.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk3/igt@i915_module_load@load.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk1/igt@i915_module_load@load.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk7/igt@i915_module_load@load.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk6/igt@i915_module_load@load.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk1/igt@i915_module_load@load.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk9/igt@i915_module_load@load.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk4/igt@i915_module_load@load.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk2/igt@i915_module_load@load.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk3/igt@i915_module_load@load.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk9/igt@i915_module_load@load.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk7/igt@i915_module_load@load.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk7/igt@i915_module_load@load.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk4/igt@i915_module_load@load.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk2/igt@i915_module_load@load.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk7/igt@i915_module_load@load.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk2/igt@i915_module_load@load.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk4/igt@i915_module_load@load.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk3/igt@i915_module_load@load.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk7/igt@i915_module_load@load.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk2/igt@i915_module_load@load.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk6/igt@i915_module_load@load.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk9/igt@i915_module_load@load.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk3/igt@i915_module_load@load.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk8/igt@i915_module_load@load.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk4/igt@i915_module_load@load.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk8/igt@i915_module_load@load.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk2/igt@i915_module_load@load.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk9/igt@i915_module_load@load.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk6/igt@i915_module_load@load.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk1/igt@i915_module_load@load.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk9/igt@i915_module_load@load.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk3/igt@i915_module_load@load.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk4/igt@i915_module_load@load.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk8/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [ABORT][514] ([i915#9820]) -> [PASS][515]
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][516] ([i915#10131] / [i915#9820]) -> [PASS][517]
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-dg2: [INCOMPLETE][518] ([i915#12796]) -> [PASS][519] +1 other test pass
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [DMESG-FAIL][520] ([i915#12964]) -> [PASS][521] +4 other tests pass
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: [FAIL][522] ([i915#13566]) -> [PASS][523] +1 other test pass
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
- shard-glk: [FAIL][524] ([i915#2346]) -> [PASS][525]
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk8/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk3/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
* igt@kms_cursor_legacy@forked-move:
- shard-snb: [INCOMPLETE][526] -> [PASS][527] +1 other test pass
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-snb2/igt@kms_cursor_legacy@forked-move.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-snb1/igt@kms_cursor_legacy@forked-move.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-snb: [FAIL][528] ([i915#13690]) -> [PASS][529]
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-snb7/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-snb2/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-tglu: [FAIL][530] ([i915#13743]) -> [PASS][531] +1 other test pass
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-tglu-9/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a4:
- shard-dg1: [FAIL][532] ([i915#13027]) -> [PASS][533] +1 other test pass
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-16/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a4.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-19/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a4.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-snb: [INCOMPLETE][534] ([i915#12314]) -> [PASS][535] +1 other test pass
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-snb6/igt@kms_flip@plain-flip-fb-recreate.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-snb1/igt@kms_flip@plain-flip-fb-recreate.html
- shard-tglu: [FAIL][536] ([i915#13690]) -> [PASS][537] +1 other test pass
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-tglu-8/igt@kms_flip@plain-flip-fb-recreate.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-2/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip@plain-flip-fb-recreate@a-vga1:
- shard-snb: [FAIL][538] -> [PASS][539] +1 other test pass
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-snb6/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-snb1/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: [FAIL][540] ([i915#6880]) -> [PASS][541] +1 other test pass
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][542] ([i915#9295]) -> [PASS][543]
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [SKIP][544] ([i915#9340]) -> [PASS][545]
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-2/igt@kms_pm_lpsp@kms-lpsp.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@cursor:
- shard-rkl: [SKIP][546] ([i915#12916]) -> [PASS][547]
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-1/igt@kms_pm_rpm@cursor.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-5/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [SKIP][548] ([i915#9519]) -> [PASS][549]
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
- shard-rkl: [SKIP][550] ([i915#9519]) -> [PASS][551] +1 other test pass
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
* igt@perf_pmu@busy-hang@ccs0:
- shard-mtlp: [DMESG-WARN][552] ([i915#13723]) -> [PASS][553] +1 other test pass
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-mtlp-7/igt@perf_pmu@busy-hang@ccs0.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-4/igt@perf_pmu@busy-hang@ccs0.html
* igt@perf_pmu@most-busy-check-all:
- shard-rkl: [FAIL][554] ([i915#4349]) -> [PASS][555] +1 other test pass
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-8/igt@perf_pmu@most-busy-check-all.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-3/igt@perf_pmu@most-busy-check-all.html
#### Warnings ####
* igt@gem_lmem_swapping@smem-oom:
- shard-dg1: [WARN][556] -> [TIMEOUT][557] ([i915#5493])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-14/igt@gem_lmem_swapping@smem-oom.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-18/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [CRASH][558] ([i915#5493]) -> [TIMEOUT][559] ([i915#5493])
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@kms_content_protection@legacy:
- shard-dg2: [FAIL][560] ([i915#7173]) -> [SKIP][561] ([i915#7118] / [i915#9424])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-11/igt@kms_content_protection@legacy.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][562] ([i915#9433]) -> [SKIP][563] ([i915#9424])
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-12/igt@kms_content_protection@mei-interface.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-19/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: [FAIL][564] ([i915#7173]) -> [SKIP][565] ([i915#7118])
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-10/igt@kms_content_protection@srm.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-7/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][566] ([i915#7118] / [i915#9424]) -> [SKIP][567] ([i915#7118] / [i915#7162] / [i915#9424])
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-7/igt@kms_content_protection@type1.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-10/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2: [SKIP][568] ([i915#7118] / [i915#9424]) -> [FAIL][569] ([i915#1339] / [i915#7173])
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-1/igt@kms_content_protection@uevent.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-11/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-rkl: [DMESG-WARN][570] ([i915#12917] / [i915#12964]) -> [FAIL][571] ([i915#13566])
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][572] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][573] ([i915#12314] / [i915#12745] / [i915#4839])
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk3/igt@kms_flip@2x-flip-vs-suspend.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk8/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][574] ([i915#4839]) -> [INCOMPLETE][575] ([i915#12314] / [i915#4839])
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-glk3/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-glk8/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@flip-vs-fences:
- shard-dg1: [SKIP][576] ([i915#8381]) -> [SKIP][577] ([i915#4423] / [i915#8381])
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-15/igt@kms_flip@flip-vs-fences.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-14/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-dg2: [FAIL][578] ([i915#11832] / [i915#13743]) -> [FAIL][579] ([i915#13743])
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-3/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-10/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg1: [SKIP][580] ([i915#2587] / [i915#2672] / [i915#3555]) -> [SKIP][581] ([i915#2587] / [i915#2672] / [i915#3555] / [i915#4423])
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-dg1: [SKIP][582] ([i915#2587] / [i915#2672]) -> [SKIP][583] ([i915#2587] / [i915#2672] / [i915#4423])
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-dg1: [SKIP][584] -> [SKIP][585] ([i915#4423]) +2 other tests skip
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg1: [SKIP][586] ([i915#4423]) -> [SKIP][587] +1 other test skip
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-dg1: [SKIP][588] ([i915#8708]) -> [SKIP][589] ([i915#4423] / [i915#8708]) +1 other test skip
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][590] ([i915#3458]) -> [SKIP][591] ([i915#10433] / [i915#3458]) +1 other test skip
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu:
- shard-dg2: [SKIP][592] ([i915#10433] / [i915#3458]) -> [SKIP][593] ([i915#3458])
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][594] ([i915#12713]) -> [SKIP][595] ([i915#1187] / [i915#12713])
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-mtlp-7/igt@kms_hdr@brightness-with-hdr.html
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][596] ([i915#4070] / [i915#4816]) -> [SKIP][597] ([i915#4816])
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [FAIL][598] ([i915#9295]) -> [SKIP][599] ([i915#3361])
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [DMESG-WARN][600] ([i915#12964]) -> [SKIP][601] ([i915#9519])
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr@fbc-pr-basic:
- shard-dg1: [SKIP][602] ([i915#1072] / [i915#9732]) -> [SKIP][603] ([i915#1072] / [i915#4423] / [i915#9732])
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8247/shard-dg1-14/igt@kms_psr@fbc-pr-basic.html
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/shard-dg1-13/igt@kms_psr@fbc-pr-basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832
[i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12912]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12912
[i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12941]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13028]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13028
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193
[i915#13353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13353
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427
[i915#13550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13550
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13663]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13663
[i915#13690]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13690
[i915#13723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13723
[i915#13734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734
[i915#13743]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13743
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3711
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6403
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8346
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9457]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9457
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8247 -> IGTPW_12654
CI-20190529: 20190529
CI_DRM_16175: 9f112b86fd27ff7de2ce09718596cfefd71ee41f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12654: 12654
IGT_8247: 8247
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12654/index.html
[-- Attachment #2: Type: text/html, Size: 187429 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.Full: failure for lib/amdgpu: ad support for page queues in amd_deadlock
2025-02-24 7:23 [PATCH i-g-t] lib/amdgpu: ad support for page queues in amd_deadlock Jesse.zhang@amd.com
` (3 preceding siblings ...)
2025-02-25 8:04 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-02-25 10:37 ` Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-02-25 10:37 UTC (permalink / raw)
To: Jesse.zhang@amd.com; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 75892 bytes --]
== Series Details ==
Series: lib/amdgpu: ad support for page queues in amd_deadlock
URL : https://patchwork.freedesktop.org/series/145297/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8247_full -> XEIGTPW_12654_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12654_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12654_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_12654_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][1] +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-6/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][2] +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-433/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_flip@wf_vblank-ts-check@b-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-434/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a6.html
* igt@kms_plane_lowres@tiling-x:
- shard-dg2-set2: [PASS][4] -> [DMESG-WARN][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-436/igt@kms_plane_lowres@tiling-x.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@kms_plane_lowres@tiling-x.html
#### Warnings ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [DMESG-WARN][6] ([Intel XE#4330]) -> [DMESG-WARN][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-dg2-set2: [ABORT][8] ([Intel XE#4268]) -> [ABORT][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-432/igt@xe_pm@s4-d3hot-basic-exec.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-433/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@s4-exec-after:
- shard-dg2-set2: [ABORT][10] ([Intel XE#4268]) -> [INCOMPLETE][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-434/igt@xe_pm@s4-exec-after.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-466/igt@xe_pm@s4-exec-after.html
New tests
---------
New tests have been introduced between XEIGT_8247_full and XEIGTPW_12654_full:
### New IGT tests (2) ###
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [1.49] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [4.60] s
Known issues
------------
Here are the changes found in XEIGTPW_12654_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#3658])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2327]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-270.html
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#316]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-436/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1407]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-4/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +9 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +8 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +8 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2191])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#367]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#367]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#367])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-3/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1512])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-7/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +13 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +36 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [PASS][27] -> [DMESG-WARN][28] ([Intel XE#4330]) +63 other tests dmesg-warn
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#3432]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#3432]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2887]) +12 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#787]) +174 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_cdclk@mode-transition:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2724])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#306])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-433/igt@kms_chamelium_color@ctm-limited-range.html
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#306]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-4/igt@kms_chamelium_color@ctm-limited-range.html
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2325])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2252]) +6 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#373]) +9 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#373]) +7 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-1/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][40] ([Intel XE#4330]) +1 other test dmesg-fail
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-435/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2390])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#307])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-436/igt@kms_content_protection@dp-mst-type-1.html
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#307])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][44] ([Intel XE#4132]) +1 other test incomplete
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-435/igt@kms_content_protection@legacy.html
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#3278])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-3/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][46] ([Intel XE#1178])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-1/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
- shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#1178])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1424]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-5/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2320]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#308]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2321])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#2321]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#309]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-7/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#323])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#323])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2286])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2291]) +6 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#1508])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#1340])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2244]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#2244]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-3/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#1138])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_feature_discovery@display-4x.html
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1138])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-466/igt@kms_feature_discovery@display-4x.html
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1138])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-6/igt@kms_feature_discovery@display-4x.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_12654/shard-lnl-8/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-dg2-set2: [PASS][68] -> [DMESG-WARN][69] ([Intel XE#2955]) +3 other tests dmesg-warn
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-434/igt@kms_flip@2x-dpms-vs-vblank-race.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-435/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2316])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#2316]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-7/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-4/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1421]) +4 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-dg2-set2: [PASS][74] -> [FAIL][75] ([Intel XE#2882])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-434/igt@kms_flip@2x-plain-flip-ts-check.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-dg2-set2: [PASS][76] -> [INCOMPLETE][77] ([Intel XE#2049])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-432/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-435/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ac-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][78] ([Intel XE#2049])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-435/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ac-hdmi-a6-dp4.html
* igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a2-dp2:
- shard-dg2-set2: NOTRUN -> [FAIL][79] ([Intel XE#886]) +2 other tests fail
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a2-dp2.html
* igt@kms_flip@basic-flip-vs-dpms:
- shard-bmg: NOTRUN -> [DMESG-WARN][80] ([Intel XE#2955])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-1/igt@kms_flip@basic-flip-vs-dpms.html
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][81] ([Intel XE#2955]) +1 other test dmesg-warn
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-435/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [FAIL][82] ([Intel XE#301]) +1 other test fail
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [PASS][83] -> [DMESG-WARN][84] ([Intel XE#2955]) +3 other tests dmesg-warn
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-6/igt@kms_flip@flip-vs-suspend.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-1/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:
- shard-lnl: [PASS][85] -> [FAIL][86] ([Intel XE#886]) +4 other tests fail
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@d-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-WARN][87] ([Intel XE#4330]) +24 other tests dmesg-warn
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-3/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@d-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check@a-dp2:
- shard-bmg: NOTRUN -> [FAIL][88] ([Intel XE#2882])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check@a-dp2.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1397]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2293] / [Intel XE#2380])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2293])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1401]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#455]) +13 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#352])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-8/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2311]) +13 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#651]) +24 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#4141]) +7 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#656]) +34 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2312]) +11 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#658])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1469])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2352])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#651]) +10 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2313]) +17 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#653]) +26 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#3374] / [Intel XE#3544])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-7/igt@kms_hdr@brightness-with-hdr.html
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#3374] / [Intel XE#3544])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#1503])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-swap:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1503])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-5/igt@kms_hdr@static-swap.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#346])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-3/igt@kms_joiner@basic-big-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#346])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-433/igt@kms_joiner@basic-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#346])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-3/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2934])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2925])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#2934])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-8/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#4329])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane_lowres@tiling-x:
- shard-bmg: [PASS][119] -> [DMESG-WARN][120] ([Intel XE#4091]) +1 other test dmesg-warn
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-6/igt@kms_plane_lowres@tiling-x.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2393])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_plane_lowres@tiling-yf.html
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#599])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-6/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#2493])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-3/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2493]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-dg2-set2: [PASS][125] -> [DMESG-WARN][126] ([Intel XE#2566] / [Intel XE#4330]) +1 other test dmesg-warn
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d:
- shard-bmg: [PASS][127] -> [DMESG-WARN][128] ([Intel XE#2566] / [Intel XE#4330]) +3 other tests dmesg-warn
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#2763]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2763]) +4 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2763]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2938])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-435/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#3309])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-466/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#908])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2499])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1439] / [Intel XE#3141])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][138] ([Intel XE#2042] / [Intel XE#4330])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-435/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#1489]) +5 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#1489]) +5 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-433/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#2893]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#1128])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2234] / [Intel XE#2850]) +11 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-434/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_psr@pr-sprite-blt:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#1406]) +7 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-4/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2414]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2939]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#3414]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@kms_rotation_crc@bad-tiling.html
- shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-8/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2413])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#1435])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][153] -> [FAIL][154] ([Intel XE#2883]) +1 other test fail
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-434/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-434/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][155] -> [FAIL][156] ([Intel XE#2883]) +2 other tests fail
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#330])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [PASS][158] -> [FAIL][159] ([Intel XE#899])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][160] -> [FAIL][161] ([Intel XE#2142]) +1 other test fail
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#1499])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#756])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-3/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#756])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-3/igt@kms_writeback@writeback-invalid-parameters.html
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#756])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@kms_writeback@writeback-invalid-parameters.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#1091] / [Intel XE#2849])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#1091] / [Intel XE#2849])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_eudebug@basic-vm-bind-extended-discovery:
- shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#2905]) +9 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-4/igt@xe_eudebug@basic-vm-bind-extended-discovery.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#3889]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
- shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#3889])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-5/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#3889])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_eudebug@discovery-empty:
- shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#2905]) +9 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@xe_eudebug@discovery-empty.html
* igt@xe_eudebug@sysfs-toggle:
- shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#2905]) +11 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@xe_eudebug@sysfs-toggle.html
* igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen:
- shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#688]) +4 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-7/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen.html
* igt@xe_exec_basic@many-execqueues-many-vm-basic:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][175] ([Intel XE#4330]) +35 other tests dmesg-warn
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@xe_exec_basic@many-execqueues-many-vm-basic.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-dg2-set2: NOTRUN -> [SKIP][176] ([Intel XE#1392]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
- shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#1392]) +7 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#2322]) +7 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-3/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-dg2-set2: [PASS][179] -> [SKIP][180] ([Intel XE#1392]) +5 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-436/igt@xe_exec_basic@multigpu-once-null-rebind.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][181] ([Intel XE#288]) +24 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-433/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#2360])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0:
- shard-bmg: [PASS][183] -> [DMESG-WARN][184] ([Intel XE#4330]) +42 other tests dmesg-warn
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-4/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-4/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#2229])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#2229])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-8/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@pci-membarrier:
- shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#4045])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-6/igt@xe_mmap@pci-membarrier.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: NOTRUN -> [SKIP][188] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-434/igt@xe_oa@polling-small-buf.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][189] ([Intel XE#977])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][190] ([Intel XE#2236])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-1/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#2284])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@xe_pm@s2idle-d3cold-basic-exec.html
- shard-dg2-set2: NOTRUN -> [SKIP][192] ([Intel XE#2284] / [Intel XE#366])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-436/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-multiple-execs:
- shard-lnl: NOTRUN -> [SKIP][193] ([Intel XE#584]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-3/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-bmg: [PASS][194] -> [DMESG-WARN][195] ([Intel XE#4330] / [Intel XE#569]) +1 other test dmesg-warn
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@xe_pm@s3-vm-bind-userptr.html
- shard-dg2-set2: [PASS][196] -> [DMESG-WARN][197] ([Intel XE#4330] / [Intel XE#569]) +1 other test dmesg-warn
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-436/igt@xe_pm@s3-vm-bind-userptr.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-435/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-basic-exec:
- shard-lnl: NOTRUN -> [ABORT][198] ([Intel XE#4268])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-8/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-bmg: NOTRUN -> [ABORT][199] ([Intel XE#4268]) +1 other test abort
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-3/igt@xe_pm@s4-vm-bind-unbind-all.html
- shard-dg2-set2: NOTRUN -> [ABORT][200] ([Intel XE#4268]) +2 other tests abort
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-466/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][201] ([Intel XE#579])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-433/igt@xe_pm@vram-d3cold-threshold.html
- shard-lnl: NOTRUN -> [SKIP][202] ([Intel XE#579])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-6/igt@xe_pm@vram-d3cold-threshold.html
- shard-bmg: NOTRUN -> [SKIP][203] ([Intel XE#579])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: NOTRUN -> [SKIP][204] ([Intel XE#944]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-434/igt@xe_query@multigpu-query-engines.html
- shard-bmg: NOTRUN -> [SKIP][205] ([Intel XE#944])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-4/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#944]) +2 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-3/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-lnl: NOTRUN -> [SKIP][207] ([Intel XE#4130])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-6/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: NOTRUN -> [SKIP][208] ([Intel XE#3342])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-433/igt@xe_sriov_flr@flr-each-isolation.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4:
- shard-dg2-set2: [DMESG-FAIL][209] ([Intel XE#4330]) -> [PASS][210] +1 other test pass
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-466/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-433/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][211] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][212]
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][213] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][214] +1 other test pass
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_color@ctm-0-50:
- shard-bmg: [DMESG-WARN][215] ([Intel XE#877]) -> [PASS][216]
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-3/igt@kms_color@ctm-0-50.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-4/igt@kms_color@ctm-0-50.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [SKIP][217] ([Intel XE#2291]) -> [PASS][218] +5 other tests pass
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* {igt@kms_dp_link_training@non-uhbr-sst}:
- shard-bmg: [SKIP][219] ([Intel XE#4354]) -> [PASS][220]
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-1/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-dg2-set2: [DMESG-WARN][221] ([Intel XE#2955]) -> [PASS][222] +3 other tests pass
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-432/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-435/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-bmg: [DMESG-WARN][223] ([Intel XE#2955]) -> [PASS][224] +1 other test pass
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [SKIP][225] ([Intel XE#2316]) -> [PASS][226] +5 other tests pass
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][227] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][228] +1 other test pass
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend@c-dp4:
- shard-dg2-set2: [INCOMPLETE][229] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][230]
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-435/igt@kms_flip@flip-vs-suspend@c-dp4.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-435/igt@kms_flip@flip-vs-suspend@c-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [DMESG-WARN][231] ([Intel XE#4330]) -> [PASS][232] +24 other tests pass
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][233] ([Intel XE#718]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [SKIP][235] ([Intel XE#1435]) -> [PASS][236] +1 other test pass
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-bmg: [DMESG-WARN][237] ([Intel XE#4330]) -> [PASS][238] +21 other tests pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-1/igt@kms_vblank@ts-continuation-suspend.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_vblank@ts-continuation-suspend.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][239] ([Intel XE#1392]) -> [PASS][240] +4 other tests pass
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-435/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_sip@sanity-after-timeout@drm_xe_engine_class_render0:
- shard-dg2-set2: [INCOMPLETE][241] -> [PASS][242] +1 other test pass
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-435/igt@xe_exec_sip@sanity-after-timeout@drm_xe_engine_class_render0.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-466/igt@xe_exec_sip@sanity-after-timeout@drm_xe_engine_class_render0.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-bmg: [DMESG-WARN][243] ([Intel XE#4330] / [Intel XE#569]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-6/igt@xe_pm@s3-d3hot-basic-exec.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_spin_batch@spin-timestamp-check@engine-drm_xe_engine_class_video_enhance:
- shard-dg2-set2: [DMESG-WARN][245] -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-432/igt@xe_spin_batch@spin-timestamp-check@engine-drm_xe_engine_class_video_enhance.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-436/igt@xe_spin_batch@spin-timestamp-check@engine-drm_xe_engine_class_video_enhance.html
#### Warnings ####
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][247] ([Intel XE#1178]) -> [SKIP][248] ([Intel XE#2341])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-4/igt@kms_content_protection@atomic.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: [FAIL][249] ([Intel XE#1178]) -> [DMESG-FAIL][250] ([Intel XE#4330]) +1 other test dmesg-fail
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-3/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][251] ([Intel XE#2341]) -> [FAIL][252] ([Intel XE#1178])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [FAIL][253] ([Intel XE#1188]) -> [DMESG-FAIL][254] ([Intel XE#4330]) +1 other test dmesg-fail
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-435/igt@kms_content_protection@uevent.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-466/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [DMESG-WARN][255] ([Intel XE#877]) -> [SKIP][256] ([Intel XE#2291])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: [DMESG-WARN][257] ([Intel XE#4330]) -> [SKIP][258] ([Intel XE#2291])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-bmg: [SKIP][259] ([Intel XE#2316]) -> [DMESG-WARN][260] ([Intel XE#4330])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-1/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [DMESG-WARN][261] ([Intel XE#4330]) -> [SKIP][262] ([Intel XE#2316])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [INCOMPLETE][263] ([Intel XE#2049] / [Intel XE#2597]) -> [DMESG-WARN][264] ([Intel XE#2955])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-dg2-435/igt@kms_flip@flip-vs-suspend.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-dg2-435/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: [DMESG-WARN][265] ([Intel XE#4330]) -> [FAIL][266] ([Intel XE#2882])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-6/igt@kms_flip@wf_vblank-ts-check.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][267] ([Intel XE#2311]) -> [SKIP][268] ([Intel XE#2312]) +19 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][269] ([Intel XE#2312]) -> [SKIP][270] ([Intel XE#4141]) +3 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][271] ([Intel XE#4141]) -> [SKIP][272] ([Intel XE#2312]) +10 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][273] ([Intel XE#2312]) -> [SKIP][274] ([Intel XE#2311]) +9 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][275] ([Intel XE#2312]) -> [SKIP][276] ([Intel XE#2313]) +16 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][277] ([Intel XE#2313]) -> [SKIP][278] ([Intel XE#2312]) +21 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: [DMESG-FAIL][279] ([Intel XE#4330]) -> [FAIL][280] ([Intel XE#1430])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-6/igt@kms_pm_dc@dc6-dpms.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-6/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][281] ([Intel XE#1729]) -> [SKIP][282] ([Intel XE#2426])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8247/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[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#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045
[Intel XE#4091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4091
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4132]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4132
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4330
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
Build changes
-------------
* IGT: IGT_8247 -> IGTPW_12654
IGTPW_12654: 12654
IGT_8247: 8247
xe-2706-9f112b86fd27ff7de2ce09718596cfefd71ee41f: 9f112b86fd27ff7de2ce09718596cfefd71ee41f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12654/index.html
[-- Attachment #2: Type: text/html, Size: 89366 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-02-25 10:37 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-24 7:23 [PATCH i-g-t] lib/amdgpu: ad support for page queues in amd_deadlock Jesse.zhang@amd.com
2025-02-24 19:32 ` vitaly prosyak
2025-02-25 5:47 ` ✓ Xe.CI.BAT: success for " Patchwork
2025-02-25 6:07 ` ✓ i915.CI.BAT: " Patchwork
2025-02-25 8:04 ` ✗ i915.CI.Full: failure " Patchwork
2025-02-25 10:37 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox