* [PATCH v3 i-g-t 0/4] Improvements for xe_sriov_flr test and xe_mmio lib
@ 2024-11-21 14:18 Marcin Bernatowicz
2024-11-21 14:18 ` [PATCH v3 i-g-t 1/4] lib/xe/xe_mmio: Replace open-coded init/cleanup with existing functions Marcin Bernatowicz
` (6 more replies)
0 siblings, 7 replies; 11+ messages in thread
From: Marcin Bernatowicz @ 2024-11-21 14:18 UTC (permalink / raw)
To: igt-dev
Cc: kamil.konieczny, adam.miszczak, jakub1.kolakowski, lukasz.laguna,
michal.wajdeczko, michal.winiarski, narasimha.c.v,
piotr.piorkowski, satyanarayana.k.v.p, tomasz.lis,
Marcin Bernatowicz
Enhance code maintainability, improve error handling, and provide clearer
debugging information.
lib/xe/xe_mmio: Replace open-coded init/cleanup with existing functions
Use intel_register_access_init and intel_register_access_fini to handle
initialization and cleanup, reducing code duplication. This improves
maintainability and ensures consistency, including handling forcewake
for Xe.
lib/xe/xe_sriov_provisioning: Refactor range handling and logging
Introduce an append_range helper to reduce code duplication in handling
provisioned PTE ranges. Limit debug logs to the first 70 entries for
clarity and improved reasoning. Enhance error handling by propagating
realloc failures.
tests/xe/xe_sriov_flr: Use SKIP for unmet subcheck prerequisites
Handle missing prerequisites by marking subchecks as SKIP instead of FAIL.
This avoids misleading results suggesting FLR issues when tests haven't
started or conditions aren't met.
v2: Handle missing prerequisites by consistently marking subchecks as
SKIP instead of FAIL when conditions aren't met. (Lukasz)
Update range-checking logic to iterate only within valid PTE offsets
based on MAX_WOPCM_SIZE and GUC_GGTT_TOP.
v3: Moved the fix for updating range-check logic to iterate within
valid PTE offsets into a separate patch.
Marcin Bernatowicz (4):
lib/xe/xe_mmio: Replace open-coded init/cleanup with existing
functions
lib/xe/xe_sriov_provisioning: Refactor range handling and logging
tests/xe/xe_sriov_flr: Use SKIP for unmet subcheck prerequisites
lib/xe/xe_sriov_provisioning: Iterate only within valid PTE offsets
lib/xe/xe_mmio.c | 10 +----
lib/xe/xe_sriov_provisioning.c | 78 +++++++++++++++++++++++-----------
tests/intel/xe_sriov_flr.c | 21 +++++----
3 files changed, 68 insertions(+), 41 deletions(-)
--
2.31.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v3 i-g-t 1/4] lib/xe/xe_mmio: Replace open-coded init/cleanup with existing functions
2024-11-21 14:18 [PATCH v3 i-g-t 0/4] Improvements for xe_sriov_flr test and xe_mmio lib Marcin Bernatowicz
@ 2024-11-21 14:18 ` Marcin Bernatowicz
2024-11-21 14:18 ` [PATCH v3 i-g-t 2/4] lib/xe/xe_sriov_provisioning: Refactor range handling and logging Marcin Bernatowicz
` (5 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Marcin Bernatowicz @ 2024-11-21 14:18 UTC (permalink / raw)
To: igt-dev
Cc: kamil.konieczny, adam.miszczak, jakub1.kolakowski, lukasz.laguna,
michal.wajdeczko, michal.winiarski, narasimha.c.v,
piotr.piorkowski, satyanarayana.k.v.p, tomasz.lis,
Marcin Bernatowicz
Use intel_register_access_init and intel_register_access_fini to handle
initialization and cleanup, reducing code duplication. This improves
maintainability and ensures consistency, including handling forcewake
for Xe.
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Piotr Piórkowski <piotr.piorkowski@intel.com>
---
lib/xe/xe_mmio.c | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/lib/xe/xe_mmio.c b/lib/xe/xe_mmio.c
index 0817c12f6..834816133 100644
--- a/lib/xe/xe_mmio.c
+++ b/lib/xe/xe_mmio.c
@@ -23,13 +23,8 @@ void xe_mmio_vf_access_init(int pf_fd, int vf_id, struct xe_mmio *mmio)
igt_assert_f(pci_dev, "No PCI device found for VF%u\n", vf_id);
- intel_mmio_use_pci_bar(&mmio->intel_mmio, pci_dev);
-
- igt_assert(mmio->intel_mmio.igt_mmio);
-
+ intel_register_access_init(&mmio->intel_mmio, pci_dev, false);
mmio->fd = pf_fd;
- mmio->intel_mmio.safe = false;
- mmio->intel_mmio.pci_device_id = pci_dev->device_id;
}
/**
@@ -53,8 +48,7 @@ void xe_mmio_access_init(int pf_fd, struct xe_mmio *mmio)
*/
void xe_mmio_access_fini(struct xe_mmio *mmio)
{
- mmio->intel_mmio.pci_device_id = 0;
- intel_mmio_unmap_pci_bar(&mmio->intel_mmio);
+ intel_register_access_fini(&mmio->intel_mmio);
}
/**
--
2.31.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v3 i-g-t 2/4] lib/xe/xe_sriov_provisioning: Refactor range handling and logging
2024-11-21 14:18 [PATCH v3 i-g-t 0/4] Improvements for xe_sriov_flr test and xe_mmio lib Marcin Bernatowicz
2024-11-21 14:18 ` [PATCH v3 i-g-t 1/4] lib/xe/xe_mmio: Replace open-coded init/cleanup with existing functions Marcin Bernatowicz
@ 2024-11-21 14:18 ` Marcin Bernatowicz
2024-11-21 14:18 ` [PATCH v3 i-g-t 3/4] tests/xe/xe_sriov_flr: Use SKIP for unmet subcheck prerequisites Marcin Bernatowicz
` (4 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Marcin Bernatowicz @ 2024-11-21 14:18 UTC (permalink / raw)
To: igt-dev
Cc: kamil.konieczny, adam.miszczak, jakub1.kolakowski, lukasz.laguna,
michal.wajdeczko, michal.winiarski, narasimha.c.v,
piotr.piorkowski, satyanarayana.k.v.p, tomasz.lis,
Marcin Bernatowicz
Introduce an append_range helper to reduce code duplication in handling
provisioned PTE ranges. Limit debug logs to the first 70 entries for
clarity and improved reasoning. Enhance error handling by propagating
realloc failures.
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: C V Narasimha <narasimha.c.v@intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: K V P Satyanarayana <satyanarayana.k.v.p@intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Michał Wajdeczko <michal.wajdeczko@intel.com>
Cc: Michał Winiarski <michal.winiarski@intel.com>
Cc: Piotr Piórkowski <piotr.piorkowski@intel.com>
Cc: Tomasz Lis <tomasz.lis@intel.com>
---
lib/xe/xe_sriov_provisioning.c | 71 ++++++++++++++++++++++------------
1 file changed, 47 insertions(+), 24 deletions(-)
diff --git a/lib/xe/xe_sriov_provisioning.c b/lib/xe/xe_sriov_provisioning.c
index 7cde2c240..d448a53d8 100644
--- a/lib/xe/xe_sriov_provisioning.c
+++ b/lib/xe/xe_sriov_provisioning.c
@@ -3,7 +3,7 @@
* Copyright(c) 2024 Intel Corporation. All rights reserved.
*/
-#include <stdlib.h>
+#include <errno.h>
#include "igt_core.h"
#include "intel_chipset.h"
@@ -48,6 +48,37 @@ static uint64_t get_vfid_mask(int fd)
GGTT_PTE_VFID_MASK : PRE_1250_IP_VER_GGTT_PTE_VFID_MASK;
}
+#define MAX_DEBUG_ENTRIES 70
+
+static int append_range(struct xe_sriov_provisioned_range **ranges,
+ unsigned int *nr_ranges, unsigned int vf_id,
+ uint32_t start, uint32_t end)
+{
+ struct xe_sriov_provisioned_range *new_ranges;
+
+ new_ranges = realloc(*ranges,
+ (*nr_ranges + 1) * sizeof(struct xe_sriov_provisioned_range));
+ if (!new_ranges) {
+ free(*ranges);
+ *ranges = NULL;
+ *nr_ranges = 0;
+ return -ENOMEM;
+ }
+
+ *ranges = new_ranges;
+ if (*nr_ranges < MAX_DEBUG_ENTRIES)
+ igt_debug("Found VF%u GGTT range [%#x-%#x] num_ptes=%ld\n",
+ vf_id, start, end,
+ (end - start + sizeof(xe_ggtt_pte_t)) /
+ sizeof(xe_ggtt_pte_t));
+ (*ranges)[*nr_ranges].vf_id = vf_id;
+ (*ranges)[*nr_ranges].start = start;
+ (*ranges)[*nr_ranges].end = end;
+ (*nr_ranges)++;
+
+ return 0;
+}
+
/**
* xe_sriov_find_ggtt_provisioned_pte_offsets - Find GGTT provisioned PTE offsets
* @pf_fd: File descriptor for the Physical Function
@@ -76,6 +107,7 @@ int xe_sriov_find_ggtt_provisioned_pte_offsets(int pf_fd, int gt, struct xe_mmio
uint32_t current_start = 0;
uint32_t current_end = 0;
xe_ggtt_pte_t pte;
+ int ret;
*ranges = NULL;
*nr_ranges = 0;
@@ -86,18 +118,11 @@ int xe_sriov_find_ggtt_provisioned_pte_offsets(int pf_fd, int gt, struct xe_mmio
if (vf_id != current_vf_id) {
if (current_vf_id != -1) {
- /* End the current range */
- *ranges = realloc(*ranges, (*nr_ranges + 1) *
- sizeof(struct xe_sriov_provisioned_range));
- igt_assert(*ranges);
- igt_debug("Found VF%u ggtt range [%#x-%#x] num_ptes=%ld\n",
- current_vf_id, current_start, current_end,
- (current_end - current_start + sizeof(xe_ggtt_pte_t)) /
- sizeof(xe_ggtt_pte_t));
- (*ranges)[*nr_ranges].vf_id = current_vf_id;
- (*ranges)[*nr_ranges].start = current_start;
- (*ranges)[*nr_ranges].end = current_end;
- (*nr_ranges)++;
+ /* End the current range and append it */
+ ret = append_range(ranges, nr_ranges, current_vf_id,
+ current_start, current_end);
+ if (ret < 0)
+ return ret;
}
/* Start a new range */
current_vf_id = vf_id;
@@ -107,18 +132,16 @@ int xe_sriov_find_ggtt_provisioned_pte_offsets(int pf_fd, int gt, struct xe_mmio
}
if (current_vf_id != -1) {
- *ranges = realloc(*ranges, (*nr_ranges + 1) *
- sizeof(struct xe_sriov_provisioned_range));
- igt_assert(*ranges);
- igt_debug("Found VF%u ggtt range [%#x-%#x] num_ptes=%ld\n",
- current_vf_id, current_start, current_end,
- (current_end - current_start + sizeof(xe_ggtt_pte_t)) /
- sizeof(xe_ggtt_pte_t));
- (*ranges)[*nr_ranges].vf_id = current_vf_id;
- (*ranges)[*nr_ranges].start = current_start;
- (*ranges)[*nr_ranges].end = current_end;
- (*nr_ranges)++;
+ /* Append the last range */
+ ret = append_range(ranges, nr_ranges, current_vf_id,
+ current_start, current_end);
+ if (ret < 0)
+ return ret;
}
+ if (*nr_ranges > MAX_DEBUG_ENTRIES)
+ igt_debug("Ranges output trimmed to first %u entries out of %u\n",
+ MAX_DEBUG_ENTRIES, *nr_ranges);
+
return 0;
}
--
2.31.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v3 i-g-t 3/4] tests/xe/xe_sriov_flr: Use SKIP for unmet subcheck prerequisites
2024-11-21 14:18 [PATCH v3 i-g-t 0/4] Improvements for xe_sriov_flr test and xe_mmio lib Marcin Bernatowicz
2024-11-21 14:18 ` [PATCH v3 i-g-t 1/4] lib/xe/xe_mmio: Replace open-coded init/cleanup with existing functions Marcin Bernatowicz
2024-11-21 14:18 ` [PATCH v3 i-g-t 2/4] lib/xe/xe_sriov_provisioning: Refactor range handling and logging Marcin Bernatowicz
@ 2024-11-21 14:18 ` Marcin Bernatowicz
2024-11-22 10:39 ` Laguna, Lukasz
2024-11-21 14:18 ` [PATCH v3 i-g-t 4/4] lib/xe/xe_sriov_provisioning: Iterate only within valid PTE offsets Marcin Bernatowicz
` (3 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Marcin Bernatowicz @ 2024-11-21 14:18 UTC (permalink / raw)
To: igt-dev
Cc: kamil.konieczny, adam.miszczak, jakub1.kolakowski, lukasz.laguna,
michal.wajdeczko, michal.winiarski, narasimha.c.v,
piotr.piorkowski, satyanarayana.k.v.p, tomasz.lis,
Marcin Bernatowicz
Handle missing prerequisites by marking subchecks as SKIP instead of FAIL.
This avoids misleading results suggesting FLR issues when tests haven't
started or conditions aren't met.
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: C V Narasimha <narasimha.c.v@intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: K V P Satyanarayana <satyanarayana.k.v.p@intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Michał Wajdeczko <michal.wajdeczko@intel.com>
Cc: Michał Winiarski <michal.winiarski@intel.com>
Cc: Piotr Piórkowski <piotr.piorkowski@intel.com>
Cc: Tomasz Lis <tomasz.lis@intel.com>
---
tests/intel/xe_sriov_flr.c | 21 +++++++++++++--------
1 file changed, 13 insertions(+), 8 deletions(-)
diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c
index 1049cffec..550d58bb9 100644
--- a/tests/intel/xe_sriov_flr.c
+++ b/tests/intel/xe_sriov_flr.c
@@ -393,7 +393,12 @@ static int populate_ggtt_pte_offsets(struct ggtt_data *gdata)
if (vf_id == 0)
continue;
- igt_assert(vf_id >= 1 && vf_id <= num_vfs);
+ if (vf_id < 1 || vf_id > num_vfs) {
+ set_skip_reason(&gdata->base, "Unexpected VF%u at range entry %u [%#lx-%#lx], num_vfs=%u\n",
+ vf_id, i, ranges[i].start, ranges[i].end, num_vfs);
+ free(ranges);
+ return -1;
+ }
if (gdata->pte_offsets[vf_id].end) {
set_skip_reason(&gdata->base, "Duplicate GGTT PTE offset range for VF%u\n",
@@ -410,7 +415,7 @@ static int populate_ggtt_pte_offsets(struct ggtt_data *gdata)
for (int vf_id = 1; vf_id <= num_vfs; ++vf_id)
if (!gdata->pte_offsets[vf_id].end) {
- set_fail_reason(&gdata->base,
+ set_skip_reason(&gdata->base,
"Failed to find VF%u provisioned GGTT PTE offset range\n",
vf_id);
return -1;
@@ -440,7 +445,7 @@ static void ggtt_subcheck_init(struct subcheck_data *data)
populate_ggtt_pte_offsets(gdata);
} else {
- set_fail_reason(data, "xe_mmio is NULL\n");
+ set_skip_reason(data, "xe_mmio is NULL\n");
}
}
@@ -460,7 +465,7 @@ static void ggtt_subcheck_prepare_vf(int vf_id, struct subcheck_data *data)
for_each_pte_offset(pte_offset, &gdata->pte_offsets[vf_id]) {
if (!set_pte_gpa(&gdata->ggtt, gdata->mmio, data->gt, pte_offset,
(uint8_t)vf_id, &pte)) {
- set_fail_reason(data,
+ set_skip_reason(data,
"Prepare VF%u failed, unexpected gpa: Read PTE: %#lx at offset: %#x\n",
vf_id, pte, pte_offset);
return;
@@ -696,7 +701,7 @@ static void lmem_subcheck_prepare_vf(int vf_id, struct subcheck_data *data)
if (!lmem_mmap_write_munmap(data->pf_fd, vf_id,
ldata->vf_lmem_size[vf_id], vf_id)) {
- set_fail_reason(data, "LMEM write failed on VF%u\n", vf_id);
+ set_skip_reason(data, "LMEM write failed on VF%u\n", vf_id);
}
}
@@ -758,12 +763,12 @@ static void regs_subcheck_prepare_vf(int vf_id, struct subcheck_data *data)
struct pci_device *pci_dev = __igt_device_get_pci_device(data->pf_fd, vf_id);
if (!pci_dev) {
- set_fail_reason(data, "No PCI device found for VF%u\n", vf_id);
+ set_skip_reason(data, "No PCI device found for VF%u\n", vf_id);
return;
}
if (intel_register_access_init(&rdata->mmio[vf_id], pci_dev, false)) {
- set_fail_reason(data, "Failed to get access to VF%u MMIO\n", vf_id);
+ set_skip_reason(data, "Failed to get access to VF%u MMIO\n", vf_id);
return;
}
}
@@ -773,7 +778,7 @@ static void regs_subcheck_prepare_vf(int vf_id, struct subcheck_data *data)
intel_register_write(&rdata->mmio[vf_id], reg, vf_id);
if (intel_register_read(&rdata->mmio[vf_id], reg) != vf_id) {
- set_fail_reason(data, "Registers write/read check failed on VF%u\n", vf_id);
+ set_skip_reason(data, "Registers write/read check failed on VF%u\n", vf_id);
return;
}
}
--
2.31.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v3 i-g-t 4/4] lib/xe/xe_sriov_provisioning: Iterate only within valid PTE offsets
2024-11-21 14:18 [PATCH v3 i-g-t 0/4] Improvements for xe_sriov_flr test and xe_mmio lib Marcin Bernatowicz
` (2 preceding siblings ...)
2024-11-21 14:18 ` [PATCH v3 i-g-t 3/4] tests/xe/xe_sriov_flr: Use SKIP for unmet subcheck prerequisites Marcin Bernatowicz
@ 2024-11-21 14:18 ` Marcin Bernatowicz
2024-11-22 10:43 ` Laguna, Lukasz
2024-11-21 17:31 ` ✓ Xe.CI.BAT: success for Improvements for xe_sriov_flr test and xe_mmio lib (rev3) Patchwork
` (2 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Marcin Bernatowicz @ 2024-11-21 14:18 UTC (permalink / raw)
To: igt-dev
Cc: kamil.konieczny, adam.miszczak, jakub1.kolakowski, lukasz.laguna,
michal.wajdeczko, michal.winiarski, narasimha.c.v,
piotr.piorkowski, satyanarayana.k.v.p, tomasz.lis,
Marcin Bernatowicz
Update range-checking logic to iterate only within valid PTE offsets
based on MAX_WOPCM_SIZE and GUC_GGTT_TOP.
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3507
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: C V Narasimha <narasimha.c.v@intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: K V P Satyanarayana <satyanarayana.k.v.p@intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Michał Wajdeczko <michal.wajdeczko@intel.com>
Cc: Michał Winiarski <michal.winiarski@intel.com>
Cc: Piotr Piórkowski <piotr.piorkowski@intel.com>
Cc: Tomasz Lis <tomasz.lis@intel.com>
---
lib/xe/xe_sriov_provisioning.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/lib/xe/xe_sriov_provisioning.c b/lib/xe/xe_sriov_provisioning.c
index d448a53d8..67ae9cf54 100644
--- a/lib/xe/xe_sriov_provisioning.c
+++ b/lib/xe/xe_sriov_provisioning.c
@@ -39,6 +39,10 @@ const char *xe_sriov_shared_res_to_string(enum xe_sriov_shared_res res)
#define PRE_1250_IP_VER_GGTT_PTE_VFID_MASK GENMASK_ULL(4, 2)
#define GGTT_PTE_VFID_MASK GENMASK_ULL(11, 2)
#define GGTT_PTE_VFID_SHIFT 2
+#define GUC_GGTT_TOP 0xFEE00000
+#define MAX_WOPCM_SIZE SZ_8M
+#define START_PTE_OFFSET (MAX_WOPCM_SIZE / SZ_4K * sizeof(xe_ggtt_pte_t))
+#define MAX_PTE_OFFSET (GUC_GGTT_TOP / SZ_4K * sizeof(xe_ggtt_pte_t))
static uint64_t get_vfid_mask(int fd)
{
@@ -112,7 +116,8 @@ int xe_sriov_find_ggtt_provisioned_pte_offsets(int pf_fd, int gt, struct xe_mmio
*ranges = NULL;
*nr_ranges = 0;
- for (uint32_t offset = 0; offset < SZ_8M; offset += sizeof(xe_ggtt_pte_t)) {
+ for (uint32_t offset = START_PTE_OFFSET; offset < MAX_PTE_OFFSET;
+ offset += sizeof(xe_ggtt_pte_t)) {
pte = xe_mmio_ggtt_read(mmio, gt, offset);
vf_id = (pte & vfid_mask) >> GGTT_PTE_VFID_SHIFT;
--
2.31.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for Improvements for xe_sriov_flr test and xe_mmio lib (rev3)
2024-11-21 14:18 [PATCH v3 i-g-t 0/4] Improvements for xe_sriov_flr test and xe_mmio lib Marcin Bernatowicz
` (3 preceding siblings ...)
2024-11-21 14:18 ` [PATCH v3 i-g-t 4/4] lib/xe/xe_sriov_provisioning: Iterate only within valid PTE offsets Marcin Bernatowicz
@ 2024-11-21 17:31 ` Patchwork
2024-11-21 17:44 ` ✗ i915.CI.BAT: failure " Patchwork
2024-11-22 2:31 ` ✗ Xe.CI.Full: " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-21 17:31 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1312 bytes --]
== Series Details ==
Series: Improvements for xe_sriov_flr test and xe_mmio lib (rev3)
URL : https://patchwork.freedesktop.org/series/141556/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8119_BAT -> XEIGTPW_12162_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12162_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [FAIL][1] ([Intel XE#1861]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
Build changes
-------------
* IGT: IGT_8119 -> IGTPW_12162
IGTPW_12162: 12162
IGT_8119: 8119
xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380: e46649e7764a9f6868ccbcba7b8b23b413303380
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/index.html
[-- Attachment #2: Type: text/html, Size: 1874 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.BAT: failure for Improvements for xe_sriov_flr test and xe_mmio lib (rev3)
2024-11-21 14:18 [PATCH v3 i-g-t 0/4] Improvements for xe_sriov_flr test and xe_mmio lib Marcin Bernatowicz
` (4 preceding siblings ...)
2024-11-21 17:31 ` ✓ Xe.CI.BAT: success for Improvements for xe_sriov_flr test and xe_mmio lib (rev3) Patchwork
@ 2024-11-21 17:44 ` Patchwork
2024-11-22 2:31 ` ✗ Xe.CI.Full: " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-21 17:44 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
== Series Details ==
Series: Improvements for xe_sriov_flr test and xe_mmio lib (rev3)
URL : https://patchwork.freedesktop.org/series/141556/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8119 -> IGTPW_12162
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12162 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12162, 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_12162/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12162:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live:
- bat-mtlp-6: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8119/bat-mtlp-6/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12162/bat-mtlp-6/igt@i915_selftest@live.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-apl-1: [PASS][3] -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8119/bat-apl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12162/bat-apl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_addfb_basic@small-bo:
- {bat-mtlp-9}: [PASS][5] -> [DMESG-WARN][6] +1 other test dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8119/bat-mtlp-9/igt@kms_addfb_basic@small-bo.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12162/bat-mtlp-9/igt@kms_addfb_basic@small-bo.html
Known issues
------------
Here are the changes found in IGTPW_12162 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [PASS][7] -> [ABORT][8] ([i915#12915])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8119/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12162/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-rpls-4: [FAIL][9] ([i915#12903]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8119/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12162/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-arlh-3: [ABORT][11] -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8119/bat-arlh-3/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12162/bat-arlh-3/igt@i915_selftest@live.html
- {bat-arls-6}: [ABORT][13] -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8119/bat-arls-6/igt@i915_selftest@live.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12162/bat-arls-6/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [ABORT][15] ([i915#12061]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8119/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12162/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- {bat-arls-6}: [ABORT][17] ([i915#12061]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8119/bat-arls-6/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12162/bat-arls-6/igt@i915_selftest@live@workarounds.html
* igt@kms_chamelium_edid@dp-edid-read:
- bat-dg2-13: [FAIL][19] ([i915#12505]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8119/bat-dg2-13/igt@kms_chamelium_edid@dp-edid-read.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12162/bat-dg2-13/igt@kms_chamelium_edid@dp-edid-read.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12505]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12505
[i915#12695]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12695
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12915]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12915
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8119 -> IGTPW_12162
CI-20190529: 20190529
CI_DRM_15725: e46649e7764a9f6868ccbcba7b8b23b413303380 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12162: 12162
IGT_8119: 8119
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12162/index.html
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for Improvements for xe_sriov_flr test and xe_mmio lib (rev3)
2024-11-21 14:18 [PATCH v3 i-g-t 0/4] Improvements for xe_sriov_flr test and xe_mmio lib Marcin Bernatowicz
` (5 preceding siblings ...)
2024-11-21 17:44 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2024-11-22 2:31 ` Patchwork
2024-11-22 13:29 ` Bernatowicz, Marcin
6 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2024-11-22 2:31 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 136530 bytes --]
== Series Details ==
Series: Improvements for xe_sriov_flr test and xe_mmio lib (rev3)
URL : https://patchwork.freedesktop.org/series/141556/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8119_full -> XEIGTPW_12162_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12162_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12162_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_12162_full:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@unbind-rebind:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@core_hotunplug@unbind-rebind.html
* igt@kms_cursor_crc@cursor-alpha-opaque@pipe-a-dp-2:
- shard-bmg: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_cursor_crc@cursor-alpha-opaque@pipe-a-dp-2.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_cursor_crc@cursor-alpha-opaque@pipe-a-dp-2.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][5] -> [SKIP][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_dp_aux_dev.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_dp_aux_dev.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d:
- shard-bmg: [PASS][7] -> [DMESG-WARN][8] +2 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html
* igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-vram01:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][9]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-vram01.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-lnl: NOTRUN -> [FAIL][10]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-2/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
* igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
- shard-lnl: [PASS][11] -> [ABORT][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-8/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-5/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][13] ([Intel XE#2136]) -> [ABORT][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-dg2-set2: [SKIP][15] ([Intel XE#2136]) -> [INCOMPLETE][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: [DMESG-FAIL][17] -> [FAIL][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
New tests
---------
New tests have been introduced between XEIGT_8119_full and XEIGTPW_12162_full:
### New IGT tests (1) ###
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.42] s
Known issues
------------
Here are the changes found in XEIGTPW_12162_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getstats:
- shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#2423])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@core_getstats.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@core_getstats.html
* igt@fbdev@unaligned-write:
- shard-dg2-set2: [PASS][21] -> [SKIP][22] ([Intel XE#2134])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@fbdev@unaligned-write.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@fbdev@unaligned-write.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][23] ([Intel XE#3468]) +1 other test dmesg-warn
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-6.html
* igt@kms_async_flips@crc:
- shard-bmg: [PASS][24] -> [DMESG-FAIL][25] ([Intel XE#1727] / [Intel XE#3468])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_async_flips@crc.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_async_flips@crc.html
* igt@kms_async_flips@crc@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][26] ([Intel XE#1727] / [Intel XE#3468])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_async_flips@crc@pipe-a-dp-2.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-bmg: [PASS][27] -> [FAIL][28] ([Intel XE#3557])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#316])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: [PASS][30] -> [SKIP][31] ([Intel XE#2136]) +24 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2327]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1407]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1124])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-5/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#619])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#1124]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#1124]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2314] / [Intel XE#2894])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#367])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#367])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#2887]) +5 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][43] -> [INCOMPLETE][44] ([Intel XE#3468]) +1 other test incomplete
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2887]) +6 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#787]) +76 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#2669]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][48] ([Intel XE#1727] / [Intel XE#3113])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#455] / [Intel XE#787]) +12 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2724])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#373]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_chamelium_audio@hdmi-audio.html
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#373]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-3/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_color@gamma:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2325]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2252]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_color@ctm-0-25:
- shard-bmg: [PASS][55] -> [DMESG-WARN][56] ([Intel XE#877]) +1 other test dmesg-warn
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_color@ctm-0-25.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_color@ctm-0-25.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2321]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#308])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-dg2-set2: [PASS][59] -> [SKIP][60] ([Intel XE#2423] / [i915#2575]) +80 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-64x64.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_cursor_edge_walk@256x256-right-edge:
- shard-lnl: [PASS][61] -> [FAIL][62] ([Intel XE#2577]) +1 other test fail
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-8/igt@kms_cursor_edge_walk@256x256-right-edge.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-7/igt@kms_cursor_edge_walk@256x256-right-edge.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#309])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2291]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: NOTRUN -> [DMESG-WARN][66] ([Intel XE#877])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][67] ([Intel XE#1727])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/igt@kms_flip@2x-blocking-absolute-wf_vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#3486])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [PASS][70] -> [FAIL][71] ([Intel XE#2882])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][72] ([Intel XE#301]) +5 other tests fail
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2316])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [PASS][74] -> [SKIP][75] ([Intel XE#2316]) +4 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@busy-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#2423] / [i915#2575]) +48 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_flip@busy-flip.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-dp2:
- shard-bmg: NOTRUN -> [DMESG-WARN][77] ([Intel XE#3468]) +14 other tests dmesg-warn
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_flip@flip-vs-absolute-wf_vblank@b-dp2.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#3149] / [Intel XE#886])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip@wf_vblank-ts-check@b-edp1:
- shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#886]) +1 other test fail
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@b-edp1.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check@b-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2380]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1401]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#455]) +4 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2312]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2311]) +9 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [PASS][88] -> [SKIP][89] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-bmg: NOTRUN -> [INCOMPLETE][90] ([Intel XE#1727] / [Intel XE#2050])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#651]) +5 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#651]) +3 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2313]) +10 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#653]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2136] / [Intel XE#2351]) +18 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2352])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-hdmi-a-3:
- shard-bmg: NOTRUN -> [FAIL][97] ([Intel XE#2333]) +4 other tests fail
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-hdmi-a-3.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2350])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#656]) +9 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1470] / [Intel XE#2853])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: NOTRUN -> [DMESG-FAIL][101] ([Intel XE#3468]) +9 other tests dmesg-fail
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3:
- shard-bmg: [PASS][102] -> [INCOMPLETE][103] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-dp-2:
- shard-bmg: [PASS][104] -> [DMESG-FAIL][105] ([Intel XE#3468]) +17 other tests dmesg-fail
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-dp-2.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-dp-2.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2393])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2763]) +4 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2763]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2763] / [Intel XE#455])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-bmg: [PASS][110] -> [DMESG-WARN][111] ([Intel XE#2566]) +1 other test dmesg-warn
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][112] ([Intel XE#3527])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-6.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2446])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2-set2: [PASS][114] -> [SKIP][115] ([Intel XE#2446]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_pm_rpm@dpms-non-lpsp.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#1489]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#2893])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1489])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#2136]) +52 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@pr-dpms:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1406])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-3/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_psr@psr-primary-page-flip.html
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2351])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-bmg: [PASS][124] -> [INCOMPLETE][125] ([Intel XE#1727]) +1 other test incomplete
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#3414])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#3414])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-6/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [PASS][128] -> [FAIL][129] ([Intel XE#899]) +1 other test fail
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][130] -> [FAIL][131] ([Intel XE#2159]) +1 other test fail
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1499])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#1499]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#756])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#756])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-vram01-vram01:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][136] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-fail
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-vram01-vram01.html
* igt@xe_eudebug@basic-vm-bind:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#2905]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-3/igt@xe_eudebug@basic-vm-bind.html
* igt@xe_eudebug@multigpu-basic-client:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2905]) +5 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@xe_eudebug@multigpu-basic-client.html
* igt@xe_eudebug_online@resume-dss:
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#2905]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@xe_eudebug_online@resume-dss.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#688]) +4 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-6/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_balancer@once-parallel-rebind:
- shard-dg2-set2: [PASS][141] -> [SKIP][142] ([Intel XE#1130]) +147 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@xe_exec_balancer@once-parallel-rebind.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@xe_exec_balancer@once-parallel-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2322]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-basic-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1392]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-1/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
* igt@xe_exec_fault_mode@many-basic-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#288]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@xe_exec_fault_mode@many-basic-prefetch.html
* igt@xe_exec_fault_mode@twice-userptr-rebind:
- shard-bmg: [PASS][146] -> [DMESG-WARN][147] ([Intel XE#1727]) +3 other tests dmesg-warn
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@xe_exec_fault_mode@twice-userptr-rebind.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@xe_exec_fault_mode@twice-userptr-rebind.html
* igt@xe_exec_sip_eudebug@wait-writesip-nodebug:
- shard-bmg: [PASS][148] -> [DMESG-WARN][149] ([Intel XE#3468] / [Intel XE#3514])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html
* igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0:
- shard-bmg: [PASS][150] -> [DMESG-WARN][151] ([Intel XE#3468]) +71 other tests dmesg-warn
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html
* igt@xe_exec_threads@threads-bal-mixed-fd-basic:
- shard-dg2-set2: [PASS][152] -> [DMESG-WARN][153] ([Intel XE#1727])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@xe_exec_threads@threads-bal-mixed-fd-basic.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/igt@xe_exec_threads@threads-bal-mixed-fd-basic.html
* igt@xe_exec_threads@threads-fd-userptr-invalidate:
- shard-bmg: NOTRUN -> [DMESG-WARN][154] ([Intel XE#1727])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@xe_exec_threads@threads-fd-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-lnl: NOTRUN -> [DMESG-WARN][155] ([Intel XE#3343])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
- shard-bmg: NOTRUN -> [DMESG-WARN][156] ([Intel XE#3343])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_gt_freq@freq_reset_multiple:
- shard-lnl: [PASS][157] -> [DMESG-WARN][158] ([Intel XE#3184])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-3/igt@xe_gt_freq@freq_reset_multiple.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-3/igt@xe_gt_freq@freq_reset_multiple.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2229])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#2833])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_module_load@load:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2457])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@xe_module_load@load.html
* igt@xe_module_load@many-reload:
- shard-bmg: [PASS][162] -> [DMESG-WARN][163] ([Intel XE#3467])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@xe_module_load@many-reload.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@xe_module_load@many-reload.html
* igt@xe_oa@syncs-userptr-wait:
- shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#2541])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@xe_oa@syncs-userptr-wait.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#2284] / [Intel XE#366])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-4/igt@xe_pm@d3cold-basic.html
- shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#2284]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3hot-mmap-system:
- shard-bmg: [PASS][167] -> [DMESG-WARN][168] ([Intel XE#1727] / [Intel XE#3468]) +7 other tests dmesg-warn
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@xe_pm@d3hot-mmap-system.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@xe_pm@d3hot-mmap-system.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-bmg: NOTRUN -> [DMESG-WARN][169] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-bmg: [PASS][170] -> [DMESG-WARN][171] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#1130]) +70 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-bmg: [PASS][173] -> [DMESG-WARN][174] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@xe_pm@s4-vm-bind-userptr.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_query@multigpu-query-invalid-query:
- shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#944])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@xe_query@multigpu-query-invalid-query.html
* igt@xe_query@multigpu-query-topology:
- shard-lnl: NOTRUN -> [SKIP][176] ([Intel XE#944]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-6/igt@xe_query@multigpu-query-topology.html
#### Possible fixes ####
* igt@core_getversion@basic:
- shard-dg2-set2: [FAIL][177] ([Intel XE#3440]) -> [PASS][178]
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@core_getversion@basic.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@core_getversion@basic.html
* igt@core_hotunplug@hotrebind:
- shard-dg2-set2: [SKIP][179] ([Intel XE#1885]) -> [PASS][180] +1 other test pass
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@core_hotunplug@hotrebind.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@core_hotunplug@hotrebind.html
* igt@core_setmaster_vs_auth:
- shard-dg2-set2: [SKIP][181] ([Intel XE#2423]) -> [PASS][182]
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@core_setmaster_vs_auth.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@core_setmaster_vs_auth.html
* igt@kms_atomic_interruptible@atomic-setmode@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][183] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][184] +1 other test pass
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_atomic_interruptible@atomic-setmode@pipe-a-hdmi-a-6.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_atomic_interruptible@atomic-setmode@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-dg2-set2: [SKIP][185] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][186] +6 other tests pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][187] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_cursor_crc@cursor-onscreen-128x128:
- shard-bmg: [DMESG-FAIL][189] ([Intel XE#3468]) -> [PASS][190] +29 other tests pass
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-128x128.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-128x128.html
* igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-dp-2:
- shard-bmg: [DMESG-WARN][191] ([Intel XE#3468]) -> [PASS][192] +126 other tests pass
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-dp-2.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-dp-2.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [INCOMPLETE][193] ([Intel XE#3226]) -> [PASS][194]
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [SKIP][195] ([Intel XE#2291]) -> [PASS][196] +5 other tests pass
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [SKIP][197] ([Intel XE#1340]) -> [PASS][198]
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [FAIL][199] ([Intel XE#3321] / [Intel XE#3486]) -> [PASS][200]
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [FAIL][201] ([Intel XE#3486]) -> [PASS][202]
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
- shard-bmg: [FAIL][203] ([Intel XE#2882]) -> [PASS][204]
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3:
- shard-bmg: [DMESG-FAIL][205] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][206] +13 other tests pass
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3:
- shard-bmg: [INCOMPLETE][207] ([Intel XE#1727] / [Intel XE#2635] / [Intel XE#3468]) -> [PASS][208]
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][209] ([Intel XE#2316]) -> [PASS][210] +5 other tests pass
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-rmfb@d-hdmi-a3:
- shard-bmg: [DMESG-WARN][211] -> [PASS][212] +5 other tests pass
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_flip@flip-vs-rmfb@d-hdmi-a3.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@kms_flip@flip-vs-rmfb@d-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][213] ([Intel XE#1727] / [Intel XE#2597] / [Intel XE#3468]) -> [PASS][214] +1 other test pass
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [SKIP][215] ([Intel XE#2136]) -> [PASS][216] +21 other tests pass
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][217] ([Intel XE#1503]) -> [PASS][218]
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_hdr@invalid-hdr.html
* igt@kms_pipe_crc_basic@bad-source:
- shard-dg2-set2: [SKIP][219] ([Intel XE#2423] / [i915#2575]) -> [PASS][220] +74 other tests pass
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_pipe_crc_basic@bad-source.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@kms_pipe_crc_basic@bad-source.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- shard-bmg: [DMESG-WARN][221] ([Intel XE#877]) -> [PASS][222] +2 other tests pass
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_pipe_crc_basic@nonblocking-crc.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@kms_pipe_crc_basic@nonblocking-crc.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][223] ([Intel XE#718]) -> [PASS][224]
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-dg2-set2: [SKIP][225] ([Intel XE#2446]) -> [PASS][226] +2 other tests pass
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-lnl: [DMESG-WARN][227] ([Intel XE#2042]) -> [PASS][228]
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-2/igt@kms_pm_rpm@universal-planes-dpms.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-6/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_pm_rpm@universal-planes-dpms@plane-32:
- shard-lnl: [DMESG-WARN][229] -> [PASS][230]
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-2/igt@kms_pm_rpm@universal-planes-dpms@plane-32.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-6/igt@kms_pm_rpm@universal-planes-dpms@plane-32.html
* igt@kms_pm_rpm@universal-planes-dpms@plane-59:
- shard-lnl: [DMESG-WARN][231] ([Intel XE#3184]) -> [PASS][232]
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-2/igt@kms_pm_rpm@universal-planes-dpms@plane-59.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-6/igt@kms_pm_rpm@universal-planes-dpms@plane-59.html
* igt@kms_psr@fbc-psr2-primary-page-flip:
- shard-lnl: [FAIL][233] -> [PASS][234] +1 other test pass
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-4/igt@kms_psr@fbc-psr2-primary-page-flip.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-5/igt@kms_psr@fbc-psr2-primary-page-flip.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [SKIP][235] ([Intel XE#1435]) -> [PASS][236]
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3:
- shard-bmg: [DMESG-WARN][237] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][238] +7 other tests pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
* igt@kms_vrr@max-min@pipe-a-edp-1:
- shard-lnl: [FAIL][239] ([Intel XE#1522]) -> [PASS][240] +1 other test pass
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-4/igt@kms_vrr@max-min@pipe-a-edp-1.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-1/igt@kms_vrr@max-min@pipe-a-edp-1.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [TIMEOUT][241] ([Intel XE#1473] / [Intel XE#2472]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_balancer@many-execqueues-virtual-rebind:
- shard-dg2-set2: [SKIP][243] ([Intel XE#1130]) -> [PASS][244] +125 other tests pass
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_exec_balancer@many-execqueues-virtual-rebind.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@xe_exec_balancer@many-execqueues-virtual-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-rebind:
- shard-bmg: [DMESG-WARN][245] ([Intel XE#1727]) -> [PASS][246] +4 other tests pass
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-rebind.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-rebind.html
* igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate:
- shard-dg2-set2: [DMESG-FAIL][247] ([Intel XE#3371]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-bmg: [DMESG-WARN][249] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][250] +2 other tests pass
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
- shard-dg2-set2: [DMESG-WARN][251] ([Intel XE#3467]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [SKIP][253] ([Intel XE#1192]) -> [PASS][254] +1 other test pass
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@xe_live_ktest@xe_bo.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- shard-dg2-set2: [INCOMPLETE][255] -> [PASS][256] +1 other test pass
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [DMESG-WARN][257] ([Intel XE#3467]) -> [PASS][258] +3 other tests pass
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@xe_module_load@reload-no-display.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-bmg: [DMESG-WARN][259] ([Intel XE#1616] / [Intel XE#3468]) -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@xe_pm@s2idle-multiple-execs.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-bmg: [DMESG-WARN][261] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-prefetch.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s3-exec-after:
- shard-bmg: [DMESG-WARN][263] ([Intel XE#3468] / [Intel XE#569]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@xe_pm@s3-exec-after.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: [ABORT][265] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-3/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@s4-multiple-execs:
- shard-lnl: [ABORT][267] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-6/igt@xe_pm@s4-multiple-execs.html
* igt@xe_vm@large-split-binds-4194304:
- shard-dg2-set2: [DMESG-WARN][269] ([Intel XE#1727]) -> [PASS][270] +2 other tests pass
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@xe_vm@large-split-binds-4194304.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@xe_vm@large-split-binds-4194304.html
#### Warnings ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-dg2-set2: [DMESG-WARN][271] ([Intel XE#3468]) -> [SKIP][272] ([Intel XE#1885])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@core_hotunplug@hotrebind-lateclose.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@core_hotunplug@hotrebind-lateclose.html
* igt@core_hotunplug@hotunbind-rebind:
- shard-dg2-set2: [DMESG-WARN][273] ([Intel XE#3468] / [Intel XE#3521]) -> [SKIP][274] ([Intel XE#1885])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@core_hotunplug@hotunbind-rebind.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@core_hotunplug@hotunbind-rebind.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [DMESG-FAIL][275] ([Intel XE#1727] / [Intel XE#3468]) -> [FAIL][276] ([Intel XE#827])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3:
- shard-bmg: [DMESG-WARN][277] ([Intel XE#3468]) -> [FAIL][278] ([Intel XE#827])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-dg2-set2: [SKIP][279] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][280] ([Intel XE#3468])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_async_flips@async-flip-suspend-resume.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-with-page-flip-events:
- shard-bmg: [DMESG-FAIL][281] ([Intel XE#1727] / [Intel XE#3468]) -> [INCOMPLETE][282] ([Intel XE#1727] / [Intel XE#3468])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_async_flips@async-flip-with-page-flip-events.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_async_flips@async-flip-with-page-flip-events.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-2-4:
- shard-bmg: [DMESG-WARN][283] ([Intel XE#1727]) -> [DMESG-FAIL][284] ([Intel XE#1727] / [Intel XE#3468])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-2-4.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-2-4.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-2-linear:
- shard-bmg: [DMESG-FAIL][285] ([Intel XE#1727] / [Intel XE#3468]) -> [INCOMPLETE][286] ([Intel XE#1727])
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-2-linear.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-2-linear.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-2-x:
- shard-bmg: [DMESG-FAIL][287] ([Intel XE#3468]) -> [DMESG-FAIL][288] ([Intel XE#1727] / [Intel XE#3468])
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-2-x.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-2-x.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][289] ([Intel XE#316]) -> [SKIP][290] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][291] ([Intel XE#2136]) -> [SKIP][292] ([Intel XE#316]) +2 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][293] ([Intel XE#316]) -> [SKIP][294] ([Intel XE#2136]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][295] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][296] ([Intel XE#316]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][297] ([Intel XE#610]) -> [SKIP][298] ([Intel XE#2136])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][299] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][300] ([Intel XE#1124]) +4 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][301] ([Intel XE#2136]) -> [SKIP][302] ([Intel XE#1124]) +6 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][303] ([Intel XE#1124]) -> [SKIP][304] ([Intel XE#2136]) +3 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][305] ([Intel XE#607]) -> [SKIP][306] ([Intel XE#2136])
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2-set2: [SKIP][307] ([Intel XE#1124]) -> [SKIP][308] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: [SKIP][309] ([Intel XE#2191]) -> [SKIP][310] ([Intel XE#2423] / [i915#2575])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: [SKIP][311] ([Intel XE#367]) -> [SKIP][312] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][313] ([Intel XE#2423] / [i915#2575]) -> [SKIP][314] ([Intel XE#367]) +4 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][315] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][316] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][317] ([Intel XE#2136]) -> [SKIP][318] ([Intel XE#455] / [Intel XE#787]) +6 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [FAIL][319] ([Intel XE#616]) -> [SKIP][320] ([Intel XE#2136])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][321] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][322] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][323] ([Intel XE#2907]) -> [SKIP][324] ([Intel XE#2136])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [SKIP][325] ([Intel XE#2136] / [Intel XE#2351]) -> [INCOMPLETE][326] ([Intel XE#1727])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][327] ([Intel XE#2136]) -> [SKIP][328] ([Intel XE#2907]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][329] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][330] ([Intel XE#2136]) +10 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-dg2-set2: [SKIP][331] ([Intel XE#2423] / [i915#2575]) -> [SKIP][332] ([Intel XE#306]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_chamelium_color@ctm-0-75.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: [SKIP][333] ([Intel XE#306]) -> [SKIP][334] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_chamelium_color@degamma.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][335] ([Intel XE#373]) -> [SKIP][336] ([Intel XE#2423] / [i915#2575]) +8 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg2-set2: [SKIP][337] ([Intel XE#2423] / [i915#2575]) -> [SKIP][338] ([Intel XE#373]) +11 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic:
- shard-bmg: [INCOMPLETE][339] ([Intel XE#2715] / [Intel XE#3468]) -> [SKIP][340] ([Intel XE#2341])
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_content_protection@atomic.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_content_protection@atomic.html
- shard-dg2-set2: [FAIL][341] ([Intel XE#1178]) -> [SKIP][342] ([Intel XE#2423] / [i915#2575])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@kms_content_protection@atomic.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: [SKIP][343] ([Intel XE#307]) -> [SKIP][344] ([Intel XE#2423] / [i915#2575])
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-1.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [FAIL][345] ([Intel XE#1178]) -> [SKIP][346] ([Intel XE#2341])
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_content_protection@lic-type-0.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-bmg: [SKIP][347] ([Intel XE#2341]) -> [DMESG-FAIL][348] ([Intel XE#3468])
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_content_protection@uevent.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: [SKIP][349] ([Intel XE#2423] / [i915#2575]) -> [SKIP][350] ([Intel XE#308]) +1 other test skip
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-dg2-set2: [SKIP][351] ([Intel XE#2423] / [i915#2575]) -> [SKIP][352] ([Intel XE#455]) +2 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_cursor_crc@cursor-random-32x10.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-sliding-256x256:
- shard-dg2-set2: [FAIL][353] -> [SKIP][354] ([Intel XE#2423] / [i915#2575])
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-256x256.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-256x256.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [SKIP][355] ([Intel XE#2291]) -> [DMESG-WARN][356] ([Intel XE#3468]) +1 other test dmesg-warn
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@torture-bo:
- shard-dg2-set2: [DMESG-FAIL][357] ([Intel XE#1727]) -> [SKIP][358] ([Intel XE#2423] / [i915#2575])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_cursor_legacy@torture-bo.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_cursor_legacy@torture-bo.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: [SKIP][359] ([Intel XE#455]) -> [SKIP][360] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_dsc@dsc-with-bpc-formats.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: [FAIL][361] ([Intel XE#1695]) -> [DMESG-FAIL][362] ([Intel XE#3468])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html
- shard-dg2-set2: [INCOMPLETE][363] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][364] ([Intel XE#2136])
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_fbcon_fbt@fbc-suspend.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][365] ([Intel XE#2423] / [i915#2575]) -> [SKIP][366] ([Intel XE#1138])
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_feature_discovery@display-4x.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-dg2-set2: [SKIP][367] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][368] ([Intel XE#1727])
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-bmg: [FAIL][369] ([Intel XE#2882]) -> [DMESG-FAIL][370] ([Intel XE#3468])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3:
- shard-bmg: [FAIL][371] ([Intel XE#2882]) -> [DMESG-WARN][372] ([Intel XE#3468]) +2 other tests dmesg-warn
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg2-set2: [FAIL][373] ([Intel XE#301]) -> [SKIP][374] ([Intel XE#2423] / [i915#2575])
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@c-dp2:
- shard-bmg: [DMESG-FAIL][375] ([Intel XE#3468]) -> [DMESG-WARN][376] ([Intel XE#3468]) +2 other tests dmesg-warn
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-dg2-set2: [SKIP][377] ([Intel XE#2136]) -> [SKIP][378] ([Intel XE#455]) +1 other test skip
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][379] ([Intel XE#455]) -> [SKIP][380] ([Intel XE#2136]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: [SKIP][381] ([Intel XE#2423] / [i915#2575]) -> [SKIP][382] ([i915#5274])
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][383] ([Intel XE#651]) -> [SKIP][384] ([Intel XE#2136]) +21 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][385] ([Intel XE#2311]) -> [SKIP][386] ([Intel XE#2312]) +13 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: [SKIP][387] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][388] ([Intel XE#651]) +11 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [FAIL][389] ([Intel XE#2333]) -> [INCOMPLETE][390] ([Intel XE#1727])
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: [FAIL][391] ([Intel XE#2333]) -> [DMESG-FAIL][392] ([Intel XE#3468]) +6 other tests dmesg-fail
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-dg2-set2: [INCOMPLETE][393] ([Intel XE#3468]) -> [SKIP][394] ([Intel XE#2136])
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [FAIL][395] ([Intel XE#2333]) -> [SKIP][396] ([Intel XE#2312]) +1 other test skip
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [DMESG-FAIL][397] ([Intel XE#3468]) -> [INCOMPLETE][398] ([Intel XE#1727])
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-bmg: [SKIP][399] ([Intel XE#2312]) -> [DMESG-FAIL][400] ([Intel XE#3468])
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][401] ([Intel XE#2312]) -> [FAIL][402] ([Intel XE#2333]) +8 other tests fail
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][403] ([Intel XE#2312]) -> [INCOMPLETE][404] ([Intel XE#1727] / [Intel XE#3468])
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [DMESG-FAIL][405] ([Intel XE#3468]) -> [SKIP][406] ([Intel XE#2312]) +2 other tests skip
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [DMESG-FAIL][407] ([Intel XE#3468]) -> [FAIL][408] ([Intel XE#2333]) +15 other tests fail
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: [SKIP][409] ([Intel XE#2136]) -> [SKIP][410] ([Intel XE#651]) +15 other tests skip
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][411] ([Intel XE#2312]) -> [SKIP][412] ([Intel XE#2311]) +23 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg2-set2: [SKIP][413] ([Intel XE#651]) -> [SKIP][414] ([Intel XE#2136] / [Intel XE#2351]) +12 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][415] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][416] ([Intel XE#658])
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2-set2: [SKIP][417] ([Intel XE#653]) -> [SKIP][418] ([Intel XE#2136]) +24 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][419] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][420] ([Intel XE#653]) +9 other tests skip
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][421] ([Intel XE#2312]) -> [SKIP][422] ([Intel XE#2313]) +21 other tests skip
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
- shard-dg2-set2: [SKIP][423] ([Intel XE#2136]) -> [SKIP][424] ([Intel XE#653]) +21 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][425] ([Intel XE#653]) -> [SKIP][426] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][427] ([Intel XE#2313]) -> [SKIP][428] ([Intel XE#2312]) +11 other tests skip
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2-set2: [SKIP][429] ([Intel XE#2927]) -> [SKIP][430] ([Intel XE#2136])
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_joiner@basic-ultra-joiner.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: [SKIP][431] ([Intel XE#2136]) -> [SKIP][432] ([Intel XE#346])
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_lease@simple-lease:
- shard-dg2-set2: [INCOMPLETE][433] ([Intel XE#1727]) -> [SKIP][434] ([Intel XE#2423] / [i915#2575])
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_lease@simple-lease.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_lease@simple-lease.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: [SKIP][435] ([Intel XE#455]) -> [SKIP][436] ([Intel XE#2423] / [i915#2575]) +9 other tests skip
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_plane_multiple@tiling-y.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-set2: [SKIP][437] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][438] ([Intel XE#2423] / [i915#2575])
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2-set2: [SKIP][439] ([Intel XE#2423] / [i915#2575]) -> [SKIP][440] ([Intel XE#2763] / [Intel XE#455])
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: [SKIP][441] ([Intel XE#2136]) -> [SKIP][442] ([Intel XE#870]) +1 other test skip
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_pm_backlight@fade.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: [SKIP][443] ([Intel XE#1122]) -> [SKIP][444] ([Intel XE#2136] / [Intel XE#2351])
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_pm_dc@dc3co-vpb-simulation.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: [SKIP][445] ([Intel XE#2136]) -> [SKIP][446] ([Intel XE#3309])
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: [DMESG-FAIL][447] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-FAIL][448] ([Intel XE#3468])
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_pm_dc@dc6-dpms.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2-set2: [SKIP][449] ([Intel XE#1129]) -> [SKIP][450] ([Intel XE#2136] / [Intel XE#2351])
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_pm_dc@dc6-psr.html
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][451] ([Intel XE#908]) -> [SKIP][452] ([Intel XE#2136])
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_pm_dc@deep-pkgc.html
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2-set2: [SKIP][453] ([Intel XE#2136]) -> [FAIL][454] ([Intel XE#3527])
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_pm_lpsp@kms-lpsp.html
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-dg2-set2: [DMESG-WARN][455] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][456] ([Intel XE#2446])
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_pm_rpm@cursor-dpms.html
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_pm_rpm@legacy-planes-dpms:
- shard-bmg: [INCOMPLETE][457] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468]) -> [DMESG-WARN][458] ([Intel XE#3468])
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_pm_rpm@legacy-planes-dpms.html
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_pm_rpm@legacy-planes-dpms.html
* igt@kms_pm_rpm@legacy-planes-dpms@plane-59:
- shard-bmg: [DMESG-WARN][459] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-WARN][460] ([Intel XE#3468]) +2 other tests dmesg-warn
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html
* igt@kms_pm_rpm@legacy-planes-dpms@plane-68:
- shard-bmg: [INCOMPLETE][461] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-WARN][462] ([Intel XE#1727] / [Intel XE#3468])
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-2/igt@kms_pm_rpm@legacy-planes-dpms@plane-68.html
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_pm_rpm@legacy-planes-dpms@plane-68.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2-set2: [DMESG-WARN][463] ([Intel XE#3468]) -> [SKIP][464] ([Intel XE#2446]) +1 other test skip
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2-set2: [SKIP][465] ([Intel XE#2446]) -> [DMESG-WARN][466] ([Intel XE#3468])
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][467] ([Intel XE#1489]) -> [SKIP][468] ([Intel XE#2136]) +7 other tests skip
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][469] ([Intel XE#2136]) -> [SKIP][470] ([Intel XE#1489]) +6 other tests skip
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-suspend:
- shard-dg2-set2: [SKIP][471] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][472] ([Intel XE#2850] / [Intel XE#929])
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_psr@fbc-pr-suspend.html
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][473] ([Intel XE#2136]) -> [SKIP][474] ([Intel XE#2850] / [Intel XE#929]) +7 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-dg2-set2: [SKIP][475] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][476] ([Intel XE#2136]) +9 other tests skip
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_psr@pr-cursor-plane-onoff.html
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][477] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][478] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@kms_psr@psr-dpms.html
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][479] ([Intel XE#2351]) -> [SKIP][480] ([Intel XE#2850] / [Intel XE#929])
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_psr@psr-sprite-plane-onoff.html
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: [SKIP][481] ([Intel XE#2136]) -> [SKIP][482] ([Intel XE#2939])
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-set2: [SKIP][483] ([Intel XE#2423] / [i915#2575]) -> [SKIP][484] ([Intel XE#3414])
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-90.html
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][485] ([Intel XE#1127]) -> [SKIP][486] ([Intel XE#2423] / [i915#2575])
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: [SKIP][487] ([Intel XE#3414]) -> [SKIP][488] ([Intel XE#2423] / [i915#2575])
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [SKIP][489] ([Intel XE#2423] / [i915#2575]) -> [SKIP][490] ([Intel XE#362])
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][491] ([Intel XE#2509]) -> [SKIP][492] ([Intel XE#2426])
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: [SKIP][493] ([Intel XE#2168]) -> [SKIP][494] ([Intel XE#2423] / [i915#2575])
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_vrr@lobf.html
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [SKIP][495] ([Intel XE#1499]) -> [DMESG-WARN][496] ([Intel XE#3468])
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-6/igt@kms_vrr@negative-basic.html
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: [SKIP][497] ([Intel XE#2423] / [i915#2575]) -> [SKIP][498] ([Intel XE#756])
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@kms_writeback@writeback-fb-id.html
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2-set2: [SKIP][499] ([Intel XE#756]) -> [SKIP][500] ([Intel XE#2423] / [i915#2575])
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@kms_writeback@writeback-invalid-parameters.html
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_writeback@writeback-invalid-parameters.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][501] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][502] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_ccs@suspend-resume:
- shard-dg2-set2: [SKIP][503] ([Intel XE#1130]) -> [INCOMPLETE][504] ([Intel XE#1727] / [Intel XE#3468])
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_ccs@suspend-resume.html
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/igt@xe_ccs@suspend-resume.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][505] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][506] ([Intel XE#1130]) +1 other test skip
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: [SKIP][507] ([Intel XE#1130]) -> [SKIP][508] ([Intel XE#1123]) +1 other test skip
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-dg2-set2: [SKIP][509] ([Intel XE#1126]) -> [SKIP][510] ([Intel XE#1130])
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0x369.html
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_eudebug@basic-client-th:
- shard-dg2-set2: [SKIP][511] ([Intel XE#1130]) -> [SKIP][512] ([Intel XE#2905]) +7 other tests skip
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_eudebug@basic-client-th.html
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@xe_eudebug@basic-client-th.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-dg2-set2: [SKIP][513] ([Intel XE#2905]) -> [SKIP][514] ([Intel XE#1130]) +8 other tests skip
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@xe_eudebug_online@basic-breakpoint.html
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: [SKIP][515] ([Intel XE#1130]) -> [FAIL][516] ([Intel XE#1600])
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-bmg: [INCOMPLETE][517] ([Intel XE#1473]) -> [INCOMPLETE][518] ([Intel XE#1473] / [Intel XE#3468])
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_exec_balancer@twice-cm-virtual-basic:
- shard-dg2-set2: [SKIP][519] ([Intel XE#1130]) -> [DMESG-WARN][520] ([Intel XE#1727])
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_exec_balancer@twice-cm-virtual-basic.html
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@xe_exec_balancer@twice-cm-virtual-basic.html
* igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate:
- shard-dg2-set2: [FAIL][521] -> [SKIP][522] ([Intel XE#1130])
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@once-basic:
- shard-dg2-set2: [SKIP][523] ([Intel XE#288]) -> [SKIP][524] ([Intel XE#1130]) +23 other tests skip
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@xe_exec_fault_mode@once-basic.html
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@xe_exec_fault_mode@once-basic.html
* igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm:
- shard-dg2-set2: [SKIP][525] ([Intel XE#1130]) -> [SKIP][526] ([Intel XE#288]) +22 other tests skip
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-dg2-set2: [SKIP][527] ([Intel XE#2360]) -> [SKIP][528] ([Intel XE#1130])
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-dg2-set2: [SKIP][529] ([Intel XE#1130]) -> [DMESG-WARN][530] ([Intel XE#3467]) +1 other test dmesg-warn
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
- shard-bmg: [DMESG-WARN][531] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][532] ([Intel XE#3343])
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-bmg: [DMESG-WARN][533] ([Intel XE#3343]) -> [DMESG-WARN][534] ([Intel XE#3343] / [Intel XE#3468]) +1 other test dmesg-warn
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-dg2-set2: [DMESG-WARN][535] ([Intel XE#3343]) -> [SKIP][536] ([Intel XE#1130]) +1 other test skip
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-dg2-set2: [SKIP][537] ([Intel XE#1130]) -> [DMESG-WARN][538] ([Intel XE#3343])
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
- shard-dg2-set2: [DMESG-WARN][539] ([Intel XE#3467]) -> [SKIP][540] ([Intel XE#1130]) +3 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [DMESG-FAIL][541] ([Intel XE#3467]) -> [DMESG-FAIL][542] ([Intel XE#3467] / [Intel XE#3468])
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
- shard-bmg: [DMESG-FAIL][543] ([Intel XE#3468]) -> [DMESG-FAIL][544] ([Intel XE#3467] / [Intel XE#3468])
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-bmg: [FAIL][545] -> [DMESG-FAIL][546] ([Intel XE#3467])
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][547] ([Intel XE#1130]) -> [SKIP][548] ([Intel XE#512])
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_mmap@small-bar.html
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/igt@xe_mmap@small-bar.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][549] ([Intel XE#3546]) -> [DMESG-WARN][550] ([Intel XE#3467]) +1 other test dmesg-warn
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_module_load@reload.html
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@xe_module_load@reload.html
* igt@xe_oa@invalid-oa-format-id:
- shard-dg2-set2: [SKIP][551] ([Intel XE#2541]) -> [SKIP][552] ([Intel XE#1130]) +7 other tests skip
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@xe_oa@invalid-oa-format-id.html
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@xe_oa@invalid-oa-format-id.html
* igt@xe_oa@invalid-remove-userspace-config:
- shard-dg2-set2: [SKIP][553] ([Intel XE#1130]) -> [SKIP][554] ([Intel XE#2541]) +6 other tests skip
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_oa@invalid-remove-userspace-config.html
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@xe_oa@invalid-remove-userspace-config.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][555] ([Intel XE#1337]) -> [SKIP][556] ([Intel XE#1130])
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-433/igt@xe_pat@display-vs-wb-transient.html
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [FAIL][557] ([Intel XE#1173]) -> [SKIP][558] ([Intel XE#1061])
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@xe_peer2peer@read.html
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: [SKIP][559] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][560] ([Intel XE#1130])
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-436/igt@xe_pm@d3cold-mmap-vram.html
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@xe_pm@d3cold-mmap-vram.html
- shard-bmg: [SKIP][561] ([Intel XE#2284]) -> [SKIP][562] ([Intel XE#1130])
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-1/igt@xe_pm@d3cold-mmap-vram.html
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: [SKIP][563] ([Intel XE#1130]) -> [SKIP][564] ([Intel XE#2284] / [Intel XE#366])
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_pm@d3cold-multiple-execs.html
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@d3hot-multiple-execs:
- shard-dg2-set2: [SKIP][565] ([Intel XE#1130]) -> [DMESG-WARN][566] ([Intel XE#3468])
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_pm@d3hot-multiple-execs.html
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@xe_pm@d3hot-multiple-execs.html
* igt@xe_pm@s2idle-basic-exec:
- shard-dg2-set2: [DMESG-WARN][567] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][568] ([Intel XE#1130])
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-435/igt@xe_pm@s2idle-basic-exec.html
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: [SKIP][569] ([Intel XE#1130]) -> [DMESG-WARN][570] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468])
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-466/igt@xe_pm@s4-vm-bind-unbind-all.html
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: [SKIP][571] ([Intel XE#1130]) -> [SKIP][572] ([Intel XE#579])
[571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html
[572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: [SKIP][573] ([Intel XE#944]) -> [SKIP][574] ([Intel XE#1130]) +1 other test skip
[573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-dg2-set2: [SKIP][575] ([Intel XE#1130]) -> [SKIP][576] ([Intel XE#944]) +2 other tests skip
[575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-huc.html
[576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_tlb@basic-tlb:
- shard-dg2-set2: [SKIP][577] ([Intel XE#1130]) -> [FAIL][578] ([Intel XE#2922])
[577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_tlb@basic-tlb.html
[578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/igt@xe_tlb@basic-tlb.html
* igt@xe_wedged@basic-wedged:
- shard-dg2-set2: [DMESG-WARN][579] ([Intel XE#2919]) -> [SKIP][580] ([Intel XE#1130])
[579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-463/igt@xe_wedged@basic-wedged.html
[580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@xe_wedged@basic-wedged.html
- shard-bmg: [DMESG-WARN][581] ([Intel XE#2919]) -> [SKIP][582] ([Intel XE#1130])
[581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-bmg-4/igt@xe_wedged@basic-wedged.html
[582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@xe_wedged@basic-wedged.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-dg2-set2: [SKIP][583] ([Intel XE#1130]) -> [ABORT][584] ([Intel XE#3075] / [Intel XE#3084])
[583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8119/shard-dg2-434/igt@xe_wedged@wedged-mode-toggle.html
[584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@xe_wedged@wedged-mode-toggle.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[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#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[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#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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[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#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[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#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#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#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084
[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#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
[Intel XE#3514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3514
[Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521
[Intel XE#3527]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3527
[Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
[Intel XE#3557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3557
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#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
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_8119 -> IGTPW_12162
IGTPW_12162: 12162
IGT_8119: 8119
xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380: e46649e7764a9f6868ccbcba7b8b23b413303380
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/index.html
[-- Attachment #2: Type: text/html, Size: 176446 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 i-g-t 3/4] tests/xe/xe_sriov_flr: Use SKIP for unmet subcheck prerequisites
2024-11-21 14:18 ` [PATCH v3 i-g-t 3/4] tests/xe/xe_sriov_flr: Use SKIP for unmet subcheck prerequisites Marcin Bernatowicz
@ 2024-11-22 10:39 ` Laguna, Lukasz
0 siblings, 0 replies; 11+ messages in thread
From: Laguna, Lukasz @ 2024-11-22 10:39 UTC (permalink / raw)
To: Marcin Bernatowicz, igt-dev
Cc: kamil.konieczny, adam.miszczak, jakub1.kolakowski,
michal.wajdeczko, michal.winiarski, narasimha.c.v,
piotr.piorkowski, satyanarayana.k.v.p, tomasz.lis
[-- Attachment #1: Type: text/plain, Size: 4156 bytes --]
On 11/21/2024 15:18, Marcin Bernatowicz wrote:
> Handle missing prerequisites by marking subchecks as SKIP instead of FAIL.
> This avoids misleading results suggesting FLR issues when tests haven't
> started or conditions aren't met.
>
> Signed-off-by: Marcin Bernatowicz<marcin.bernatowicz@linux.intel.com>
> Cc: Adam Miszczak<adam.miszczak@linux.intel.com>
> Cc: C V Narasimha<narasimha.c.v@intel.com>
> Cc: Jakub Kolakowski<jakub1.kolakowski@intel.com>
> Cc: K V P Satyanarayana<satyanarayana.k.v.p@intel.com>
> Cc: Lukasz Laguna<lukasz.laguna@intel.com>
> Cc: Michał Wajdeczko<michal.wajdeczko@intel.com>
> Cc: Michał Winiarski<michal.winiarski@intel.com>
> Cc: Piotr Piórkowski<piotr.piorkowski@intel.com>
> Cc: Tomasz Lis<tomasz.lis@intel.com>
> ---
> tests/intel/xe_sriov_flr.c | 21 +++++++++++++--------
> 1 file changed, 13 insertions(+), 8 deletions(-)
>
> diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c
> index 1049cffec..550d58bb9 100644
> --- a/tests/intel/xe_sriov_flr.c
> +++ b/tests/intel/xe_sriov_flr.c
> @@ -393,7 +393,12 @@ static int populate_ggtt_pte_offsets(struct ggtt_data *gdata)
> if (vf_id == 0)
> continue;
>
> - igt_assert(vf_id >= 1 && vf_id <= num_vfs);
> + if (vf_id < 1 || vf_id > num_vfs) {
> + set_skip_reason(&gdata->base, "Unexpected VF%u at range entry %u [%#lx-%#lx], num_vfs=%u\n",
> + vf_id, i, ranges[i].start, ranges[i].end, num_vfs);
> + free(ranges);
> + return -1;
> + }
>
> if (gdata->pte_offsets[vf_id].end) {
> set_skip_reason(&gdata->base, "Duplicate GGTT PTE offset range for VF%u\n",
> @@ -410,7 +415,7 @@ static int populate_ggtt_pte_offsets(struct ggtt_data *gdata)
>
> for (int vf_id = 1; vf_id <= num_vfs; ++vf_id)
> if (!gdata->pte_offsets[vf_id].end) {
> - set_fail_reason(&gdata->base,
> + set_skip_reason(&gdata->base,
> "Failed to find VF%u provisioned GGTT PTE offset range\n",
> vf_id);
> return -1;
> @@ -440,7 +445,7 @@ static void ggtt_subcheck_init(struct subcheck_data *data)
>
> populate_ggtt_pte_offsets(gdata);
> } else {
> - set_fail_reason(data, "xe_mmio is NULL\n");
> + set_skip_reason(data, "xe_mmio is NULL\n");
> }
> }
>
> @@ -460,7 +465,7 @@ static void ggtt_subcheck_prepare_vf(int vf_id, struct subcheck_data *data)
> for_each_pte_offset(pte_offset, &gdata->pte_offsets[vf_id]) {
> if (!set_pte_gpa(&gdata->ggtt, gdata->mmio, data->gt, pte_offset,
> (uint8_t)vf_id, &pte)) {
> - set_fail_reason(data,
> + set_skip_reason(data,
> "Prepare VF%u failed, unexpected gpa: Read PTE: %#lx at offset: %#x\n",
> vf_id, pte, pte_offset);
> return;
> @@ -696,7 +701,7 @@ static void lmem_subcheck_prepare_vf(int vf_id, struct subcheck_data *data)
>
> if (!lmem_mmap_write_munmap(data->pf_fd, vf_id,
> ldata->vf_lmem_size[vf_id], vf_id)) {
> - set_fail_reason(data, "LMEM write failed on VF%u\n", vf_id);
> + set_skip_reason(data, "LMEM write failed on VF%u\n", vf_id);
> }
> }
>
> @@ -758,12 +763,12 @@ static void regs_subcheck_prepare_vf(int vf_id, struct subcheck_data *data)
> struct pci_device *pci_dev = __igt_device_get_pci_device(data->pf_fd, vf_id);
>
> if (!pci_dev) {
> - set_fail_reason(data, "No PCI device found for VF%u\n", vf_id);
> + set_skip_reason(data, "No PCI device found for VF%u\n", vf_id);
> return;
> }
>
> if (intel_register_access_init(&rdata->mmio[vf_id], pci_dev, false)) {
> - set_fail_reason(data, "Failed to get access to VF%u MMIO\n", vf_id);
> + set_skip_reason(data, "Failed to get access to VF%u MMIO\n", vf_id);
> return;
> }
> }
> @@ -773,7 +778,7 @@ static void regs_subcheck_prepare_vf(int vf_id, struct subcheck_data *data)
>
> intel_register_write(&rdata->mmio[vf_id], reg, vf_id);
> if (intel_register_read(&rdata->mmio[vf_id], reg) != vf_id) {
> - set_fail_reason(data, "Registers write/read check failed on VF%u\n", vf_id);
> + set_skip_reason(data, "Registers write/read check failed on VF%u\n", vf_id);
> return;
> }
> }
LGTM,
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
[-- Attachment #2: Type: text/html, Size: 5551 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 i-g-t 4/4] lib/xe/xe_sriov_provisioning: Iterate only within valid PTE offsets
2024-11-21 14:18 ` [PATCH v3 i-g-t 4/4] lib/xe/xe_sriov_provisioning: Iterate only within valid PTE offsets Marcin Bernatowicz
@ 2024-11-22 10:43 ` Laguna, Lukasz
0 siblings, 0 replies; 11+ messages in thread
From: Laguna, Lukasz @ 2024-11-22 10:43 UTC (permalink / raw)
To: Marcin Bernatowicz, igt-dev
Cc: kamil.konieczny, adam.miszczak, jakub1.kolakowski,
michal.wajdeczko, michal.winiarski, narasimha.c.v,
piotr.piorkowski, satyanarayana.k.v.p, tomasz.lis
[-- Attachment #1: Type: text/plain, Size: 2092 bytes --]
On 11/21/2024 15:18, Marcin Bernatowicz wrote:
> Update range-checking logic to iterate only within valid PTE offsets
> based on MAX_WOPCM_SIZE and GUC_GGTT_TOP.
>
> Closes:https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3507
> Signed-off-by: Marcin Bernatowicz<marcin.bernatowicz@linux.intel.com>
> Cc: Adam Miszczak<adam.miszczak@linux.intel.com>
> Cc: C V Narasimha<narasimha.c.v@intel.com>
> Cc: Jakub Kolakowski<jakub1.kolakowski@intel.com>
> Cc: K V P Satyanarayana<satyanarayana.k.v.p@intel.com>
> Cc: Lukasz Laguna<lukasz.laguna@intel.com>
> Cc: Michał Wajdeczko<michal.wajdeczko@intel.com>
> Cc: Michał Winiarski<michal.winiarski@intel.com>
> Cc: Piotr Piórkowski<piotr.piorkowski@intel.com>
> Cc: Tomasz Lis<tomasz.lis@intel.com>
> ---
> lib/xe/xe_sriov_provisioning.c | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/lib/xe/xe_sriov_provisioning.c b/lib/xe/xe_sriov_provisioning.c
> index d448a53d8..67ae9cf54 100644
> --- a/lib/xe/xe_sriov_provisioning.c
> +++ b/lib/xe/xe_sriov_provisioning.c
> @@ -39,6 +39,10 @@ const char *xe_sriov_shared_res_to_string(enum xe_sriov_shared_res res)
> #define PRE_1250_IP_VER_GGTT_PTE_VFID_MASK GENMASK_ULL(4, 2)
> #define GGTT_PTE_VFID_MASK GENMASK_ULL(11, 2)
> #define GGTT_PTE_VFID_SHIFT 2
> +#define GUC_GGTT_TOP 0xFEE00000
> +#define MAX_WOPCM_SIZE SZ_8M
> +#define START_PTE_OFFSET (MAX_WOPCM_SIZE / SZ_4K * sizeof(xe_ggtt_pte_t))
> +#define MAX_PTE_OFFSET (GUC_GGTT_TOP / SZ_4K * sizeof(xe_ggtt_pte_t))
>
> static uint64_t get_vfid_mask(int fd)
> {
> @@ -112,7 +116,8 @@ int xe_sriov_find_ggtt_provisioned_pte_offsets(int pf_fd, int gt, struct xe_mmio
> *ranges = NULL;
> *nr_ranges = 0;
>
> - for (uint32_t offset = 0; offset < SZ_8M; offset += sizeof(xe_ggtt_pte_t)) {
> + for (uint32_t offset = START_PTE_OFFSET; offset < MAX_PTE_OFFSET;
> + offset += sizeof(xe_ggtt_pte_t)) {
> pte = xe_mmio_ggtt_read(mmio, gt, offset);
> vf_id = (pte & vfid_mask) >> GGTT_PTE_VFID_SHIFT;
>
LGTM,
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
[-- Attachment #2: Type: text/html, Size: 3651 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: ✗ Xe.CI.Full: failure for Improvements for xe_sriov_flr test and xe_mmio lib (rev3)
2024-11-22 2:31 ` ✗ Xe.CI.Full: " Patchwork
@ 2024-11-22 13:29 ` Bernatowicz, Marcin
0 siblings, 0 replies; 11+ messages in thread
From: Bernatowicz, Marcin @ 2024-11-22 13:29 UTC (permalink / raw)
To: igt-dev, lgci.bug.filing
On 11/22/2024 3:31 AM, Patchwork wrote:
> *Patch Details*
> *Series:* Improvements for xe_sriov_flr test and xe_mmio lib (rev3)
> *URL:* https://patchwork.freedesktop.org/series/141556/ <https://
> patchwork.freedesktop.org/series/141556/>
> *State:* failure
> *Details:* https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> index.html <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> index.html>
>
>
> CI Bug Log - changes from XEIGT_8119_full -> XEIGTPW_12162_full
>
>
> Summary
>
> *FAILURE*
>
> Serious unknown changes coming with XEIGTPW_12162_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_12162_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_12162_full:
>
>
> IGT changes
>
>
> Possible regressions
>
> *
>
> igt@core_hotunplug@unbind-rebind:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-4/igt@core_hotunplug@unbind-rebind.html> ->
> INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-bmg-8/igt@core_hotunplug@unbind-rebind.html>
> *
>
> igt@kms_cursor_crc@cursor-alpha-opaque@pipe-a-dp-2:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-1/igt@kms_cursor_crc@cursor-alpha-
> opaque@pipe-a-dp-2.html> -> FAIL <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_cursor_crc@cursor-
> alpha-opaque@pipe-a-dp-2.html>
> *
>
> igt@kms_dp_aux_dev:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-8/igt@kms_dp_aux_dev.html> -> SKIP <https://
> intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/
> igt@kms_dp_aux_dev.html>
> *
>
> igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-
> factor-0-25@pipe-d.html> -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/
> igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html> +2
> other tests dmesg-warn
> *
>
> igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-vram01:
>
> o shard-dg2-set2: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/
> igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-
> vram01.html>
> *
>
> igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
>
> o shard-lnl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-2/igt@xe_fault_injection@vm-bind-
> fail-xe_vma_ops_alloc.html>
> *
>
> igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
>
> o shard-lnl: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-lnl-8/igt@xe_fault_injection@vm-create-fail-
> xe_vm_create_scratch.html> -> ABORT <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-5/
> igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html>
>
>
> Warnings
>
> *
>
> igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-
> scndscrn-cur-indfb-draw-render.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-
> draw-render.html>
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-pri-
> indfb-multidraw.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-
> multidraw.html>
> *
>
> igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
>
> o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-
> vm_bind_ioctl_ops_execute.html> -> FAIL <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/
> igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html>
Not related to the change.
Regards,
marcin
>
>
> New tests
>
> New tests have been introduced between XEIGT_8119_full and
> XEIGTPW_12162_full:
>
>
> New IGT tests (1)
>
> * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4:
> o Statuses : 1 pass(s)
> o Exec time: [0.42] s
>
>
> Known issues
>
> Here are the changes found in XEIGTPW_12162_full that come from known
> issues:
>
>
> IGT changes
>
>
> Issues hit
>
> *
>
> igt@core_getstats:
>
> o shard-dg2-set2: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-463/igt@core_getstats.html> -> SKIP <https://
> intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/
> igt@core_getstats.html> (Intel XE#2423 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2423>)
> *
>
> igt@fbdev@unaligned-write:
>
> o shard-dg2-set2: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-435/igt@fbdev@unaligned-write.html> -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-466/igt@fbdev@unaligned-write.html> (Intel XE#2134 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2134>)
> *
>
> igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-6:
>
> o shard-dg2-set2: NOTRUN -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/
> igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-
> a-6.html> (Intel XE#3468 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/3468>) +1 other test dmesg-warn
> *
>
> igt@kms_async_flips@crc:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_async_flips@crc.html> -> DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-1/igt@kms_async_flips@crc.html> (Intel XE#1727 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@kms_async_flips@crc@pipe-a-dp-2:
>
> o shard-bmg: NOTRUN -> DMESG-FAIL <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-bmg-1/
> igt@kms_async_flips@crc@pipe-a-dp-2.html> (Intel XE#1727
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> /
> Intel XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3468>)
> *
>
> igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_async_flips@crc@pipe-a-hdmi-
> a-3.html> -> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-bmg-1/igt@kms_async_flips@crc@pipe-a-hdmi-
> a-3.html> (Intel XE#3557 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/3557>)
> *
>
> igt@kms_big_fb@4-tiled-8bpp-rotate-270:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_big_fb@4-
> tiled-8bpp-rotate-270.html> (Intel XE#316 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/316>)
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
>
> o shard-dg2-set2: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-435/igt@kms_big_fb@4-tiled-max-hw-
> stride-32bpp-rotate-0-hflip.html> -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/
> igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html>
> (Intel XE#2136 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2136>) +24 other tests skip
> *
>
> igt@kms_big_fb@linear-64bpp-rotate-270:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_big_fb@linear-64bpp-
> rotate-270.html> (Intel XE#2327 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2327>) +1 other test skip
> *
>
> igt@kms_big_fb@x-tiled-8bpp-rotate-270:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-5/igt@kms_big_fb@x-tiled-8bpp-
> rotate-270.html> (Intel XE#1407 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1407>) +1 other test skip
> *
>
> igt@kms_big_fb@y-tiled-32bpp-rotate-0:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-5/igt@kms_big_fb@y-tiled-32bpp-
> rotate-0.html> (Intel XE#1124 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1124>)
> *
>
> igt@kms_big_fb@y-tiled-addfb:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_big_fb@y-tiled-
> addfb.html> (Intel XE#619 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/619>)
> *
>
> igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_big_fb@yf-tiled-16bpp-
> rotate-270.html> (Intel XE#1124 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1124>) +2 other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_big_fb@yf-
> tiled-8bpp-rotate-270.html> (Intel XE#1124 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +1 other test
> skip
> *
>
> igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_bw@connected-linear-
> tiling-4-displays-2560x1440p.html> (Intel XE#2314 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel
> XE#2894 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>)
> *
>
> igt@kms_bw@linear-tiling-2-displays-2160x1440p:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-5/igt@kms_bw@linear-tiling-2-
> displays-2160x1440p.html> (Intel XE#367 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/367>)
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_bw@linear-tiling-2-
> displays-2160x1440p.html> (Intel XE#367 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/367>)
> *
>
> igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-7/igt@kms_ccs@bad-pixel-format-4-
> tiled-mtl-rc-ccs-cc.html> (Intel XE#2887 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +5 other
> tests skip
> *
>
> igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-c-dp-2:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_ccs@crc-primary-
> basic-4-tiled-lnl-ccs@pipe-c-dp-2.html> (Intel XE#2652 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +3
> other tests skip
> *
>
> igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-
> bmg-ccs.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_ccs@crc-primary-
> suspend-4-tiled-bmg-ccs.html> (Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test
> incomplete
> *
>
> igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-
> basic-4-tiled-mtl-rc-ccs.html> (Intel XE#2887 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +6 other
> tests skip
> *
>
> igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-
> hdmi-a-6:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_ccs@crc-sprite-
> planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html> (Intel
> XE#787 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/787>) +76 other tests skip
> *
>
> igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-2/igt@kms_ccs@random-ccs-data-4-
> tiled-bmg-ccs.html> (Intel XE#2669 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2669>) +3 other
> tests skip
> *
>
> igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
>
> o shard-dg2-set2: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/
> igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html>
> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1727> / Intel XE#3113 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3113>)
> *
>
> igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_ccs@random-ccs-
> data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html> (Intel XE#455
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> /
> Intel XE#787 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/787>) +12 other tests skip
> *
>
> igt@kms_cdclk@plane-scaling:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-2/igt@kms_cdclk@plane-
> scaling.html> (Intel XE#2724 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2724>)
> *
>
> igt@kms_chamelium_audio@hdmi-audio:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-463/
> igt@kms_chamelium_audio@hdmi-audio.html> (Intel XE#373 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +2 other tests
> skip
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-3/igt@kms_chamelium_audio@hdmi-
> audio.html> (Intel XE#373 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/373>) +3 other tests skip
> *
>
> igt@kms_chamelium_color@gamma:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-2/
> igt@kms_chamelium_color@gamma.html> (Intel XE#2325 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2325>) +1 other test
> skip
> *
>
> igt@kms_chamelium_edid@dp-mode-timings:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_chamelium_edid@dp-mode-
> timings.html> (Intel XE#2252 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2252>) +4 other tests skip
> *
>
> igt@kms_color@ctm-0-25:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_color@ctm-0-25.html> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-1/igt@kms_color@ctm-0-25.html> (Intel XE#877 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/877>) +1 other test
> dmesg-warn
> *
>
> igt@kms_cursor_crc@cursor-offscreen-512x512:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_cursor_crc@cursor-
> offscreen-512x512.html> (Intel XE#2321 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +2 other
> tests skip
> *
>
> igt@kms_cursor_crc@cursor-sliding-512x170:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-463/
> igt@kms_cursor_crc@cursor-sliding-512x170.html> (Intel XE#308
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>)
> *
>
> igt@kms_cursor_crc@cursor-sliding-64x64:
>
> o shard-dg2-set2: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@kms_cursor_crc@cursor-
> sliding-64x64.html> -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_cursor_crc@cursor-
> sliding-64x64.html> (Intel XE#2423 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> +80 other tests skip
> *
>
> igt@kms_cursor_edge_walk@256x256-right-edge:
>
> o shard-lnl: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-lnl-8/igt@kms_cursor_edge_walk@256x256-right-
> edge.html> -> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-lnl-7/igt@kms_cursor_edge_walk@256x256-right-
> edge.html> (Intel XE#2577 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2577>) +1 other test fail
> *
>
> igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-4/igt@kms_cursor_legacy@cursora-
> vs-flipb-atomic-transitions-varying-size.html> (Intel XE#309
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>)
> *
>
> igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-
> toggle.html> -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-
> toggle.html> (Intel XE#2291 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2291>) +1 other test skip
> *
>
> igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
>
> o shard-bmg: NOTRUN -> DMESG-WARN <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-bmg-8/
> igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html> (Intel
> XE#877 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>)
> *
>
> igt@kms_flip@2x-blocking-absolute-wf_vblank@ab-hdmi-a6-dp4:
>
> o shard-dg2-set2: NOTRUN -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/
> igt@kms_flip@2x-blocking-absolute-wf_vblank@ab-hdmi-a6-dp4.html>
> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1727>)
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-
> interruptible@cd-dp2-hdmi-a3.html> -> FAIL <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_flip@2x-
> flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html> (Intel
> XE#3486 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486>)
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-
> dp2-hdmi-a3.html> -> FAIL <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_flip@2x-flip-vs-
> expired-vblank@ab-dp2-hdmi-a3.html> (Intel XE#2882 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2882>)
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4:
>
> o shard-dg2-set2: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-433/igt@kms_flip@2x-flip-vs-
> expired-vblank@bc-hdmi-a6-dp4.html> (Intel XE#301 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/301>) +5 other tests
> fail
> *
>
> igt@kms_flip@2x-modeset-vs-vblank-race:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_flip@2x-modeset-vs-
> vblank-race.html> (Intel XE#2316 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
> *
>
> igt@kms_flip@2x-plain-flip-fb-recreate:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-
> recreate.html> -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-
> recreate.html> (Intel XE#2316 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2316>) +4 other tests skip
> *
>
> igt@kms_flip@busy-flip:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_flip@busy-
> flip.html> (Intel XE#2423 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2423> / i915#2575 <https://
> gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +48 other
> tests skip
> *
>
> igt@kms_flip@flip-vs-absolute-wf_vblank@b-dp2:
>
> o shard-bmg: NOTRUN -> DMESG-WARN <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_flip@flip-vs-
> absolute-wf_vblank@b-dp2.html> (Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +14 other
> tests dmesg-warn
> *
>
> igt@kms_flip@wf_vblank-ts-check:
>
> o shard-lnl: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check.html> ->
> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-lnl-2/igt@kms_flip@wf_vblank-ts-check.html> (Intel XE#3149
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149> /
> Intel XE#886 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/886>)
> *
>
> igt@kms_flip@wf_vblank-ts-check@b-edp1:
>
> o shard-lnl: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@b-
> edp1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check@b-
> edp1.html> (Intel XE#886 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/886>) +1 other test fail
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-
> downscaling:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-8/
> igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-
> downscaling.html> (Intel XE#2380 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +1 other test
> skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-2/
> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-
> downscaling.html> (Intel XE#1401 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel
> XE#1745 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1745>) +1 other test skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-
> downscaling@pipe-a-default-mode:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-2/
> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-
> downscaling@pipe-a-default-mode.html> (Intel XE#1401 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) +1 other test
> skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-
> upscaling@pipe-a-valid-mode:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-433/
> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-
> upscaling@pipe-a-valid-mode.html> (Intel XE#455 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +4 other tests
> skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-6/
> igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-
> move.html> (Intel XE#2312 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2312>) +3 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-2/
> igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-
> blt.html> (Intel XE#2311 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2311>) +9 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
>
> o shard-dg2-set2: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-
> primscrn-cur-indfb-draw-mmap-wc.html> -> SKIP <https://intel-
> gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-
> mmap-wc.html> (Intel XE#2136 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2136> / Intel XE#2351 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +7 other
> tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
>
> o shard-bmg: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-bmg-1/
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-
> move.html> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1727> / Intel XE#2050 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2050>)
> *
>
> igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-463/
> igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-
> render.html> (Intel XE#651 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/651>) +5 other tests skip
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-5/
> igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-
> render.html> (Intel XE#651 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/651>) +3 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-8/
> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-
> onoff.html> (Intel XE#2313 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2313>) +10 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-433/
> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-
> move.html> (Intel XE#653 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/653>) +1 other test skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-466/
> igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html> (Intel
> XE#2136 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2136> / Intel XE#2351 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2351>) +18 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-4/
> igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html> (Intel
> XE#2352 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352>)
> *
>
> igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-hdmi-a-3:
>
> o shard-bmg: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-6/
> igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-hdmi-a-3.html>
> (Intel XE#2333 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2333>) +4 other tests fail
> *
>
> igt@kms_frontbuffer_tracking@plane-fbc-rte:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-2/
> igt@kms_frontbuffer_tracking@plane-fbc-rte.html> (Intel XE#2350
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350>)
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-4/
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-
> render.html> (Intel XE#656 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/656>) +9 other tests skip
> *
>
> igt@kms_hdmi_inject@inject-audio:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-7/igt@kms_hdmi_inject@inject-
> audio.html> (Intel XE#1470 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1470> / Intel XE#2853 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2853>)
> *
>
> igt@kms_hdr@static-toggle-suspend:
>
> o shard-bmg: NOTRUN -> DMESG-FAIL <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_hdr@static-toggle-
> suspend.html> (Intel XE#3468 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3468>) +9 other tests dmesg-fail
> *
>
> igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-8/igt@kms_pipe_crc_basic@suspend-read-
> crc@pipe-b-hdmi-a-3.html> -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-2/
> igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html>
> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1727> / Intel XE#3468 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3468>) +1 other test incomplete
> *
>
> igt@kms_plane_alpha_blend@alpha-basic@pipe-a-dp-2:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-8/igt@kms_plane_alpha_blend@alpha-basic@pipe-
> a-dp-2.html> -> DMESG-FAIL <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-1/
> igt@kms_plane_alpha_blend@alpha-basic@pipe-a-dp-2.html> (Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3468>) +17 other tests dmesg-fail
> *
>
> igt@kms_plane_lowres@tiling-y:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_plane_lowres@tiling-
> y.html> (Intel XE#2393 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2393>)
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-
> factor-0-25@pipe-a:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_plane_scaling@planes-
> downscale-factor-0-25-upscale-factor-0-25@pipe-a.html> (Intel
> XE#2763 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2763>) +4 other tests skip
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-436/
> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-
> factor-0-25@pipe-a.html> (Intel XE#2763 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +2 other
> tests skip
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-
> factor-0-25@pipe-d:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-436/
> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-
> factor-0-25@pipe-d.html> (Intel XE#2763 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>)
> *
>
> igt@kms_plane_scaling@planes-upscale-factor-0-25:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-
> factor-0-25.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-bmg-4/
> igt@kms_plane_scaling@planes-upscale-factor-0-25.html> (Intel
> XE#2566 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2566>) +1 other test dmesg-warn
> *
>
> igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-6:
>
> o shard-dg2-set2: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_pm_lpsp@kms-
> lpsp@pipe-a-hdmi-a-6.html> (Intel XE#3527 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3527>)
> *
>
> igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_pm_rpm@dpms-
> mode-unset-non-lpsp.html> (Intel XE#2446 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2446>)
> *
>
> igt@kms_pm_rpm@dpms-non-lpsp:
>
> o shard-dg2-set2: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-435/igt@kms_pm_rpm@dpms-non-lpsp.html> ->
> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-434/igt@kms_pm_rpm@dpms-non-lpsp.html> (Intel XE#2446
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>) +1
> other test skip
> *
>
> igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-
> plane-move-continuous-sf.html> (Intel XE#1489 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +3 other
> tests skip
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-cursor-
> plane-move-continuous-sf.html> (Intel XE#2893 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2893>)
> *
>
> igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_psr2_sf@fbc-
> psr2-overlay-plane-update-continuous-sf.html> (Intel XE#1489
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>)
> *
>
> igt@kms_psr@fbc-psr2-dpms:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_psr@fbc-psr2-
> dpms.html> (Intel XE#2850 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2850> / Intel XE#929 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +3 other tests
> skip
> *
>
> igt@kms_psr@fbc-psr2-primary-render:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_psr@fbc-psr2-
> primary-render.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +52 other
> tests skip
> *
>
> igt@kms_psr@pr-dpms:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-3/igt@kms_psr@pr-dpms.html>
> (Intel XE#1406 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1406>)
> *
>
> igt@kms_psr@psr-primary-page-flip:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_psr@psr-primary-page-
> flip.html> (Intel XE#2234 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2234> / Intel XE#2850 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +4 other
> tests skip
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_psr@psr-primary-
> page-flip.html> (Intel XE#2351 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2351>)
> *
>
> igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-8/igt@kms_rotation_crc@primary-4-tiled-
> reflect-x-180.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-bmg-6/
> igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html> (Intel
> XE#1727 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1727>) +1 other test incomplete
> *
>
> igt@kms_rotation_crc@sprite-rotation-270:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_rotation_crc@sprite-
> rotation-270.html> (Intel XE#3414 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3414>)
> *
>
> igt@kms_rotation_crc@sprite-rotation-90:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-6/igt@kms_rotation_crc@sprite-
> rotation-90.html> (Intel XE#3414 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3414>)
> *
>
> igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
>
> o shard-lnl: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-lnl-8/igt@kms_universal_plane@cursor-fb-
> leak@pipe-c-edp-1.html> -> FAIL <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-lnl-8/
> igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html> (Intel
> XE#899 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/899>) +1 other test fail
> *
>
> igt@kms_vrr@cmrr@pipe-a-edp-1:
>
> o shard-lnl: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html> -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html> (Intel XE#2159
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159>) +1
> other test fail
> *
>
> igt@kms_vrr@seamless-rr-switch-drrs:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-
> drrs.html> (Intel XE#1499 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1499>)
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-
> drrs.html> (Intel XE#1499 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1499>) +1 other test skip
> *
>
> igt@kms_writeback@writeback-check-output:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-463/
> igt@kms_writeback@writeback-check-output.html> (Intel XE#756
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>)
> *
>
> igt@kms_writeback@writeback-check-output-xrgb2101010:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_writeback@writeback-
> check-output-xrgb2101010.html> (Intel XE#756 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/756>)
> *
>
> igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-vram01-vram01:
>
> o shard-dg2-set2: NOTRUN -> DMESG-FAIL <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/
> igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-vram01-
> vram01.html> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1727> / Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +4 other
> tests dmesg-fail
> *
>
> igt@xe_eudebug@basic-vm-bind:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-3/igt@xe_eudebug@basic-vm-
> bind.html> (Intel XE#2905 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2905>) +1 other test skip
> *
>
> igt@xe_eudebug@multigpu-basic-client:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-2/igt@xe_eudebug@multigpu-basic-
> client.html> (Intel XE#2905 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2905>) +5 other tests skip
> *
>
> igt@xe_eudebug_online@resume-dss:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-463/
> igt@xe_eudebug_online@resume-dss.html> (Intel XE#2905 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +2 other
> tests skip
> *
>
> igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-6/igt@xe_evict_ccs@evict-
> overcommit-parallel-nofree-samefd.html> (Intel XE#688 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +4 other tests
> skip
> *
>
> igt@xe_exec_balancer@once-parallel-rebind:
>
> o shard-dg2-set2: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-436/igt@xe_exec_balancer@once-parallel-
> rebind.html> -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-dg2-466/igt@xe_exec_balancer@once-parallel-
> rebind.html> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1130>) +147 other tests skip
> *
>
> igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-1/igt@xe_exec_basic@multigpu-
> many-execqueues-many-vm-basic-defer-mmap.html> (Intel XE#2322
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +3
> other tests skip
> *
>
> igt@xe_exec_basic@multigpu-once-basic-defer-bind:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-1/igt@xe_exec_basic@multigpu-
> once-basic-defer-bind.html> (Intel XE#1392 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +1 other test
> skip
> *
>
> igt@xe_exec_fault_mode@many-basic-prefetch:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-463/
> igt@xe_exec_fault_mode@many-basic-prefetch.html> (Intel XE#288
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +2
> other tests skip
> *
>
> igt@xe_exec_fault_mode@twice-userptr-rebind:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-2/igt@xe_exec_fault_mode@twice-userptr-
> rebind.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-4/igt@xe_exec_fault_mode@twice-
> userptr-rebind.html> (Intel XE#1727 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +3 other
> tests dmesg-warn
> *
>
> igt@xe_exec_sip_eudebug@wait-writesip-nodebug:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-4/igt@xe_exec_sip_eudebug@wait-writesip-
> nodebug.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-1/igt@xe_exec_sip_eudebug@wait-
> writesip-nodebug.html> (Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel
> XE#3514 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3514>)
> *
>
> igt@xe_exec_sip_eudebug@wait-writesip-
> nodebug@drm_xe_engine_class_render0:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-4/igt@xe_exec_sip_eudebug@wait-writesip-
> nodebug@drm_xe_engine_class_render0.html> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-1/igt@xe_exec_sip_eudebug@wait-writesip-
> nodebug@drm_xe_engine_class_render0.html> (Intel XE#3468
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +71
> other tests dmesg-warn
> *
>
> igt@xe_exec_threads@threads-bal-mixed-fd-basic:
>
> o shard-dg2-set2: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-435/igt@xe_exec_threads@threads-bal-mixed-fd-
> basic.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-dg2-435/igt@xe_exec_threads@threads-
> bal-mixed-fd-basic.html> (Intel XE#1727 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
> *
>
> igt@xe_exec_threads@threads-fd-userptr-invalidate:
>
> o shard-bmg: NOTRUN -> DMESG-WARN <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-bmg-1/
> igt@xe_exec_threads@threads-fd-userptr-invalidate.html> (Intel
> XE#1727 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
> *
>
> igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
>
> o shard-lnl: NOTRUN -> DMESG-WARN <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-lnl-6/
> igt@xe_fault_injection@inject-fault-probe-function-
> xe_guc_relay_init.html> (Intel XE#3343 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3343>)
> o shard-bmg: NOTRUN -> DMESG-WARN <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-bmg-8/
> igt@xe_fault_injection@inject-fault-probe-function-
> xe_guc_relay_init.html> (Intel XE#3343 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3343>)
> *
>
> igt@xe_gt_freq@freq_reset_multiple:
>
> o shard-lnl: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-lnl-3/igt@xe_gt_freq@freq_reset_multiple.html> ->
> DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-lnl-3/igt@xe_gt_freq@freq_reset_multiple.html>
> (Intel XE#3184 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3184>)
> *
>
> igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-4/
> igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html> (Intel
> XE#2229 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>)
> *
>
> igt@xe_live_ktest@xe_eudebug:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-2/
> igt@xe_live_ktest@xe_eudebug.html> (Intel XE#2833 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2833>)
> *
>
> igt@xe_module_load@load:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-1/igt@xe_module_load@load.html>
> (Intel XE#2457 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2457>)
> *
>
> igt@xe_module_load@many-reload:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@xe_module_load@many-reload.html> ->
> DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-bmg-2/igt@xe_module_load@many-reload.html>
> (Intel XE#3467 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3467>)
> *
>
> igt@xe_oa@syncs-userptr-wait:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@xe_oa@syncs-userptr-
> wait.html> (Intel XE#2541 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2541>)
> *
>
> igt@xe_pm@d3cold-basic:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-4/igt@xe_pm@d3cold-basic.html>
> (Intel XE#2284 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2284> / Intel XE#366 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/366>)
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-4/igt@xe_pm@d3cold-basic.html>
> (Intel XE#2284 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2284>) +1 other test skip
> *
>
> igt@xe_pm@d3hot-mmap-system:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-8/igt@xe_pm@d3hot-mmap-system.html> -> DMESG-
> WARN <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-bmg-1/igt@xe_pm@d3hot-mmap-system.html> (Intel XE#1727
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> /
> Intel XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3468>) +7 other tests dmesg-warn
> *
>
> igt@xe_pm@s2idle-vm-bind-userptr:
>
> o shard-bmg: NOTRUN -> DMESG-WARN <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-
> userptr.html> (Intel XE#1616 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1616> / Intel XE#1727 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@xe_pm@s3-vm-bind-userptr:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html> ->
> DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-bmg-4/igt@xe_pm@s3-vm-bind-userptr.html>
> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1727> / Intel XE#3468 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3468> / Intel XE#569 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
> *
>
> igt@xe_pm@s4-basic-exec:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@xe_pm@s4-basic-
> exec.html> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1130>) +70 other tests skip
> *
>
> igt@xe_pm@s4-vm-bind-userptr:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@xe_pm@s4-vm-bind-userptr.html> ->
> DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html>
> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1727> / Intel XE#2280 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2280> / Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@xe_query@multigpu-query-invalid-query:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-4/igt@xe_query@multigpu-query-
> invalid-query.html> (Intel XE#944 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/944>)
> *
>
> igt@xe_query@multigpu-query-topology:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-6/igt@xe_query@multigpu-query-
> topology.html> (Intel XE#944 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/944>) +1 other test skip
>
>
> Possible fixes
>
> *
>
> igt@core_getversion@basic:
>
> o shard-dg2-set2: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@core_getversion@basic.html> (Intel
> XE#3440 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3440>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-463/igt@core_getversion@basic.html>
> *
>
> igt@core_hotunplug@hotrebind:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@core_hotunplug@hotrebind.html> (Intel
> XE#1885 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1885>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-436/igt@core_hotunplug@hotrebind.html>
> +1 other test pass
> *
>
> igt@core_setmaster_vs_auth:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@core_setmaster_vs_auth.html> (Intel
> XE#2423 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2423>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-433/igt@core_setmaster_vs_auth.html>
> *
>
> igt@kms_atomic_interruptible@atomic-setmode@pipe-a-hdmi-a-6:
>
> o shard-dg2-set2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8119/shard-dg2-435/
> igt@kms_atomic_interruptible@atomic-setmode@pipe-a-hdmi-
> a-6.html> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/1727> / Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-463/igt@kms_atomic_interruptible@atomic-setmode@pipe-a-hdmi-
> a-6.html> +1 other test pass
> *
>
> igt@kms_big_fb@4-tiled-16bpp-rotate-180:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_big_fb@4-tiled-16bpp-
> rotate-180.html> (Intel XE#2136 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2136> / Intel XE#2351 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-433/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html> +6 other
> tests pass
> *
>
> igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-
> displays-2560x1440p.html> (Intel XE#2314 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel
> XE#2894 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2894>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-
> displays-2560x1440p.html>
> *
>
> igt@kms_cursor_crc@cursor-onscreen-128x128:
>
> o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-2/igt@kms_cursor_crc@cursor-
> onscreen-128x128.html> (Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-8/igt@kms_cursor_crc@cursor-onscreen-128x128.html> +29 other
> tests pass
> *
>
> igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-dp-2:
>
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-1/igt@kms_cursor_edge_walk@256x256-top-
> bottom@pipe-d-dp-2.html> (Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-8/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-
> dp-2.html> +126 other tests pass
> *
>
> igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
>
> o shard-bmg: INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-
> atomic-transitions-varying-size.html> (Intel XE#3226 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3226>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-
> varying-size.html>
> *
>
> igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-
> legacy.html> (Intel XE#2291 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2291>) -> PASS <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-bmg-4/
> igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> +5 other
> tests pass
> *
>
> igt@kms_dither@fb-8bpc-vs-panel-6bpc:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html>
> (Intel XE#1340 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1340>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-
> panel-6bpc.html>
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
>
> o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-
> interruptible@bc-dp2-hdmi-a3.html> (Intel XE#3321 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3321> / Intel
> XE#3486 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3486>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-
> vblank-interruptible@bc-dp2-hdmi-a3.html>
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
>
> o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-
> interruptible@bd-dp2-hdmi-a3.html> (Intel XE#3486 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3486>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-
> dp2-hdmi-a3.html>
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
>
> o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-
> dp2-hdmi-a3.html> (Intel XE#2882 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html>
> *
>
> igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3:
>
> o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-
> hdmi-a3.html> (Intel XE#1727 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1727> / Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-4/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html> +13
> other tests pass
> *
>
> igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3:
>
> o shard-bmg: INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend@bd-dp2-
> hdmi-a3.html> (Intel XE#1727 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1727> / Intel XE#2635 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2635> / Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3468>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend@bd-
> dp2-hdmi-a3.html>
> *
>
> igt@kms_flip@2x-nonexisting-fb:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html> (Intel
> XE#2316 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2316>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html>
> +5 other tests pass
> *
>
> igt@kms_flip@flip-vs-rmfb@d-hdmi-a3:
>
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-1/igt@kms_flip@flip-vs-rmfb@d-hdmi-
> a3.html> -> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-bmg-2/igt@kms_flip@flip-vs-rmfb@d-hdmi-
> a3.html> +5 other tests pass
> *
>
> igt@kms_flip@flip-vs-suspend-interruptible:
>
> o shard-bmg: INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-8/igt@kms_flip@flip-vs-suspend-
> interruptible.html> (Intel XE#1727 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel
> XE#2597 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2597> / Intel XE#3468 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3468>) -> PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/
> igt@kms_flip@flip-vs-suspend-interruptible.html> +1 other test pass
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-
> to-64bpp-4tile-downscaling.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-
> downscaling.html> +21 other tests pass
> *
>
> igt@kms_hdr@invalid-hdr:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_hdr@invalid-hdr.html> (Intel
> XE#1503 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1503>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-bmg-8/igt@kms_hdr@invalid-hdr.html>
> *
>
> igt@kms_pipe_crc_basic@bad-source:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_pipe_crc_basic@bad-source.html>
> (Intel XE#2423 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2423> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>) -> PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/
> igt@kms_pipe_crc_basic@bad-source.html> +74 other tests pass
> *
>
> igt@kms_pipe_crc_basic@nonblocking-crc:
>
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-6/igt@kms_pipe_crc_basic@nonblocking-
> crc.html> (Intel XE#877 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/877>) -> PASS <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-2/
> igt@kms_pipe_crc_basic@nonblocking-crc.html> +2 other tests pass
> *
>
> igt@kms_pm_dc@dc5-psr:
>
> o shard-lnl: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html> (Intel XE#718
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>) ->
> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-lnl-7/igt@kms_pm_dc@dc5-psr.html>
> *
>
> igt@kms_pm_rpm@modeset-stress-extra-wait:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@kms_pm_rpm@modeset-stress-extra-
> wait.html> (Intel XE#2446 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2446>) -> PASS <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_pm_rpm@modeset-
> stress-extra-wait.html> +2 other tests pass
> *
>
> igt@kms_pm_rpm@universal-planes-dpms:
>
> o shard-lnl: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-lnl-2/igt@kms_pm_rpm@universal-planes-
> dpms.html> (Intel XE#2042 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2042>) -> PASS <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-lnl-6/igt@kms_pm_rpm@universal-
> planes-dpms.html>
> *
>
> igt@kms_pm_rpm@universal-planes-dpms@plane-32:
>
> o shard-lnl: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-lnl-2/igt@kms_pm_rpm@universal-planes-
> dpms@plane-32.html> -> PASS <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-lnl-6/igt@kms_pm_rpm@universal-
> planes-dpms@plane-32.html>
> *
>
> igt@kms_pm_rpm@universal-planes-dpms@plane-59:
>
> o shard-lnl: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-lnl-2/igt@kms_pm_rpm@universal-planes-
> dpms@plane-59.html> (Intel XE#3184 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3184>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> lnl-6/igt@kms_pm_rpm@universal-planes-dpms@plane-59.html>
> *
>
> igt@kms_psr@fbc-psr2-primary-page-flip:
>
> o shard-lnl: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-lnl-4/igt@kms_psr@fbc-psr2-primary-page-
> flip.html> -> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-lnl-5/igt@kms_psr@fbc-psr2-primary-page-
> flip.html> +1 other test pass
> *
>
> igt@kms_setmode@clone-exclusive-crtc:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html>
> (Intel XE#1435 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1435>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-bmg-4/igt@kms_setmode@clone-exclusive-
> crtc.html>
> *
>
> igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3:
>
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-8/igt@kms_vblank@ts-continuation-dpms-
> rpm@pipe-d-hdmi-a-3.html> (Intel XE#1727 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3468>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-
> rpm@pipe-d-hdmi-a-3.html> +7 other tests pass
> *
>
> igt@kms_vrr@max-min@pipe-a-edp-1:
>
> o shard-lnl: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-lnl-4/igt@kms_vrr@max-min@pipe-a-edp-1.html>
> (Intel XE#1522 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1522>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-lnl-1/igt@kms_vrr@max-min@pipe-a-
> edp-1.html> +1 other test pass
> *
>
> igt@xe_evict@evict-mixed-many-threads-small:
>
> o shard-bmg: TIMEOUT <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-
> small.html> (Intel XE#1473 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1473> / Intel XE#2472 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2472>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html>
> *
>
> igt@xe_exec_balancer@many-execqueues-virtual-rebind:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@xe_exec_balancer@many-execqueues-
> virtual-rebind.html> (Intel XE#1130 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-436/igt@xe_exec_balancer@many-execqueues-virtual-
> rebind.html> +125 other tests pass
> *
>
> igt@xe_exec_fault_mode@many-execqueues-rebind:
>
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-
> rebind.html> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1727>) -> PASS <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-bmg-2/
> igt@xe_exec_fault_mode@many-execqueues-rebind.html> +4 other
> tests pass
> *
>
> igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate:
>
> o shard-dg2-set2: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8119/shard-dg2-433/igt@xe_exec_threads@threads-
> mixed-shared-vm-userptr-invalidate.html> (Intel XE#3371
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371>) ->
> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-435/igt@xe_exec_threads@threads-mixed-shared-vm-
> userptr-invalidate.html>
> *
>
> igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
>
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-2/igt@xe_fault_injection@inject-fault-
> probe-function-xe_sriov_init.html> (Intel XE#3467 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3468>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-bmg-1/igt@xe_fault_injection@inject-fault-
> probe-function-xe_sriov_init.html> +2 other tests pass
> *
>
> igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
>
> o shard-dg2-set2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8119/shard-dg2-433/igt@xe_fault_injection@inject-
> fault-probe-function-xe_tile_init_early.html> (Intel XE#3467
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) ->
> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-
> function-xe_tile_init_early.html>
> *
>
> igt@xe_live_ktest@xe_bo:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-8/igt@xe_live_ktest@xe_bo.html> (Intel
> XE#1192 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1192>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-bmg-4/igt@xe_live_ktest@xe_bo.html> +1
> other test pass
> *
>
> igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
>
> o shard-dg2-set2: INCOMPLETE <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8119/shard-dg2-434/
> igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> +1
> other test pass
> *
>
> igt@xe_module_load@reload-no-display:
>
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-6/igt@xe_module_load@reload-no-
> display.html> (Intel XE#3467 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3467>) -> PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-4/
> igt@xe_module_load@reload-no-display.html> +3 other tests pass
> *
>
> igt@xe_pm@s2idle-multiple-execs:
>
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-6/igt@xe_pm@s2idle-multiple-execs.html>
> (Intel XE#1616 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1616> / Intel XE#3468 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3468>) -> PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/
> igt@xe_pm@s2idle-multiple-execs.html>
> *
>
> igt@xe_pm@s2idle-vm-bind-prefetch:
>
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-prefetch.html>
> (Intel XE#1616 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1616> / Intel XE#1727 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1727> / Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-4/igt@xe_pm@s2idle-vm-bind-prefetch.html>
> *
>
> igt@xe_pm@s3-exec-after:
>
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-6/igt@xe_pm@s3-exec-after.html> (Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3468> / Intel XE#569 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/569>) -> PASS <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-bmg-2/igt@xe_pm@s3-exec-after.html>
> *
>
> igt@xe_pm@s4-d3hot-basic-exec:
>
> o shard-lnl: ABORT <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html> (Intel
> XE#1358 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1358> / Intel XE#1607 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1607>) -> PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-lnl-3/igt@xe_pm@s4-
> d3hot-basic-exec.html>
> *
>
> igt@xe_pm@s4-multiple-execs:
>
> o shard-lnl: ABORT <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html> (Intel
> XE#1358 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1358> / Intel XE#1607 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1607> / Intel XE#1794 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1794>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> lnl-6/igt@xe_pm@s4-multiple-execs.html>
> *
>
> igt@xe_vm@large-split-binds-4194304:
>
> o shard-dg2-set2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8119/shard-dg2-435/igt@xe_vm@large-split-
> binds-4194304.html> (Intel XE#1727 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-463/igt@xe_vm@large-split-binds-4194304.html> +2 other tests
> pass
>
>
> Warnings
>
> *
>
> igt@core_hotunplug@hotrebind-lateclose:
>
> o shard-dg2-set2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8119/shard-dg2-433/igt@core_hotunplug@hotrebind-
> lateclose.html> (Intel XE#3468 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3468>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-466/
> igt@core_hotunplug@hotrebind-lateclose.html> (Intel XE#1885
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885>)
> *
>
> igt@core_hotunplug@hotunbind-rebind:
>
> o shard-dg2-set2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8119/shard-dg2-463/igt@core_hotunplug@hotunbind-
> rebind.html> (Intel XE#3468 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/3468> / Intel XE#3521 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3521>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-434/igt@core_hotunplug@hotunbind-rebind.html> (Intel XE#1885
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885>)
> *
>
> igt@kms_async_flips@alternate-sync-async-flip:
>
> o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-1/igt@kms_async_flips@alternate-sync-
> async-flip.html> (Intel XE#1727 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1727> / Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-2/igt@kms_async_flips@alternate-sync-async-flip.html> (Intel
> XE#827 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/827>)
> *
>
> igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3:
>
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-1/igt@kms_async_flips@alternate-sync-
> async-flip@pipe-c-hdmi-a-3.html> (Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-
> a-3.html> (Intel XE#827 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/827>)
> *
>
> igt@kms_async_flips@async-flip-suspend-resume:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_async_flips@async-flip-suspend-
> resume.html> (Intel XE#2423 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2423> / i915#2575 <https://
> gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> DMESG-
> WARN <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-435/igt@kms_async_flips@async-flip-suspend-
> resume.html> (Intel XE#3468 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/3468>)
> *
>
> igt@kms_async_flips@async-flip-with-page-flip-events:
>
> o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-2/igt@kms_async_flips@async-flip-with-
> page-flip-events.html> (Intel XE#1727 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3468>) -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_async_flips@async-flip-
> with-page-flip-events.html> (Intel XE#1727 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-2-4:
>
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-2/igt@kms_async_flips@async-flip-with-
> page-flip-events@pipe-a-dp-2-4.html> (Intel XE#1727 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-
> a-dp-2-4.html> (Intel XE#1727 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1727> / Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-2-linear:
>
> o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-2/igt@kms_async_flips@async-flip-with-
> page-flip-events@pipe-a-dp-2-linear.html> (Intel XE#1727
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> /
> Intel XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3468>) -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-1/igt@kms_async_flips@async-flip-
> with-page-flip-events@pipe-a-dp-2-linear.html> (Intel XE#1727
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
> *
>
> igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-2-x:
>
> o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-2/igt@kms_async_flips@async-flip-with-
> page-flip-events@pipe-a-dp-2-x.html> (Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-
> a-dp-2-x.html> (Intel XE#1727 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1727> / Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@kms_big_fb@4-tiled-8bpp-rotate-90:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-
> rotate-90.html> (Intel XE#316 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/316>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_big_fb@4-
> tiled-8bpp-rotate-90.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel
> XE#2351 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2351>) +1 other test skip
> *
>
> igt@kms_big_fb@x-tiled-16bpp-rotate-270:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@kms_big_fb@x-tiled-16bpp-
> rotate-270.html> (Intel XE#2136 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2136>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-435/
> igt@kms_big_fb@x-tiled-16bpp-rotate-270.html> (Intel XE#316
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) +2
> other tests skip
> *
>
> igt@kms_big_fb@x-tiled-8bpp-rotate-270:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-
> rotate-270.html> (Intel XE#316 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/316>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_big_fb@x-
> tiled-8bpp-rotate-270.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +1 other test
> skip
> *
>
> igt@kms_big_fb@x-tiled-8bpp-rotate-90:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-
> rotate-90.html> (Intel XE#2136 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2136> / Intel XE#2351 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html> (Intel
> XE#316 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/316>) +1 other test skip
> *
>
> igt@kms_big_fb@y-tiled-addfb-size-overflow:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-
> overflow.html> (Intel XE#610 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/610>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@kms_big_fb@y-tiled-
> addfb-size-overflow.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
> *
>
> igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-
> stride-64bpp-rotate-180-hflip.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel
> XE#2351 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2351>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-
> stride-64bpp-rotate-180-hflip.html> (Intel XE#1124 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +4 other
> tests skip
> *
>
> igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-
> stride-64bpp-rotate-180-hflip-async-flip.html> (Intel XE#2136
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) ->
> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-
> rotate-180-hflip-async-flip.html> (Intel XE#1124 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +6 other
> tests skip
> *
>
> igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-
> rotate-90.html> (Intel XE#1124 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1124>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/
> igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html> (Intel XE#2136
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +3
> other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-
> offset-overflow.html> (Intel XE#607 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/607>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html>
> (Intel XE#2136 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2136>)
> *
>
> igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-
> stride-64bpp-rotate-180-async-flip.html> (Intel XE#1124
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) ->
> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-
> rotate-180-async-flip.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel
> XE#2351 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2351>) +4 other tests skip
> *
>
> igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-
> displays-3840x2160p.html> (Intel XE#2191 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-434/igt@kms_bw@connected-linear-tiling-4-
> displays-3840x2160p.html> (Intel XE#2423 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> *
>
> igt@kms_bw@linear-tiling-2-displays-3840x2160p:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-463/igt@kms_bw@linear-tiling-2-
> displays-3840x2160p.html> (Intel XE#367 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/367>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html>
> (Intel XE#2423 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2423> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>) +2 other tests skip
> *
>
> igt@kms_bw@linear-tiling-4-displays-2160x1440p:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_bw@linear-tiling-4-
> displays-2160x1440p.html> (Intel XE#2423 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-463/igt@kms_bw@linear-tiling-4-
> displays-2160x1440p.html> (Intel XE#367 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +4 other tests
> skip
> *
>
> igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-
> gen12-rc-ccs.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel
> XE#2351 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2351>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-463/igt@kms_ccs@bad-rotation-90-y-
> tiled-gen12-rc-ccs.html> (Intel XE#455 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +1
> other test skip
> *
>
> igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-
> gen12-rc-ccs.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-433/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html>
> (Intel XE#455 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/455> / Intel XE#787 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/787>) +6 other tests skip
> *
>
> igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
>
> o shard-dg2-set2: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-
> tiled-dg2-rc-ccs-cc.html> (Intel XE#616 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/616>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-
> cc.html> (Intel XE#2136 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2136>)
> *
>
> igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-y-tiled-
> gen12-mc-ccs.html> (Intel XE#455 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) ->
> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-
> ccs.html> (Intel XE#2136 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2136> / Intel XE#2351 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +2 other
> tests skip
> *
>
> igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-bmg-
> ccs.html> (Intel XE#2907 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2907>) -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_ccs@random-ccs-
> data-4-tiled-bmg-ccs.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
> *
>
> igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-
> mc-ccs.html> (Intel XE#2136 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2136> / Intel XE#2351 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html>
> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1727>)
> *
>
> igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-
> ccs.html> (Intel XE#2136 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2136>) -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_ccs@random-ccs-
> data-4-tiled-lnl-ccs.html> (Intel XE#2907 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2907>) +1 other test
> skip
> *
>
> igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-mtl-
> mc-ccs.html> (Intel XE#455 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/455> / Intel XE#787 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html>
> (Intel XE#2136 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2136>) +10 other tests skip
> *
>
> igt@kms_chamelium_color@ctm-0-75:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_chamelium_color@ctm-0-75.html>
> (Intel XE#2423 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2423> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/
> igt@kms_chamelium_color@ctm-0-75.html> (Intel XE#306 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +1 other test skip
> *
>
> igt@kms_chamelium_color@degamma:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@kms_chamelium_color@degamma.html>
> (Intel XE#306 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/306>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-dg2-434/igt@kms_chamelium_color@degamma.html>
> (Intel XE#2423 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2423> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>) +1 other test skip
> *
>
> igt@kms_chamelium_hpd@vga-hpd:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd.html>
> (Intel XE#373 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/373>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html>
> (Intel XE#2423 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2423> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>) +8 other tests skip
> *
>
> igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-for-each-
> pipe.html> (Intel XE#2423 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2423> / i915#2575 <https://
> gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-463/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html> (Intel
> XE#373 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/373>) +11 other tests skip
> *
>
> igt@kms_content_protection@atomic:
>
> o shard-bmg: INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-1/igt@kms_content_protection@atomic.html>
> (Intel XE#2715 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2715> / Intel XE#3468 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3468>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-6/
> igt@kms_content_protection@atomic.html> (Intel XE#2341 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2341>)
> o shard-dg2-set2: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-436/igt@kms_content_protection@atomic.html>
> (Intel XE#1178 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1178>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-466/
> igt@kms_content_protection@atomic.html> (Intel XE#2423 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> *
>
> igt@kms_content_protection@dp-mst-lic-type-1:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-
> type-1.html> (Intel XE#307 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/307>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-434/
> igt@kms_content_protection@dp-mst-lic-type-1.html> (Intel
> XE#2423 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2423> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>)
> *
>
> igt@kms_content_protection@lic-type-0:
>
> o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-2/igt@kms_content_protection@lic-type-0.html>
> (Intel XE#1178 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1178>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-bmg-6/igt@kms_content_protection@lic-
> type-0.html> (Intel XE#2341 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2341>)
> *
>
> igt@kms_content_protection@uevent:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_content_protection@uevent.html>
> (Intel XE#2341 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2341>) -> DMESG-FAIL <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-2/
> igt@kms_content_protection@uevent.html> (Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@kms_cursor_crc@cursor-offscreen-512x512:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_cursor_crc@cursor-
> offscreen-512x512.html> (Intel XE#2423 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html>
> (Intel XE#308 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/308>) +1 other test skip
> *
>
> igt@kms_cursor_crc@cursor-random-32x10:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_cursor_crc@cursor-
> random-32x10.html> (Intel XE#2423 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-435/igt@kms_cursor_crc@cursor-random-32x10.html>
> (Intel XE#455 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/455>) +2 other tests skip
> *
>
> igt@kms_cursor_crc@cursor-sliding-256x256:
>
> o shard-dg2-set2: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-463/igt@kms_cursor_crc@cursor-
> sliding-256x256.html> -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_cursor_crc@cursor-
> sliding-256x256.html> (Intel XE#2423 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> *
>
> igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-
> varying-size.html> (Intel XE#2291 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html>
> (Intel XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3468>) +1 other test dmesg-warn
> *
>
> igt@kms_cursor_legacy@torture-bo:
>
> o shard-dg2-set2: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8119/shard-dg2-463/igt@kms_cursor_legacy@torture-
> bo.html> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/1727>) -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-dg2-466/
> igt@kms_cursor_legacy@torture-bo.html> (Intel XE#2423 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> *
>
> igt@kms_dsc@dsc-with-bpc-formats:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@kms_dsc@dsc-with-bpc-formats.html>
> (Intel XE#455 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/455>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-dg2-466/igt@kms_dsc@dsc-with-bpc-formats.html>
> (Intel XE#2136 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2136> / Intel XE#2351 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2351>) +3 other tests skip
> *
>
> igt@kms_fbcon_fbt@fbc-suspend:
>
> o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html> (Intel
> XE#1695 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1695>) -> DMESG-FAIL <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_fbcon_fbt@fbc-
> suspend.html> (Intel XE#3468 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3468>)
> o shard-dg2-set2: INCOMPLETE <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8119/shard-dg2-463/igt@kms_fbcon_fbt@fbc-
> suspend.html> (Intel XE#1727 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1727> / Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-466/igt@kms_fbcon_fbt@fbc-suspend.html> (Intel XE#2136
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
> *
>
> igt@kms_feature_discovery@display-4x:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/
> igt@kms_feature_discovery@display-4x.html> (Intel XE#2423
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> /
> i915#2575 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
> issues/2575>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-433/
> igt@kms_feature_discovery@display-4x.html> (Intel XE#1138
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138>)
> *
>
> igt@kms_flip@2x-blocking-absolute-wf_vblank:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@kms_flip@2x-blocking-absolute-
> wf_vblank.html> (Intel XE#2423 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2423> / i915#2575 <https://
> gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> DMESG-
> WARN <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-435/igt@kms_flip@2x-blocking-absolute-wf_vblank.html>
> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1727>)
> *
>
> igt@kms_flip@flip-vs-absolute-wf_vblank:
>
> o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_flip@flip-vs-absolute-
> wf_vblank.html> (Intel XE#2882 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2882>) -> DMESG-FAIL <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/
> igt@kms_flip@flip-vs-absolute-wf_vblank.html> (Intel XE#3468
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3:
>
> o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_flip@flip-vs-absolute-wf_vblank@b-
> hdmi-a3.html> (Intel XE#2882 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2882>) -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/
> igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3.html> (Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3468>) +2 other tests dmesg-warn
> *
>
> igt@kms_flip@flip-vs-expired-vblank-interruptible:
>
> o shard-dg2-set2: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-
> interruptible.html> (Intel XE#301 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/301>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html>
> (Intel XE#2423 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2423> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>)
> *
>
> igt@kms_flip@flip-vs-expired-vblank@c-dp2:
>
> o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank@c-
> dp2.html> (Intel XE#3468 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/3468>) -> DMESG-WARN <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-bmg-4/igt@kms_flip@flip-vs-
> expired-vblank@c-dp2.html> (Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other
> tests dmesg-warn
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-
> yftile-to-32bpp-yftileccs-upscaling.html> (Intel XE#2136
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) ->
> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-
> to-32bpp-yftileccs-upscaling.html> (Intel XE#455 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-
> yftile-to-32bpp-yftile-downscaling.html> (Intel XE#455 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-
> yftile-downscaling.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +1 other test
> skip
> *
>
> igt@kms_force_connector_basic@prune-stale-modes:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@kms_force_connector_basic@prune-
> stale-modes.html> (Intel XE#2423 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-433/igt@kms_force_connector_basic@prune-stale-
> modes.html> (i915#5274 <https://gitlab.freedesktop.org/drm/i915/
> kernel/-/issues/5274>)
> *
>
> igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-
> primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#651 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-
> draw-mmap-wc.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +21 other
> tests skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-
> scndscrn-indfb-pgflip-blt.html> (Intel XE#2311 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-
> pgflip-blt.html> (Intel XE#2312 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2312>) +13 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-suspend:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-
> suspend.html> (Intel XE#2136 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2136> / Intel XE#2351 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-436/igt@kms_frontbuffer_tracking@drrs-suspend.html> (Intel
> XE#651 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/651>) +11 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
>
> o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-
> primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2333 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-
> draw-mmap-wc.html> (Intel XE#1727 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
>
> o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-
> primscrn-pri-shrfb-draw-blt.html> (Intel XE#2333 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-
> draw-blt.html> (Intel XE#3468 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3468>) +6 other tests dmesg-fail
> *
>
> igt@kms_frontbuffer_tracking@fbc-1p-rte:
>
> o shard-dg2-set2: INCOMPLETE <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8119/shard-dg2-435/
> igt@kms_frontbuffer_tracking@fbc-1p-rte.html> (Intel XE#3468
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) ->
> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-rte.html>
> (Intel XE#2136 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2136>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
>
> o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-
> primscrn-cur-indfb-draw-render.html> (Intel XE#2333 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-
> draw-render.html> (Intel XE#2312 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +1 other test
> skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
>
> o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-
> primscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-
> draw-mmap-wc.html> (Intel XE#1727 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-rte:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-
> rte.html> (Intel XE#2312 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2312>) -> DMESG-FAIL <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-bmg-1/
> igt@kms_frontbuffer_tracking@fbc-2p-rte.html> (Intel XE#3468
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-
> scndscrn-cur-indfb-draw-render.html> (Intel XE#2312 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-
> draw-render.html> (Intel XE#2333 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +8 other
> tests fail
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-
> scndscrn-spr-indfb-draw-blt.html> (Intel XE#2312 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-
> draw-blt.html> (Intel XE#1727 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1727> / Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
>
> o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-
> scndscrn-spr-indfb-draw-render.html> (Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-
> draw-render.html> (Intel XE#2312 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +2 other
> tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
>
> o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-
> scndscrn-spr-indfb-onoff.html> (Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-
> onoff.html> (Intel XE#2333 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2333>) +15 other tests fail
> *
>
> igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-
> rte.html> (Intel XE#2136 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2136>) -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-dg2-433/
> igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html> (Intel XE#651
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +15
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-
> scndscrn-pri-shrfb-draw-render.html> (Intel XE#2312 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-
> shrfb-draw-render.html> (Intel XE#2311 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +23 other
> tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-
> scndscrn-shrfb-pgflip-blt.html> (Intel XE#651 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-
> pgflip-blt.html> (Intel XE#2136 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2136> / Intel XE#2351 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +12 other
> tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-
> tiling-y.html> (Intel XE#2136 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2136> / Intel XE#2351 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html>
> (Intel XE#658 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/658>)
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-
> primscrn-pri-indfb-draw-render.html> (Intel XE#653 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-
> indfb-draw-render.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +24 other
> tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-
> scndscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel
> XE#2351 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2351>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-433/
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-
> mmap-wc.html> (Intel XE#653 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/653>) +9 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-
> scndscrn-shrfb-plflip-blt.html> (Intel XE#2312 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-
> plflip-blt.html> (Intel XE#2313 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2313>) +21 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-
> tiling-linear.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html>
> (Intel XE#653 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/653>) +21 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-
> scndscrn-pri-shrfb-draw-render.html> (Intel XE#653 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-
> draw-render.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel
> XE#2351 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2351>) +4 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-
> scndscrn-shrfb-pgflip-blt.html> (Intel XE#2313 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-
> blt.html> (Intel XE#2312 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2312>) +11 other tests skip
> *
>
> igt@kms_joiner@basic-ultra-joiner:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-435/igt@kms_joiner@basic-ultra-joiner.html>
> (Intel XE#2927 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2927>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-434/igt@kms_joiner@basic-ultra-
> joiner.html> (Intel XE#2136 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2136>)
> *
>
> igt@kms_joiner@invalid-modeset-big-joiner:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-
> joiner.html> (Intel XE#2136 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2136>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@kms_joiner@invalid-
> modeset-big-joiner.html> (Intel XE#346 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
> *
>
> igt@kms_lease@simple-lease:
>
> o shard-dg2-set2: INCOMPLETE <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8119/shard-dg2-435/igt@kms_lease@simple-lease.html>
> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1727>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-466/igt@kms_lease@simple-lease.html>
> (Intel XE#2423 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2423> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>)
> *
>
> igt@kms_plane_multiple@tiling-y:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@kms_plane_multiple@tiling-y.html>
> (Intel XE#455 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/455>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-dg2-434/igt@kms_plane_multiple@tiling-y.html>
> (Intel XE#2423 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2423> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>) +9 other tests skip
> *
>
> igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-
> factor-0-25-with-pixel-format.html> (Intel XE#2763 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) ->
> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-
> with-pixel-format.html> (Intel XE#2423 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-
> factor-0-25-upscale-factor-0-25.html> (Intel XE#2423 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-436/igt@kms_plane_scaling@planes-downscale-
> factor-0-25-upscale-factor-0-25.html> (Intel XE#2763 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>)
> *
>
> igt@kms_pm_backlight@fade:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@kms_pm_backlight@fade.html> (Intel
> XE#2136 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2136>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-463/igt@kms_pm_backlight@fade.html>
> (Intel XE#870 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/870>) +1 other test skip
> *
>
> igt@kms_pm_dc@dc3co-vpb-simulation:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-463/igt@kms_pm_dc@dc3co-vpb-simulation.html>
> (Intel XE#1122 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1122>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-434/igt@kms_pm_dc@dc3co-vpb-
> simulation.html> (Intel XE#2136 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2136> / Intel XE#2351 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2351>)
> *
>
> igt@kms_pm_dc@dc5-retention-flops:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html>
> (Intel XE#2136 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2136>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-433/igt@kms_pm_dc@dc5-retention-
> flops.html> (Intel XE#3309 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/3309>)
> *
>
> igt@kms_pm_dc@dc6-dpms:
>
> o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-1/igt@kms_pm_dc@dc6-dpms.html> (Intel
> XE#1727 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1727> / Intel XE#3468 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3468>) -> DMESG-FAIL <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-1/
> igt@kms_pm_dc@dc6-dpms.html> (Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@kms_pm_dc@dc6-psr:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@kms_pm_dc@dc6-psr.html> (Intel
> XE#1129 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1129>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html> (Intel
> XE#2136 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2136> / Intel XE#2351 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2351>)
> *
>
> igt@kms_pm_dc@deep-pkgc:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@kms_pm_dc@deep-pkgc.html> (Intel
> XE#908 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/908>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html> (Intel
> XE#2136 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
> *
>
> igt@kms_pm_lpsp@kms-lpsp:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_pm_lpsp@kms-lpsp.html> (Intel
> XE#2136 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2136>) -> FAIL <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-436/igt@kms_pm_lpsp@kms-lpsp.html>
> (Intel XE#3527 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3527>)
> *
>
> igt@kms_pm_rpm@cursor-dpms:
>
> o shard-dg2-set2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8119/shard-dg2-433/igt@kms_pm_rpm@cursor-dpms.html>
> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1727> / Intel XE#3468 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3468>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/
> igt@kms_pm_rpm@cursor-dpms.html> (Intel XE#2446 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2446>)
> *
>
> igt@kms_pm_rpm@legacy-planes-dpms:
>
> o shard-bmg: INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-2/igt@kms_pm_rpm@legacy-planes-dpms.html>
> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1727> / Intel XE#2864 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2864> / Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-6/igt@kms_pm_rpm@legacy-planes-dpms.html> (Intel XE#3468
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@kms_pm_rpm@legacy-planes-dpms@plane-59:
>
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-2/igt@kms_pm_rpm@legacy-planes-
> dpms@plane-59.html> (Intel XE#1727 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3468>) -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_pm_rpm@legacy-planes-
> dpms@plane-59.html> (Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other
> tests dmesg-warn
> *
>
> igt@kms_pm_rpm@legacy-planes-dpms@plane-68:
>
> o shard-bmg: INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-2/igt@kms_pm_rpm@legacy-planes-
> dpms@plane-68.html> (Intel XE#1727 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3468>) -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-6/igt@kms_pm_rpm@legacy-planes-
> dpms@plane-68.html> (Intel XE#1727 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
>
> o shard-dg2-set2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8119/shard-dg2-435/igt@kms_pm_rpm@modeset-lpsp-
> stress-no-wait.html> (Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> (Intel
> XE#2446 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2446>) +1 other test skip
> *
>
> igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_pm_rpm@modeset-non-lpsp-stress-
> no-wait.html> (Intel XE#2446 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2446>) -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/
> igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> (Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-primary-
> update-sf-dmg-area.html> (Intel XE#1489 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-
> area.html> (Intel XE#2136 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2136>) +7 other tests skip
> *
>
> igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_psr2_sf@psr2-overlay-primary-
> update-sf-dmg-area.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-463/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-
> area.html> (Intel XE#1489 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1489>) +6 other tests skip
> *
>
> igt@kms_psr@fbc-pr-suspend:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@kms_psr@fbc-pr-suspend.html> (Intel
> XE#2136 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2136> / Intel XE#2351 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2351>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/
> igt@kms_psr@fbc-pr-suspend.html> (Intel XE#2850 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>)
> *
>
> igt@kms_psr@fbc-psr2-sprite-plane-move:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-
> move.html> (Intel XE#2136 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2136>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-463/igt@kms_psr@fbc-psr2-
> sprite-plane-move.html> (Intel XE#2850 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +7
> other tests skip
> *
>
> igt@kms_psr@pr-cursor-plane-onoff:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-463/igt@kms_psr@pr-cursor-plane-onoff.html>
> (Intel XE#2850 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2850> / Intel XE#929 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/929>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@kms_psr@pr-cursor-
> plane-onoff.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +9 other
> tests skip
> *
>
> igt@kms_psr@psr-dpms:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-436/igt@kms_psr@psr-dpms.html> (Intel XE#2850
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> /
> Intel XE#929 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/929>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-dg2-434/igt@kms_psr@psr-dpms.html> (Intel
> XE#2136 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2136> / Intel XE#2351 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2351>) +5 other tests skip
> *
>
> igt@kms_psr@psr-sprite-plane-onoff:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_psr@psr-sprite-plane-onoff.html>
> (Intel XE#2351 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2351>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-463/igt@kms_psr@psr-sprite-plane-
> onoff.html> (Intel XE#2850 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2850> / Intel XE#929 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/929>)
> *
>
> igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@kms_psr_stress_test@invalidate-
> primary-flip-overlay.html> (Intel XE#2136 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-433/igt@kms_psr_stress_test@invalidate-primary-flip-
> overlay.html> (Intel XE#2939 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2939>)
> *
>
> igt@kms_rotation_crc@primary-rotation-90:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@kms_rotation_crc@primary-
> rotation-90.html> (Intel XE#2423 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-436/igt@kms_rotation_crc@primary-rotation-90.html>
> (Intel XE#3414 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3414>)
> *
>
> igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-
> reflect-x-180.html> (Intel XE#1127 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1127>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-
> x-180.html> (Intel XE#2423 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2423> / i915#2575 <https://
> gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> *
>
> igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-90-
> pos-100-0.html> (Intel XE#3414 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3414>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/
> igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> (Intel
> XE#2423 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2423> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>)
> *
>
> igt@kms_tiled_display@basic-test-pattern:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_tiled_display@basic-test-
> pattern.html> (Intel XE#2423 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2423> / i915#2575 <https://
> gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-463/igt@kms_tiled_display@basic-test-pattern.html> (Intel
> XE#362 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/362>)
> *
>
> igt@kms_tiled_display@basic-test-pattern-with-chamelium:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-
> with-chamelium.html> (Intel XE#2509 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2509>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-8/igt@kms_tiled_display@basic-test-pattern-with-
> chamelium.html> (Intel XE#2426 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2426>)
> *
>
> igt@kms_vrr@lobf:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-463/igt@kms_vrr@lobf.html> (Intel XE#2168
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168>) ->
> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-466/igt@kms_vrr@lobf.html> (Intel XE#2423 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> *
>
> igt@kms_vrr@negative-basic:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-6/igt@kms_vrr@negative-basic.html> (Intel
> XE#1499 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1499>) -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-8/igt@kms_vrr@negative-
> basic.html> (Intel XE#3468 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/3468>)
> *
>
> igt@kms_writeback@writeback-fb-id:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@kms_writeback@writeback-fb-id.html>
> (Intel XE#2423 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2423> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-463/
> igt@kms_writeback@writeback-fb-id.html> (Intel XE#756 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/756>)
> *
>
> igt@kms_writeback@writeback-invalid-parameters:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-463/igt@kms_writeback@writeback-invalid-
> parameters.html> (Intel XE#756 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/756>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-466/
> igt@kms_writeback@writeback-invalid-parameters.html> (Intel
> XE#2423 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2423> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>)
> *
>
> igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-
> each-numvfs-all.html> (Intel XE#1091 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel
> XE#2849 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2849>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-
> unbind-each-numvfs-all.html> (Intel XE#2423 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> +1 other test skip
> *
>
> igt@xe_ccs@suspend-resume:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@xe_ccs@suspend-resume.html> (Intel
> XE#1130 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1130>) -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-dg2-435/igt@xe_ccs@suspend-
> resume.html> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1727> / Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@xe_compute_preempt@compute-preempt:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-463/igt@xe_compute_preempt@compute-
> preempt.html> (Intel XE#1280 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1280> / Intel XE#455 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-434/igt@xe_compute_preempt@compute-preempt.html> (Intel
> XE#1130 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1130>) +1 other test skip
> *
>
> igt@xe_copy_basic@mem-copy-linear-0x369:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@xe_copy_basic@mem-copy-
> linear-0x369.html> (Intel XE#1130 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-436/igt@xe_copy_basic@mem-copy-linear-0x369.html> (Intel
> XE#1123 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1123>) +1 other test skip
> *
>
> igt@xe_copy_basic@mem-set-linear-0x369:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@xe_copy_basic@mem-set-
> linear-0x369.html> (Intel XE#1126 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1126>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-434/igt@xe_copy_basic@mem-set-linear-0x369.html> (Intel
> XE#1130 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
> *
>
> igt@xe_eudebug@basic-client-th:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@xe_eudebug@basic-client-th.html>
> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1130>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-433/igt@xe_eudebug@basic-client-
> th.html> (Intel XE#2905 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2905>) +7 other tests skip
> *
>
> igt@xe_eudebug_online@basic-breakpoint:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@xe_eudebug_online@basic-
> breakpoint.html> (Intel XE#2905 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2905>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/
> igt@xe_eudebug_online@basic-breakpoint.html> (Intel XE#1130
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +8
> other tests skip
> *
>
> igt@xe_evict@evict-beng-large-multi-vm-cm:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-
> cm.html> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/1130>) -> FAIL <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-dg2-436/igt@xe_evict@evict-beng-
> large-multi-vm-cm.html> (Intel XE#1600 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1600>)
> *
>
> igt@xe_evict@evict-beng-mixed-many-threads-large:
>
> o shard-bmg: INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-
> threads-large.html> (Intel XE#1473 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-large.html>
> (Intel XE#1473 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1473> / Intel XE#3468 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3468>)
> *
>
> igt@xe_exec_balancer@twice-cm-virtual-basic:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@xe_exec_balancer@twice-cm-virtual-
> basic.html> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1130>) -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-433/
> igt@xe_exec_balancer@twice-cm-virtual-basic.html> (Intel XE#1727
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
> *
>
> igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-
> invalidate:
>
> o shard-dg2-set2: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-463/igt@xe_exec_compute_mode@many-execqueues-
> bindexecqueue-userptr-invalidate.html> -> SKIP <https://intel-
> gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-dg2-434/
> igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-
> invalidate.html> (Intel XE#1130 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1130>)
> *
>
> igt@xe_exec_fault_mode@once-basic:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-463/igt@xe_exec_fault_mode@once-basic.html>
> (Intel XE#288 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/288>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12162/shard-dg2-466/igt@xe_exec_fault_mode@once-
> basic.html> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1130>) +23 other tests skip
> *
>
> igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@xe_exec_fault_mode@once-userptr-
> invalidate-race-imm.html> (Intel XE#1130 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-436/igt@xe_exec_fault_mode@once-userptr-invalidate-race-
> imm.html> (Intel XE#288 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/288>) +22 other tests skip
> *
>
> igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-
> interrupted-lr.html> (Intel XE#2360 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2360>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html>
> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1130>)
> *
>
> igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@xe_fault_injection@inject-fault-
> probe-function-xe_ggtt_init_early.html> (Intel XE#1130 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-463/igt@xe_fault_injection@inject-fault-probe-function-
> xe_ggtt_init_early.html> (Intel XE#3467 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) +1 other test
> dmesg-warn
> *
>
> igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
>
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-1/igt@xe_fault_injection@inject-fault-
> probe-function-xe_guc_ads_init.html> (Intel XE#3343 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3468>) -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-bmg-8/igt@xe_fault_injection@inject-
> fault-probe-function-xe_guc_ads_init.html> (Intel XE#3343
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343>)
> *
>
> igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
>
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-4/igt@xe_fault_injection@inject-fault-
> probe-function-xe_guc_ct_init.html> (Intel XE#3343 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3343>) -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-6/igt@xe_fault_injection@inject-fault-probe-function-
> xe_guc_ct_init.html> (Intel XE#3343 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3468>) +1 other test dmesg-warn
> *
>
> igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
>
> o shard-dg2-set2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8119/shard-dg2-436/igt@xe_fault_injection@inject-
> fault-probe-function-xe_guc_relay_init.html> (Intel XE#3343
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343>) ->
> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-
> function-xe_guc_relay_init.html> (Intel XE#1130 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +1 other test
> skip
> *
>
> igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@xe_fault_injection@inject-fault-
> probe-function-xe_uc_fw_init.html> (Intel XE#1130 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-436/igt@xe_fault_injection@inject-fault-probe-function-
> xe_uc_fw_init.html> (Intel XE#3343 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3343>)
> *
>
> igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
>
> o shard-dg2-set2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8119/shard-dg2-435/igt@xe_fault_injection@inject-
> fault-probe-function-xe_wa_init.html> (Intel XE#3467 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-466/igt@xe_fault_injection@inject-fault-probe-function-
> xe_wa_init.html> (Intel XE#1130 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1130>) +3 other tests skip
> *
>
> igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
>
> o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-
> xe_pt_update_ops_prepare.html> (Intel XE#3467 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-1/igt@xe_fault_injection@vm-bind-fail-
> xe_pt_update_ops_prepare.html> (Intel XE#3467 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
>
> o shard-bmg: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-
> xe_pt_update_ops_run.html> (Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> bmg-1/igt@xe_fault_injection@vm-bind-fail-
> xe_pt_update_ops_run.html> (Intel XE#3467 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
>
> o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-
> xe_vma_ops_alloc.html> -> DMESG-FAIL <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12162/shard-bmg-8/
> igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html>
> (Intel XE#3467 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3467>)
> *
>
> igt@xe_mmap@small-bar:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@xe_mmap@small-bar.html> (Intel
> XE#1130 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1130>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-435/igt@xe_mmap@small-bar.html> (Intel
> XE#512 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/512>)
> *
>
> igt@xe_module_load@reload:
>
> o shard-dg2-set2: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@xe_module_load@reload.html> (Intel
> XE#3546 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3546>) -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-dg2-433/
> igt@xe_module_load@reload.html> (Intel XE#3467 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) +1 other test
> dmesg-warn
> *
>
> igt@xe_oa@invalid-oa-format-id:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-463/igt@xe_oa@invalid-oa-format-id.html>
> (Intel XE#2541 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2541>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-466/igt@xe_oa@invalid-oa-format-
> id.html> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/1130>) +7 other tests skip
> *
>
> igt@xe_oa@invalid-remove-userspace-config:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@xe_oa@invalid-remove-userspace-
> config.html> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1130>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-436/igt@xe_oa@invalid-
> remove-userspace-config.html> (Intel XE#2541 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2541>) +6 other
> tests skip
> *
>
> igt@xe_pat@display-vs-wb-transient:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-433/igt@xe_pat@display-vs-wb-transient.html>
> (Intel XE#1337 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1337>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-434/igt@xe_pat@display-vs-wb-
> transient.html> (Intel XE#1130 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1130>)
> *
>
> igt@xe_peer2peer@read:
>
> o shard-dg2-set2: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-463/igt@xe_peer2peer@read.html> (Intel
> XE#1173 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1173>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-466/igt@xe_peer2peer@read.html> (Intel
> XE#1061 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061>)
> *
>
> igt@xe_pm@d3cold-mmap-vram:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-436/igt@xe_pm@d3cold-mmap-vram.html> (Intel
> XE#2284 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2284> / Intel XE#366 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/366>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-466/igt@xe_pm@d3cold-mmap-
> vram.html> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1130>)
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-bmg-1/igt@xe_pm@d3cold-mmap-vram.html> (Intel
> XE#2284 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2284>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-bmg-2/igt@xe_pm@d3cold-mmap-vram.html>
> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1130>)
> *
>
> igt@xe_pm@d3cold-multiple-execs:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@xe_pm@d3cold-multiple-execs.html>
> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1130>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-463/igt@xe_pm@d3cold-multiple-
> execs.html> (Intel XE#2284 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2284> / Intel XE#366 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/366>)
> *
>
> igt@xe_pm@d3hot-multiple-execs:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@xe_pm@d3hot-multiple-execs.html>
> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1130>) -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-dg2-433/igt@xe_pm@d3hot-multiple-
> execs.html> (Intel XE#3468 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/3468>)
> *
>
> igt@xe_pm@s2idle-basic-exec:
>
> o shard-dg2-set2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8119/shard-dg2-435/igt@xe_pm@s2idle-basic-
> exec.html> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1727> / Intel XE#3468 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-466/igt@xe_pm@s2idle-basic-exec.html> (Intel XE#1130
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
> *
>
> igt@xe_pm@s4-vm-bind-unbind-all:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-466/igt@xe_pm@s4-vm-bind-unbind-all.html>
> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1130>) -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12162/shard-dg2-433/igt@xe_pm@s4-vm-bind-unbind-
> all.html> (Intel XE#1727 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/1727> / Intel XE#2280 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2280> / Intel
> XE#3468 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
> *
>
> igt@xe_pm@vram-d3cold-threshold:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html>
> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1130>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-463/igt@xe_pm@vram-d3cold-
> threshold.html> (Intel XE#579 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/579>)
> *
>
> igt@xe_query@multigpu-query-uc-fw-version-guc:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-463/igt@xe_query@multigpu-query-uc-fw-
> version-guc.html> (Intel XE#944 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/944>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12162/shard-dg2-434/igt@xe_query@multigpu-
> query-uc-fw-version-guc.html> (Intel XE#1130 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +1 other test
> skip
> *
>
> igt@xe_query@multigpu-query-uc-fw-version-huc:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-
> version-huc.html> (Intel XE#1130 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/shard-
> dg2-463/igt@xe_query@multigpu-query-uc-fw-version-huc.html>
> (Intel XE#944 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/944>) +2 other tests skip
> *
>
> igt@xe_tlb@basic-tlb:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@xe_tlb@basic-tlb.html> (Intel XE#1130
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) ->
> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12162/
> shard-dg2-435/igt@xe_tlb@basic-tlb.html> (Intel XE#2922
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922>)
> *
>
> igt@xe_wedged@basic-wedged:
>
> o shard-dg2-set2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8119/shard-dg2-463/igt@xe_wedged@basic-wedged.html>
> (Intel XE#2919 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2919>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-466/igt@xe_wedged@basic-wedged.html>
> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1130>)
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8119/shard-bmg-4/igt@xe_wedged@basic-wedged.html> (Intel
> XE#2919 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2919>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-bmg-2/igt@xe_wedged@basic-wedged.html>
> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1130>)
> *
>
> igt@xe_wedged@wedged-mode-toggle:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8119/shard-dg2-434/igt@xe_wedged@wedged-mode-toggle.html>
> (Intel XE#1130 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1130>) -> ABORT <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12162/shard-dg2-463/igt@xe_wedged@wedged-mode-
> toggle.html> (Intel XE#3075 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/3075> / Intel XE#3084 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3084>)
>
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
>
> Build changes
>
> * IGT: IGT_8119 -> IGTPW_12162
>
> IGTPW_12162: 12162
> IGT_8119: 8119
> xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380:
> e46649e7764a9f6868ccbcba7b8b23b413303380
>
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-11-22 13:29 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-21 14:18 [PATCH v3 i-g-t 0/4] Improvements for xe_sriov_flr test and xe_mmio lib Marcin Bernatowicz
2024-11-21 14:18 ` [PATCH v3 i-g-t 1/4] lib/xe/xe_mmio: Replace open-coded init/cleanup with existing functions Marcin Bernatowicz
2024-11-21 14:18 ` [PATCH v3 i-g-t 2/4] lib/xe/xe_sriov_provisioning: Refactor range handling and logging Marcin Bernatowicz
2024-11-21 14:18 ` [PATCH v3 i-g-t 3/4] tests/xe/xe_sriov_flr: Use SKIP for unmet subcheck prerequisites Marcin Bernatowicz
2024-11-22 10:39 ` Laguna, Lukasz
2024-11-21 14:18 ` [PATCH v3 i-g-t 4/4] lib/xe/xe_sriov_provisioning: Iterate only within valid PTE offsets Marcin Bernatowicz
2024-11-22 10:43 ` Laguna, Lukasz
2024-11-21 17:31 ` ✓ Xe.CI.BAT: success for Improvements for xe_sriov_flr test and xe_mmio lib (rev3) Patchwork
2024-11-21 17:44 ` ✗ i915.CI.BAT: failure " Patchwork
2024-11-22 2:31 ` ✗ Xe.CI.Full: " Patchwork
2024-11-22 13:29 ` Bernatowicz, Marcin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox