* [PATCH i-g-t 1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors
@ 2025-01-22 14:44 Dominik Grzegorzek
2025-01-22 14:44 ` [PATCH i-g-t 2/3] tests/intel/xe_eudebug_online: Fix 32b compilation warnings Dominik Grzegorzek
` (6 more replies)
0 siblings, 7 replies; 12+ messages in thread
From: Dominik Grzegorzek @ 2025-01-22 14:44 UTC (permalink / raw)
To: igt-dev
Cc: jordan.l.justen, christoph.manszewski, kamil.konieczny,
Dominik Grzegorzek
Fix instances casting using proper from_user_pointer macro and
correct all debug prints which were causing compilation warnings
on 32b archs.
Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
lib/xe/xe_eudebug.c | 26 +++++++++++++++-----------
1 file changed, 15 insertions(+), 11 deletions(-)
diff --git a/lib/xe/xe_eudebug.c b/lib/xe/xe_eudebug.c
index 24062e399..19bec2d25 100644
--- a/lib/xe/xe_eudebug.c
+++ b/lib/xe/xe_eudebug.c
@@ -324,14 +324,14 @@ static uint64_t __wait_token(int pipe[2], const uint64_t token, int timeout_ms)
ret = safe_pipe_read(pipe, &in, sizeof(in), timeout_ms);
igt_assert_f(ret > 0,
- "Pipe read timeout waiting for token '%s:(%ld)'\n",
+ "Pipe read timeout waiting for token '%s:(%" PRId64 ")'\n",
token_to_str(token), token);
igt_assert_eq(in, token);
ret = safe_pipe_read(pipe, &in, sizeof(in), timeout_ms);
igt_assert_f(ret > 0,
- "Pipe read timeout waiting for token value '%s:(%ld)'\n",
+ "Pipe read timeout waiting for token value '%s:(%" PRId64 ")'\n",
token_to_str(token), token);
return in;
@@ -828,7 +828,8 @@ xe_eudebug_event_log_find_seqno(struct xe_eudebug_event_log *l, uint64_t seqno)
xe_eudebug_for_each_event(e, l) {
if (e->seqno == seqno) {
if (found) {
- igt_warn("Found multiple events with the same seqno %lu\n", seqno);
+ igt_warn("Found multiple events with the same seqno %" PRIu64 "\n",
+ seqno);
xe_eudebug_event_log_print(l, false);
igt_assert(!found);
}
@@ -1238,7 +1239,7 @@ int xe_eudebug_debugger_attach(struct xe_eudebug_debugger *d,
d->p_client[0] = c->p_in[0];
d->p_client[1] = c->p_in[1];
- igt_debug("debugger connected to %lu\n", d->target_pid);
+ igt_debug("debugger connected to %" PRIu64 "\n", d->target_pid);
return 0;
}
@@ -1391,11 +1392,11 @@ void xe_eudebug_debugger_wait_stage(struct xe_eudebug_session *s, uint64_t stage
{
u64 stage_in;
- igt_debug("debugger xe client fd: %d pausing for stage %lu\n", s->debugger->master_fd,
+ igt_debug("debugger xe client fd: %d pausing for stage %" PRIu64 "\n", s->debugger->master_fd,
stage);
stage_in = wait_from_client(s->client, DEBUGGER_STAGE);
- igt_debug("debugger xe client fd: %d stage %lu, expected %lu, stage\n",
+ igt_debug("debugger xe client fd: %d stage %" PRIu64 ", expected %" PRIu64 ", stage\n",
s->debugger->master_fd, stage_in, stage);
igt_assert_eq(stage_in, stage);
@@ -1584,14 +1585,15 @@ void xe_eudebug_client_wait_stage(struct xe_eudebug_client *c, uint64_t stage)
u64 stage_in;
if (c->done) {
- igt_warn("client: %d already done before %lu\n", c->pid, stage);
+ igt_warn("client: %d already done before %" PRIu64 "\n", c->pid, stage);
return;
}
- igt_debug("client: %d pausing for stage %lu\n", c->pid, stage);
+ igt_debug("client: %d pausing for stage %" PRIu64 "\n", c->pid, stage);
stage_in = client_wait_token(c, CLIENT_STAGE);
- igt_debug("client: %d stage %lu, expected %lu, stage\n", c->pid, stage_in, stage);
+ igt_debug("client: %d stage %" PRIu64 ", expected %" PRIu64 ", stage\n", c->pid,
+ stage_in, stage);
igt_assert_eq(stage_in, stage);
}
@@ -1949,7 +1951,7 @@ uint32_t xe_eudebug_client_exec_queue_create(struct xe_eudebug_client *c, int fd
igt_assert(c);
igt_assert(create);
- instances = (struct drm_xe_engine_class_instance *)(create->instances);
+ instances = from_user_pointer(create->instances);
class = instances[0].engine_class;
igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, create), 0);
@@ -1988,6 +1990,7 @@ uint32_t xe_eudebug_client_exec_queue_create(struct xe_eudebug_client *c, int fd
void xe_eudebug_client_exec_queue_destroy(struct xe_eudebug_client *c, int fd,
struct drm_xe_exec_queue_create *create)
{
+ struct drm_xe_engine_class_instance *instances;
struct drm_xe_exec_queue_destroy destroy = {};
struct drm_xe_ext_set_property *ext;
bool send = false;
@@ -1997,7 +2000,8 @@ void xe_eudebug_client_exec_queue_destroy(struct xe_eudebug_client *c, int fd,
igt_assert(create);
destroy.exec_queue_id = create->exec_queue_id;
- class = ((struct drm_xe_engine_class_instance *)(create->instances))[0].engine_class;
+ instances = from_user_pointer(create->instances);
+ class = instances[0].engine_class;
for (ext = from_user_pointer(create->extensions); ext;
ext = from_user_pointer(ext->base.next_extension))
--
2.34.1
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH i-g-t 2/3] tests/intel/xe_eudebug_online: Fix 32b compilation warnings
2025-01-22 14:44 [PATCH i-g-t 1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors Dominik Grzegorzek
@ 2025-01-22 14:44 ` Dominik Grzegorzek
2025-01-24 14:00 ` Kamil Konieczny
2025-01-22 14:44 ` [PATCH i-g-t 3/3] tests/intel/xe_eudebug_online: Fix 32b compilation errors Dominik Grzegorzek
` (5 subsequent siblings)
6 siblings, 1 reply; 12+ messages in thread
From: Dominik Grzegorzek @ 2025-01-22 14:44 UTC (permalink / raw)
To: igt-dev
Cc: jordan.l.justen, christoph.manszewski, kamil.konieczny,
Dominik Grzegorzek
Fix all debug prints which were causing compilation warnings for 32b
archs.
Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
tests/intel/xe_eudebug_online.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c
index f532387af..1a146d8c4 100644
--- a/tests/intel/xe_eudebug_online.c
+++ b/tests/intel/xe_eudebug_online.c
@@ -569,7 +569,7 @@ static void get_aips_offset_table(struct online_debug_data *data, int threads)
igt_debug("AIPs offset table:\n");
for (int i = 0; i < threads; i++)
- igt_debug("%lx\n", data->aips_offset_table[i]);
+ igt_debug("%" PRIx64 "\n", data->aips_offset_table[i]);
}
static int get_stepped_threads_count(struct online_debug_data *data, int threads)
@@ -2328,11 +2328,11 @@ static void test_many_sessions_on_tiles(int fd, bool multi_tile)
if (multi_tile)
igt_assert_f(diff < WORKLOAD_DELAY_US,
- "Expected to execute workloads concurrently. Actual delay: %lu ms\n",
+ "Expected to execute workloads concurrently. Actual delay: %" PRIu64 " ms\n",
diff);
else
igt_assert_f(diff >= WORKLOAD_DELAY_US,
- "Expected a serialization of workloads. Actual delay: %lu ms\n",
+ "Expected a serialization of workloads. Actual delay: %" PRIu64 " ms\n",
diff);
}
--
2.34.1
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH i-g-t 2/3] tests/intel/xe_eudebug_online: Fix 32b compilation warnings
2025-01-22 14:44 ` [PATCH i-g-t 2/3] tests/intel/xe_eudebug_online: Fix 32b compilation warnings Dominik Grzegorzek
@ 2025-01-24 14:00 ` Kamil Konieczny
0 siblings, 0 replies; 12+ messages in thread
From: Kamil Konieczny @ 2025-01-24 14:00 UTC (permalink / raw)
To: igt-dev; +Cc: Dominik Grzegorzek, jordan.l.justen, christoph.manszewski
Hi Dominik,
On 2025-01-22 at 15:44:18 +0100, Dominik Grzegorzek wrote:
> Fix all debug prints which were causing compilation warnings for 32b
> archs.
>
> Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
LGTM
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> tests/intel/xe_eudebug_online.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c
> index f532387af..1a146d8c4 100644
> --- a/tests/intel/xe_eudebug_online.c
> +++ b/tests/intel/xe_eudebug_online.c
> @@ -569,7 +569,7 @@ static void get_aips_offset_table(struct online_debug_data *data, int threads)
>
> igt_debug("AIPs offset table:\n");
> for (int i = 0; i < threads; i++)
> - igt_debug("%lx\n", data->aips_offset_table[i]);
> + igt_debug("%" PRIx64 "\n", data->aips_offset_table[i]);
> }
>
> static int get_stepped_threads_count(struct online_debug_data *data, int threads)
> @@ -2328,11 +2328,11 @@ static void test_many_sessions_on_tiles(int fd, bool multi_tile)
>
> if (multi_tile)
> igt_assert_f(diff < WORKLOAD_DELAY_US,
> - "Expected to execute workloads concurrently. Actual delay: %lu ms\n",
> + "Expected to execute workloads concurrently. Actual delay: %" PRIu64 " ms\n",
> diff);
> else
> igt_assert_f(diff >= WORKLOAD_DELAY_US,
> - "Expected a serialization of workloads. Actual delay: %lu ms\n",
> + "Expected a serialization of workloads. Actual delay: %" PRIu64 " ms\n",
> diff);
> }
>
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t 3/3] tests/intel/xe_eudebug_online: Fix 32b compilation errors
2025-01-22 14:44 [PATCH i-g-t 1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors Dominik Grzegorzek
2025-01-22 14:44 ` [PATCH i-g-t 2/3] tests/intel/xe_eudebug_online: Fix 32b compilation warnings Dominik Grzegorzek
@ 2025-01-22 14:44 ` Dominik Grzegorzek
2025-01-24 14:07 ` Kamil Konieczny
2025-01-22 17:22 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors Patchwork
` (4 subsequent siblings)
6 siblings, 1 reply; 12+ messages in thread
From: Dominik Grzegorzek @ 2025-01-22 14:44 UTC (permalink / raw)
To: igt-dev
Cc: jordan.l.justen, christoph.manszewski, kamil.konieczny,
Dominik Grzegorzek
Fix metadata allocation so it is properly sized on 32b and further
calculations of its size.
Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
tests/intel/xe_eudebug_online.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c
index 1a146d8c4..726fc55b1 100644
--- a/tests/intel/xe_eudebug_online.c
+++ b/tests/intel/xe_eudebug_online.c
@@ -1063,8 +1063,8 @@ static void run_online_client(struct xe_eudebug_client *c)
uint32_t *ptr;
int fd, vm_flags;
- metadata[0] = calloc(2, sizeof(*metadata));
- metadata[1] = calloc(2, sizeof(*metadata));
+ metadata[0] = calloc(2, sizeof(**metadata));
+ metadata[1] = calloc(2, sizeof(**metadata));
igt_assert(metadata[0]);
igt_assert(metadata[1]);
@@ -1086,10 +1086,10 @@ static void run_online_client(struct xe_eudebug_client *c)
metadata[1][0] = target_offset;
metadata[1][1] = buf->size;
metadata_id[0] = xe_eudebug_client_metadata_create(c, fd, DRM_XE_DEBUG_METADATA_ELF_BINARY,
- 2 * sizeof(*metadata), metadata[0]);
+ 2 * sizeof(**metadata), metadata[0]);
metadata_id[1] = xe_eudebug_client_metadata_create(c, fd,
DRM_XE_DEBUG_METADATA_PROGRAM_MODULE,
- 2 * sizeof(*metadata), metadata[1]);
+ 2 * sizeof(**metadata), metadata[1]);
vm_flags = DRM_XE_VM_CREATE_FLAG_LR_MODE;
vm_flags |= c->flags & SHADER_PAGEFAULT ? DRM_XE_VM_CREATE_FLAG_FAULT_MODE : 0;
@@ -1144,10 +1144,10 @@ static void run_online_client(struct xe_eudebug_client *c)
xe_eudebug_client_vm_destroy(c, fd, create.vm_id);
xe_eudebug_client_metadata_destroy(c, fd, metadata_id[0], DRM_XE_DEBUG_METADATA_ELF_BINARY,
- 2 * sizeof(*metadata));
+ 2 * sizeof(**metadata));
xe_eudebug_client_metadata_destroy(c, fd, metadata_id[1],
DRM_XE_DEBUG_METADATA_PROGRAM_MODULE,
- 2 * sizeof(*metadata));
+ 2 * sizeof(**metadata));
intel_buf_destroy(buf);
--
2.34.1
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH i-g-t 3/3] tests/intel/xe_eudebug_online: Fix 32b compilation errors
2025-01-22 14:44 ` [PATCH i-g-t 3/3] tests/intel/xe_eudebug_online: Fix 32b compilation errors Dominik Grzegorzek
@ 2025-01-24 14:07 ` Kamil Konieczny
0 siblings, 0 replies; 12+ messages in thread
From: Kamil Konieczny @ 2025-01-24 14:07 UTC (permalink / raw)
To: igt-dev; +Cc: Dominik Grzegorzek, jordan.l.justen, christoph.manszewski
Hi Dominik,
On 2025-01-22 at 15:44:19 +0100, Dominik Grzegorzek wrote:
> Fix metadata allocation so it is properly sized on 32b and further
> calculations of its size.
>
> Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
LGTM
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
btw imho you could define a macro for count '2' or a macro for
size but I do not know if there are any plans to change it
in future? So instead of:
2 * sizeof(**metadata)
#define EUDEBUG_METADATA_SIZE (2*sizeof(uint64_t))
or even also define '2' as a size for it.
This could be left for later, lets first proceed with this fix.
Regards,
Kamil
> ---
> tests/intel/xe_eudebug_online.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c
> index 1a146d8c4..726fc55b1 100644
> --- a/tests/intel/xe_eudebug_online.c
> +++ b/tests/intel/xe_eudebug_online.c
> @@ -1063,8 +1063,8 @@ static void run_online_client(struct xe_eudebug_client *c)
> uint32_t *ptr;
> int fd, vm_flags;
>
> - metadata[0] = calloc(2, sizeof(*metadata));
> - metadata[1] = calloc(2, sizeof(*metadata));
> + metadata[0] = calloc(2, sizeof(**metadata));
> + metadata[1] = calloc(2, sizeof(**metadata));
> igt_assert(metadata[0]);
> igt_assert(metadata[1]);
>
> @@ -1086,10 +1086,10 @@ static void run_online_client(struct xe_eudebug_client *c)
> metadata[1][0] = target_offset;
> metadata[1][1] = buf->size;
> metadata_id[0] = xe_eudebug_client_metadata_create(c, fd, DRM_XE_DEBUG_METADATA_ELF_BINARY,
> - 2 * sizeof(*metadata), metadata[0]);
> + 2 * sizeof(**metadata), metadata[0]);
> metadata_id[1] = xe_eudebug_client_metadata_create(c, fd,
> DRM_XE_DEBUG_METADATA_PROGRAM_MODULE,
> - 2 * sizeof(*metadata), metadata[1]);
> + 2 * sizeof(**metadata), metadata[1]);
>
> vm_flags = DRM_XE_VM_CREATE_FLAG_LR_MODE;
> vm_flags |= c->flags & SHADER_PAGEFAULT ? DRM_XE_VM_CREATE_FLAG_FAULT_MODE : 0;
> @@ -1144,10 +1144,10 @@ static void run_online_client(struct xe_eudebug_client *c)
> xe_eudebug_client_vm_destroy(c, fd, create.vm_id);
>
> xe_eudebug_client_metadata_destroy(c, fd, metadata_id[0], DRM_XE_DEBUG_METADATA_ELF_BINARY,
> - 2 * sizeof(*metadata));
> + 2 * sizeof(**metadata));
> xe_eudebug_client_metadata_destroy(c, fd, metadata_id[1],
> DRM_XE_DEBUG_METADATA_PROGRAM_MODULE,
> - 2 * sizeof(*metadata));
> + 2 * sizeof(**metadata));
>
> intel_buf_destroy(buf);
>
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors
2025-01-22 14:44 [PATCH i-g-t 1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors Dominik Grzegorzek
2025-01-22 14:44 ` [PATCH i-g-t 2/3] tests/intel/xe_eudebug_online: Fix 32b compilation warnings Dominik Grzegorzek
2025-01-22 14:44 ` [PATCH i-g-t 3/3] tests/intel/xe_eudebug_online: Fix 32b compilation errors Dominik Grzegorzek
@ 2025-01-22 17:22 ` Patchwork
2025-01-22 17:26 ` ✓ i915.CI.BAT: " Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-01-22 17:22 UTC (permalink / raw)
To: Dominik Grzegorzek; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2670 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors
URL : https://patchwork.freedesktop.org/series/143854/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8206_BAT -> XEIGTPW_12478_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12478_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-vf: [PASS][1] -> [SKIP][2] ([Intel XE#1192]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
* igt@xe_pat@pat-index-xelp@render:
- bat-adlp-vf: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#3970] / [Intel XE#4078]) +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-adlp-vf: [SKIP][5] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][6] ([Intel XE#1192])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_8206 -> IGTPW_12478
* Linux: xe-2531-9f946e94bec6e5e488407c5ff6a638850e0418a7 -> xe-2532-6834acba715b85cbecfeb660b9695806e98c9a0a
IGTPW_12478: 12478
IGT_8206: 48d7780a026179e5de232142df3ac59fec6487ee @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2531-9f946e94bec6e5e488407c5ff6a638850e0418a7: 9f946e94bec6e5e488407c5ff6a638850e0418a7
xe-2532-6834acba715b85cbecfeb660b9695806e98c9a0a: 6834acba715b85cbecfeb660b9695806e98c9a0a
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/index.html
[-- Attachment #2: Type: text/html, Size: 3358 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* ✓ i915.CI.BAT: success for series starting with [i-g-t,1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors
2025-01-22 14:44 [PATCH i-g-t 1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors Dominik Grzegorzek
` (2 preceding siblings ...)
2025-01-22 17:22 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors Patchwork
@ 2025-01-22 17:26 ` Patchwork
2025-01-23 5:10 ` ✗ Xe.CI.Full: failure " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-01-22 17:26 UTC (permalink / raw)
To: Dominik Grzegorzek; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3297 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors
URL : https://patchwork.freedesktop.org/series/143854/
State : success
== Summary ==
CI Bug Log - changes from IGT_8206 -> IGTPW_12478
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/index.html
Participating hosts (45 -> 43)
------------------------------
Missing (2): fi-glk-j4005 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12478 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-apl-1: [PASS][1] -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8206/bat-apl-1/igt@dmabuf@all-tests.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/bat-apl-1/igt@dmabuf@all-tests.html
* igt@i915_selftest@live:
- bat-twl-2: NOTRUN -> [ABORT][3] ([i915#12919])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/bat-twl-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@reset:
- bat-twl-2: NOTRUN -> [ABORT][4] ([i915#13493])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/bat-twl-2/igt@i915_selftest@live@reset.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-adlp-9: [DMESG-WARN][5] -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8206/bat-adlp-9/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/bat-adlp-9/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_pm:
- bat-twl-1: [ABORT][7] ([i915#12919]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8206/bat-twl-1/igt@i915_selftest@live@gt_pm.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/bat-twl-1/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8206/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13493
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8206 -> IGTPW_12478
* Linux: CI_DRM_16000 -> CI_DRM_16001
CI-20190529: 20190529
CI_DRM_16000: 9f946e94bec6e5e488407c5ff6a638850e0418a7 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16001: 6834acba715b85cbecfeb660b9695806e98c9a0a @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12478: 12478
IGT_8206: 48d7780a026179e5de232142df3ac59fec6487ee @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/index.html
[-- Attachment #2: Type: text/html, Size: 4130 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* ✗ Xe.CI.Full: failure for series starting with [i-g-t,1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors
2025-01-22 14:44 [PATCH i-g-t 1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors Dominik Grzegorzek
` (3 preceding siblings ...)
2025-01-22 17:26 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-01-23 5:10 ` Patchwork
2025-01-24 14:14 ` Grzegorzek, Dominik
2025-01-23 19:23 ` ✗ i915.CI.Full: " Patchwork
2025-01-24 15:04 ` [PATCH i-g-t 1/3] " Kamil Konieczny
6 siblings, 1 reply; 12+ messages in thread
From: Patchwork @ 2025-01-23 5:10 UTC (permalink / raw)
To: Dominik Grzegorzek; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 110644 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors
URL : https://patchwork.freedesktop.org/series/143854/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8206_full -> XEIGTPW_12478_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12478_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12478_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_12478_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-bmg: [PASS][2] -> [INCOMPLETE][3] +1 other test incomplete
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_flip@2x-modeset-vs-vblank-race.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-hdmi-a2-dp2:
- shard-dg2-set2: NOTRUN -> [FAIL][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-hdmi-a2-dp2.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][5]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@uint-max-clock@pipe-a-dp-2:
- shard-bmg: [PASS][6] -> [DMESG-WARN][7] +4 other tests dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_invalid_mode@uint-max-clock@pipe-a-dp-2.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_invalid_mode@uint-max-clock@pipe-a-dp-2.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-dg2-set2: [PASS][8] -> [DMESG-WARN][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
- shard-lnl: [PASS][10] -> [DMESG-WARN][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
#### Warnings ####
* igt@kms_flip@flip-vs-suspend-interruptible@d-dp4:
- shard-dg2-set2: [DMESG-WARN][12] ([Intel XE#1033]) -> [INCOMPLETE][13]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
Known issues
------------
Here are the changes found in XEIGTPW_12478_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#3157])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [PASS][15] -> [FAIL][16] ([Intel XE#827]) +1 other test fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@test-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#664])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-7/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-dp-4:
- shard-dg2-set2: [PASS][18] -> [DMESG-FAIL][19] ([Intel XE#1727])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-dp-4.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-dp-4.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][20] -> [DMESG-WARN][21] ([Intel XE#1727]) +2 other tests dmesg-warn
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][22] -> [INCOMPLETE][23] ([Intel XE#1727]) +3 other tests incomplete
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-hdmi-a-6.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-hdmi-a-6.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-180:
- shard-dg2-set2: [PASS][24] -> [SKIP][25] ([Intel XE#2136]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
- shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#2136] / [Intel XE#2231])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#316]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1407]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2328])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1124]) +5 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#367]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2191])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-4/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#2191]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +7 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2887]) +6 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#455] / [Intel XE#787]) +32 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#3442])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-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][41] ([Intel XE#787]) +146 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/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-dg2-mc-ccs@pipe-d-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][42] ([Intel XE#1727])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-2.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#314]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1152]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-6/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#306])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-3/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#306])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2252]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#373]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-5/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#373]) +8 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2341])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: NOTRUN -> [FAIL][51] ([Intel XE#1178]) +2 other tests fail
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][52] ([Intel XE#3304])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@mei-interface:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1468])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-5/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-bmg: NOTRUN -> [FAIL][54] ([Intel XE#1178]) +1 other test fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#308]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2320])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1424])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-2/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#309])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2286])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2244])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#776])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@dp-mst:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1137])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-8/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][63] ([Intel XE#2049])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1421]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-2/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [PASS][65] -> [FAIL][66] ([Intel XE#3321]) +2 other tests fail
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-dg2-set2: [PASS][67] -> [FAIL][68] ([Intel XE#886])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@blocking-wf_vblank:
- shard-dg2-set2: [PASS][69] -> [SKIP][70] ([Intel XE#2423] / [i915#2575]) +6 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@kms_flip@blocking-wf_vblank.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#3007])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6:
- shard-dg2-set2: [PASS][72] -> [FAIL][73] ([Intel XE#301]) +1 other test fail
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
* igt@kms_flip@nonexisting-fb:
- shard-bmg: [PASS][74] -> [DMESG-FAIL][75] ([Intel XE#1033] / [Intel XE#1727] / [Intel XE#2705])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip@nonexisting-fb.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_flip@nonexisting-fb.html
* igt@kms_flip@nonexisting-fb@a-dp2:
- shard-bmg: [PASS][76] -> [DMESG-FAIL][77] ([Intel XE#1727] / [Intel XE#2705]) +1 other test dmesg-fail
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip@nonexisting-fb@a-dp2.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_flip@nonexisting-fb@a-dp2.html
* igt@kms_flip@nonexisting-fb@c-hdmi-a3:
- shard-bmg: [PASS][78] -> [DMESG-FAIL][79] ([Intel XE#1727]) +5 other tests dmesg-fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip@nonexisting-fb@c-hdmi-a3.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_flip@nonexisting-fb@c-hdmi-a3.html
* igt@kms_flip@nonexisting-fb@d-hdmi-a3:
- shard-bmg: [PASS][80] -> [DMESG-FAIL][81] ([Intel XE#1033] / [Intel XE#1727])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip@nonexisting-fb@d-hdmi-a3.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_flip@nonexisting-fb@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2293]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1397] / [Intel XE#1745])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1397])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1401]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#352]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2311]) +5 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#651]) +40 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-suspend.html
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#651]) +7 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [PASS][91] -> [SKIP][92] ([Intel XE#2136] / [Intel XE#2351])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#4141])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2136]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#656]) +26 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2313]) +4 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#653]) +31 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#605])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-8/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2-set2: [PASS][99] -> [DMESG-WARN][100] ([Intel XE#4152])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_hdr@bpc-switch-suspend.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1503])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-5/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_invalid_mode@bad-htotal@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][102] ([Intel XE#1033]) +15 other tests dmesg-warn
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_invalid_mode@bad-htotal@pipe-d-dp-4.html
* igt@kms_invalid_mode@zero-vdisplay:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_invalid_mode@zero-vdisplay.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#346])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_joiner@basic-big-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#346])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_joiner@basic-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2501])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#356])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- shard-bmg: [PASS][108] -> [SKIP][109] ([Intel XE#3007]) +7 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@kms_pipe_crc_basic@nonblocking-crc.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_pipe_crc_basic@nonblocking-crc.html
* igt@kms_plane_cursor@viewport:
- shard-dg2-set2: NOTRUN -> [FAIL][110] ([Intel XE#616]) +1 other test fail
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_plane_cursor@viewport.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2763]) +5 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
- shard-dg2-set2: [PASS][112] -> [DMESG-WARN][113] ([Intel XE#1033]) +58 other tests dmesg-warn
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2763]) +4 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-dg2-set2: [PASS][116] -> [DMESG-WARN][117] ([Intel XE#1033] / [Intel XE#2566])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#870])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: NOTRUN -> [FAIL][119] ([Intel XE#718]) +1 other test fail
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: NOTRUN -> [FAIL][120] ([Intel XE#2029])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-5/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@cursor:
- shard-bmg: NOTRUN -> [DMESG-WARN][121] ([Intel XE#1033])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-lnl: [PASS][122] -> [SKIP][123] ([Intel XE#3289])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-dg2-set2: [PASS][124] -> [DMESG-WARN][125] ([Intel XE#1033] / [Intel XE#2042])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_pm_rpm@drm-resources-equal.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_pm_rpm@i2c:
- shard-bmg: [PASS][126] -> [SKIP][127] ([Intel XE#2446])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@kms_pm_rpm@i2c.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_pm_rpm@i2c.html
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2446])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_pm_rpm@i2c.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1489]) +11 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#1489]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#2893]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#1122]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1406]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-3/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#3414]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#1127])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#3414] / [Intel XE#3904])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#362])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [PASS][140] -> [FAIL][141] ([Intel XE#899]) +1 other test fail
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#455]) +19 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_vrr@flipline.html
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#1499])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_vrr@flipline.html
* igt@xe_compute@ccs-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1447])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-5/igt@xe_compute@ccs-mode-basic.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_drm_fdinfo@utilization-single-full-load-isolation:
- shard-bmg: [PASS][146] -> [DMESG-WARN][147] ([Intel XE#1033]) +44 other tests dmesg-warn
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html
* igt@xe_eudebug@basic-vm-bind-extended-discovery:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#2905]) +4 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-2/igt@xe_eudebug@basic-vm-bind-extended-discovery.html
* igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#3889])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#3889]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
* igt@xe_eudebug@basic-vm-bind-ufence-sigint-client:
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#3889])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-3/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html
* igt@xe_eudebug_online@resume-dss:
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2905]) +8 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_eudebug_online@resume-dss.html
* igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram:
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2905]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html
* igt@xe_evict@evict-small-external:
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#688])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-4/igt@xe_evict@evict-small-external.html
* igt@xe_evict@evict-small-multi-vm:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][155] ([Intel XE#1033] / [Intel XE#1473])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_evict@evict-small-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd:
- shard-bmg: [PASS][156] -> [SKIP][157] ([Intel XE#1130]) +18 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2322]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1392]) +4 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#1130]) +4 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-null:
- shard-dg2-set2: [PASS][161] -> [SKIP][162] ([Intel XE#1392]) +3 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@xe_exec_basic@multigpu-once-null.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null.html
* igt@xe_exec_basic@multigpu-once-null-defer-bind:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#1392])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null-defer-bind.html
* igt@xe_exec_fault_mode@twice-invalid-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#288]) +23 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_exec_fault_mode@twice-invalid-fault.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#2360])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_threads@threads-mixed-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#1130])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@xe_exec_threads@threads-mixed-userptr-rebind.html
* igt@xe_media_fill@media-fill:
- shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#560])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-1/igt@xe_media_fill@media-fill.html
* igt@xe_module_load@load:
- shard-dg2-set2: ([PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192]) -> ([PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [SKIP][215], [PASS][216], [PASS][217], [PASS][218]) ([Intel XE#378])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@xe_module_load@load.html
* igt@xe_oa@syncs-syncobj-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][219] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_oa@syncs-syncobj-cfg.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][220] ([Intel XE#977])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-7/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: NOTRUN -> [SKIP][221] ([Intel XE#979])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][222] ([Intel XE#1173])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: NOTRUN -> [SKIP][223] ([Intel XE#2284] / [Intel XE#366])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-lnl: NOTRUN -> [SKIP][224] ([Intel XE#2284] / [Intel XE#366])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-8/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-basic:
- shard-bmg: [PASS][225] -> [DMESG-WARN][226] ([Intel XE#1033] / [Intel XE#569]) +1 other test dmesg-warn
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@xe_pm@s3-basic.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@xe_pm@s3-basic.html
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][227] ([Intel XE#1033] / [Intel XE#569])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_pm@s3-basic.html
* igt@xe_pm@s3-mocs:
- shard-dg2-set2: [PASS][228] -> [DMESG-WARN][229] ([Intel XE#1033] / [Intel XE#569])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@xe_pm@s3-mocs.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s3-multiple-execs:
- shard-lnl: NOTRUN -> [SKIP][230] ([Intel XE#584])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-4/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: NOTRUN -> [ABORT][231] ([Intel XE#1358] / [Intel XE#1794])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s4-multiple-execs:
- shard-lnl: [PASS][232] -> [ABORT][233] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-4/igt@xe_pm@s4-multiple-execs.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-dg2-set2: NOTRUN -> [SKIP][234] ([Intel XE#944]) +2 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-dg2-set2: NOTRUN -> [SKIP][235] ([Intel XE#4130])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: NOTRUN -> [SKIP][236] ([Intel XE#3342])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_vm@large-split-misaligned-binds-33554432:
- shard-dg2-set2: [PASS][237] -> [SKIP][238] ([Intel XE#1130]) +14 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_vm@large-split-misaligned-binds-33554432.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_vm@large-split-misaligned-binds-33554432.html
#### Possible fixes ####
* igt@fbdev@eof:
- shard-bmg: [SKIP][239] ([Intel XE#2134]) -> [PASS][240]
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@fbdev@eof.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@fbdev@eof.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [FAIL][241] ([Intel XE#911]) -> [PASS][242] +3 other tests pass
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-bmg: [SKIP][243] ([Intel XE#829]) -> [PASS][244] +1 other test pass
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-bmg: [INCOMPLETE][245] ([Intel XE#3225]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [DMESG-WARN][247] -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][249] ([Intel XE#1727] / [Intel XE#3124] / [Intel XE#4010]) -> [PASS][250]
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][251] -> [PASS][252] +1 other test pass
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-hdmi-a-6.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: [SKIP][253] ([Intel XE#2423] / [i915#2575]) -> [PASS][254] +4 other tests pass
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2-set2: [INCOMPLETE][255] ([Intel XE#2049]) -> [PASS][256] +2 other tests pass
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_flip@2x-absolute-wf_vblank.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [DMESG-FAIL][257] ([Intel XE#1033]) -> [PASS][258] +1 other test pass
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][259] ([Intel XE#2882]) -> [PASS][260] +1 other test pass
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][261] ([Intel XE#3321]) -> [PASS][262] +1 other test pass
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-lnl: [FAIL][263] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][265] ([Intel XE#886]) -> [PASS][266] +1 other test pass
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
* igt@kms_flip@wf_vblank-ts-check@a-hdmi-a6:
- shard-dg2-set2: [FAIL][267] ([Intel XE#886]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a6.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a6.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][269] ([Intel XE#2136]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][271] ([Intel XE#1503]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [SKIP][273] ([Intel XE#829]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-dg2-set2: [DMESG-WARN][275] ([Intel XE#1033]) -> [PASS][276] +55 other tests pass
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- shard-bmg: [SKIP][277] ([Intel XE#4108]) -> [PASS][278] +7 other tests pass
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
- shard-dg2-set2: [SKIP][279] ([Intel XE#4108]) -> [PASS][280] +2 other tests pass
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [DMESG-WARN][281] ([Intel XE#1033] / [Intel XE#2042]) -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_pm_rpm@system-suspend-modeset.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prop_blob@blob-prop-validate:
- shard-bmg: [SKIP][283] ([Intel XE#780]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_prop_blob@blob-prop-validate.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_prop_blob@blob-prop-validate.html
- shard-dg2-set2: [SKIP][285] ([Intel XE#780]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_prop_blob@blob-prop-validate.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_prop_blob@blob-prop-validate.html
* igt@kms_properties@connector-properties-legacy:
- shard-bmg: [SKIP][287] ([Intel XE#3007]) -> [PASS][288] +5 other tests pass
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_properties@connector-properties-legacy.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_properties@connector-properties-legacy.html
* igt@kms_setmode@basic:
- shard-bmg: [FAIL][289] ([Intel XE#2883]) -> [PASS][290] +2 other tests pass
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_setmode@basic.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_setmode@basic.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
- shard-bmg: [DMESG-WARN][291] ([Intel XE#1033]) -> [PASS][292] +61 other tests pass
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][293] ([Intel XE#1392]) -> [PASS][294] +2 other tests pass
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
* igt@xe_exec_basic@no-exec-bindexecqueue:
- shard-bmg: [SKIP][295] ([Intel XE#1130]) -> [PASS][296] +6 other tests pass
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@xe_exec_basic@no-exec-bindexecqueue.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@xe_exec_basic@no-exec-bindexecqueue.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [FAIL][297] ([Intel XE#3546]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@xe_module_load@reload-no-display.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@xe_module_load@reload-no-display.html
- shard-dg2-set2: [FAIL][299] ([Intel XE#3546]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@reload-no-display.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-bmg: [DMESG-WARN][301] ([Intel XE#1033] / [Intel XE#1616]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@xe_pm@s2idle-d3hot-basic-exec.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-bmg: [DMESG-WARN][303] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][304] +1 other test pass
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@xe_pm@s3-vm-bind-userptr.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@xe_pm@s3-vm-bind-userptr.html
- shard-dg2-set2: [DMESG-WARN][305] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_pm@s3-vm-bind-userptr.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [ABORT][307] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-4/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [ABORT][309] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-3/igt@xe_pm@s4-vm-bind-userptr.html
- shard-bmg: [DMESG-WARN][311] ([Intel XE#1033] / [Intel XE#2280]) -> [PASS][312]
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_vm@mmap-style-bind-many-all:
- shard-dg2-set2: [SKIP][313] ([Intel XE#1130]) -> [PASS][314] +7 other tests pass
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_vm@mmap-style-bind-many-all.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@xe_vm@mmap-style-bind-many-all.html
#### Warnings ####
* igt@kms_async_flips@test-cursor-atomic:
- shard-bmg: [DMESG-WARN][315] ([Intel XE#1033]) -> [INCOMPLETE][316] ([Intel XE#1727])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_async_flips@test-cursor-atomic.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][317] ([Intel XE#316]) -> [SKIP][318] ([Intel XE#2136])
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
- shard-bmg: [SKIP][319] ([Intel XE#2327]) -> [SKIP][320] ([Intel XE#2136] / [Intel XE#2231])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-bmg: [SKIP][321] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][322] ([Intel XE#1124]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
- shard-dg2-set2: [SKIP][323] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][324] ([Intel XE#1124])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-bmg: [SKIP][325] ([Intel XE#3282]) -> [SKIP][326] ([Intel XE#2887])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
- shard-dg2-set2: [SKIP][327] ([Intel XE#829]) -> [SKIP][328] ([Intel XE#455] / [Intel XE#787])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][329] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][330] ([Intel XE#2136])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-bmg: [SKIP][331] ([Intel XE#2887]) -> [SKIP][332] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
- shard-dg2-set2: [SKIP][333] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][334] ([Intel XE#2136] / [Intel XE#2351])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-bmg: [SKIP][335] -> [SKIP][336] ([Intel XE#2887])
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
- shard-dg2-set2: [SKIP][337] ([Intel XE#829]) -> [INCOMPLETE][338] ([Intel XE#1727])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate:
- shard-bmg: [SKIP][339] ([Intel XE#4108]) -> [SKIP][340] ([Intel XE#2252])
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html
- shard-dg2-set2: [SKIP][341] ([Intel XE#4108]) -> [SKIP][342] ([Intel XE#373])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [DMESG-FAIL][343] ([Intel XE#1033]) -> [FAIL][344] ([Intel XE#1178]) +1 other test fail
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_content_protection@atomic-dpms.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-bmg: [SKIP][345] ([Intel XE#4108]) -> [SKIP][346] ([Intel XE#2320])
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_cursor_crc@cursor-random-256x85.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][347] ([Intel XE#1033]) -> [SKIP][348] ([Intel XE#3007])
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2-set2: [SKIP][349] ([Intel XE#455]) -> [SKIP][350] ([Intel XE#2136] / [Intel XE#2351])
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@kms_dsc@dsc-with-formats.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_dsc@dsc-with-formats.html
- shard-bmg: [SKIP][351] ([Intel XE#2244]) -> [SKIP][352] ([Intel XE#2136] / [Intel XE#2231])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_dsc@dsc-with-formats.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: [SKIP][353] ([Intel XE#776]) -> [SKIP][354] ([Intel XE#2136] / [Intel XE#2231])
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_fbcon_fbt@psr.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_fbcon_fbt@psr.html
- shard-dg2-set2: [SKIP][355] ([Intel XE#776]) -> [SKIP][356] ([Intel XE#2136])
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_fbcon_fbt@psr.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [DMESG-FAIL][357] ([Intel XE#1033]) -> [FAIL][358] ([Intel XE#3321]) +2 other tests fail
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][359] ([Intel XE#2597]) -> [DMESG-WARN][360] ([Intel XE#2955])
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-dg2-set2: [DMESG-WARN][361] ([Intel XE#2955]) -> [INCOMPLETE][362] ([Intel XE#2597])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3:
- shard-bmg: [INCOMPLETE][363] ([Intel XE#2597]) -> [DMESG-WARN][364] ([Intel XE#1033])
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: [SKIP][365] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][366] ([Intel XE#2293] / [Intel XE#2380])
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-dg2-set2: [SKIP][367] ([Intel XE#2136]) -> [SKIP][368] ([Intel XE#455])
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-bmg: [SKIP][369] ([Intel XE#4108]) -> [SKIP][370] ([Intel XE#2293] / [Intel XE#2380])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
- shard-dg2-set2: [SKIP][371] ([Intel XE#4108]) -> [SKIP][372] ([Intel XE#455])
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][373] ([Intel XE#651]) -> [SKIP][374] ([Intel XE#2136] / [Intel XE#2351])
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][375] ([Intel XE#2136]) -> [SKIP][376] ([Intel XE#651])
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
- shard-bmg: [SKIP][377] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][378] ([Intel XE#2311])
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][379] ([Intel XE#4108]) -> [SKIP][380] ([Intel XE#2311]) +3 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][381] ([Intel XE#4108]) -> [SKIP][382] ([Intel XE#651]) +1 other test skip
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][383] ([Intel XE#2311]) -> [SKIP][384] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
- shard-dg2-set2: [SKIP][385] ([Intel XE#651]) -> [SKIP][386] ([Intel XE#2136]) +2 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][387] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][388] ([Intel XE#4141])
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][389] ([Intel XE#4141]) -> [SKIP][390] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][391] ([Intel XE#4108]) -> [SKIP][392] ([Intel XE#2136] / [Intel XE#2231])
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][393] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][394] ([Intel XE#653])
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][395] ([Intel XE#2313]) -> [SKIP][396] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
- shard-dg2-set2: [SKIP][397] ([Intel XE#653]) -> [SKIP][398] ([Intel XE#2136]) +1 other test skip
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: [SKIP][399] ([Intel XE#4108]) -> [SKIP][400] ([Intel XE#2313]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-bmg: [SKIP][401] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][402] ([Intel XE#2313]) +3 other tests skip
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][403] ([Intel XE#653]) -> [SKIP][404] ([Intel XE#2136] / [Intel XE#2351])
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][405] ([Intel XE#4108]) -> [SKIP][406] ([Intel XE#653])
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][407] ([Intel XE#2136]) -> [SKIP][408] ([Intel XE#653]) +1 other test skip
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_getfb@getfb2-handle-zero:
- shard-dg2-set2: [SKIP][409] ([Intel XE#687]) -> [SKIP][410] ([Intel XE#2423] / [i915#2575])
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_getfb@getfb2-handle-zero.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_getfb@getfb2-handle-zero.html
- shard-bmg: [SKIP][411] -> [SKIP][412] ([Intel XE#3007])
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_getfb@getfb2-handle-zero.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_getfb@getfb2-handle-zero.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: [SKIP][413] ([Intel XE#2927]) -> [SKIP][414] ([Intel XE#2136])
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-bmg: [SKIP][415] ([Intel XE#2927]) -> [SKIP][416] ([Intel XE#2136] / [Intel XE#2231])
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: [SKIP][417] ([Intel XE#4108]) -> [SKIP][418] ([Intel XE#4090])
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-dg2-set2: [SKIP][419] ([Intel XE#4108]) -> [SKIP][420] ([Intel XE#2925])
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: [SKIP][421] ([Intel XE#829]) -> [SKIP][422] ([Intel XE#2493])
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_plane_multiple@tiling-yf.html
- shard-dg2-set2: [SKIP][423] ([Intel XE#829]) -> [SKIP][424] ([Intel XE#455])
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_plane_multiple@tiling-yf.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][425] ([Intel XE#870]) -> [SKIP][426] ([Intel XE#2136])
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_pm_backlight@fade-with-suspend.html
- shard-bmg: [SKIP][427] ([Intel XE#870]) -> [SKIP][428] ([Intel XE#2136] / [Intel XE#2231])
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_pm_backlight@fade-with-suspend.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: [SKIP][429] -> [SKIP][430] ([Intel XE#2387])
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_psr2_su@page_flip-p010.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-primary-page-flip:
- shard-bmg: [SKIP][431] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][432] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_psr@fbc-pr-primary-page-flip.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_psr@fbc-pr-primary-page-flip.html
- shard-dg2-set2: [SKIP][433] ([Intel XE#2136]) -> [SKIP][434] ([Intel XE#2850] / [Intel XE#929])
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_psr@fbc-pr-primary-page-flip.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_psr@fbc-pr-primary-page-flip.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-dg2-set2: [SKIP][435] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][436] ([Intel XE#2136] / [Intel XE#2351])
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@kms_psr@fbc-pr-sprite-render.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_psr@fbc-pr-sprite-render.html
- shard-bmg: [SKIP][437] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][438] ([Intel XE#2136] / [Intel XE#2231])
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_psr@fbc-pr-sprite-render.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-bmg: [SKIP][439] ([Intel XE#4108]) -> [SKIP][440] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_psr@psr-cursor-plane-move.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_psr@psr-cursor-plane-move.html
- shard-dg2-set2: [SKIP][441] ([Intel XE#4108]) -> [SKIP][442] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_psr@psr-cursor-plane-move.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][443] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][444] ([Intel XE#2850] / [Intel XE#929])
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_psr@psr-dpms.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_psr@psr-dpms.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-bmg: [SKIP][445] ([Intel XE#829]) -> [DMESG-WARN][446] ([Intel XE#1033])
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
- shard-dg2-set2: [SKIP][447] ([Intel XE#829]) -> [DMESG-WARN][448] ([Intel XE#1033])
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][449] ([Intel XE#1729]) -> [SKIP][450] ([Intel XE#2426])
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][451] ([Intel XE#2509]) -> [SKIP][452] ([Intel XE#2426])
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-dg2-set2: [ABORT][453] ([Intel XE#1033] / [Intel XE#2625] / [Intel XE#4057]) -> [DMESG-WARN][454] ([Intel XE#1033])
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_vblank@ts-continuation-dpms-suspend.html
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@xe_eudebug@basic-vm-bind-vm-destroy:
- shard-bmg: [SKIP][455] ([Intel XE#2905]) -> [SKIP][456] ([Intel XE#1130])
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-vm-destroy.html
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-vm-destroy.html
* igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd:
- shard-bmg: [SKIP][457] ([Intel XE#1130]) -> [DMESG-WARN][458] ([Intel XE#1033])
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.html
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: [SKIP][459] ([Intel XE#1130]) -> [SKIP][460] ([Intel XE#2322]) +1 other test skip
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
- shard-bmg: [SKIP][461] ([Intel XE#2322]) -> [SKIP][462] ([Intel XE#1130]) +1 other test skip
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-prefetch:
- shard-bmg: [DMESG-WARN][463] ([Intel XE#1033]) -> [SKIP][464] ([Intel XE#1130])
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-prefetch.html
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-prefetch.html
- shard-dg2-set2: [SKIP][465] ([Intel XE#288]) -> [SKIP][466] ([Intel XE#1130]) +2 other tests skip
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-prefetch.html
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-prefetch.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: [SKIP][467] ([Intel XE#2248]) -> [SKIP][468] ([Intel XE#1130])
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: [SKIP][469] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][470] ([Intel XE#1130]) +1 other test skip
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [SKIP][471] ([Intel XE#1061]) -> [FAIL][472] ([Intel XE#1173])
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_peer2peer@read.html
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@xe_peer2peer@read.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [FAIL][473] ([Intel XE#1173]) -> [SKIP][474] ([Intel XE#1061])
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_peer2peer@write.html
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_peer2peer@write.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-bmg: [DMESG-WARN][475] ([Intel XE#1033] / [Intel XE#569]) -> [DMESG-WARN][476] ([Intel XE#1033] / [Intel XE#1727] / [Intel XE#569])
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@xe_pm@s3-d3hot-basic-exec.html
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s3-exec-after:
- shard-dg2-set2: [ABORT][477] ([Intel XE#1033] / [Intel XE#1358]) -> [DMESG-WARN][478] ([Intel XE#1033] / [Intel XE#569])
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_pm@s3-exec-after.html
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-dg2-set2: [DMESG-WARN][479] ([Intel XE#1033] / [Intel XE#569]) -> [ABORT][480] ([Intel XE#1358] / [Intel XE#1794])
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_pm@s3-vm-bind-prefetch.html
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-bmg: [SKIP][481] ([Intel XE#1130]) -> [SKIP][482] ([Intel XE#944])
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[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#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[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#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[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#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225
[Intel XE#3282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3282
[Intel XE#3289]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3289
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010
[Intel XE#4057]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4057
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4108]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4152
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/687
[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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[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#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8206 -> IGTPW_12478
* Linux: xe-2531-9f946e94bec6e5e488407c5ff6a638850e0418a7 -> xe-2532-6834acba715b85cbecfeb660b9695806e98c9a0a
IGTPW_12478: 12478
IGT_8206: 48d7780a026179e5de232142df3ac59fec6487ee @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2531-9f946e94bec6e5e488407c5ff6a638850e0418a7: 9f946e94bec6e5e488407c5ff6a638850e0418a7
xe-2532-6834acba715b85cbecfeb660b9695806e98c9a0a: 6834acba715b85cbecfeb660b9695806e98c9a0a
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/index.html
[-- Attachment #2: Type: text/html, Size: 138009 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: ✗ Xe.CI.Full: failure for series starting with [i-g-t,1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors
2025-01-23 5:10 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-01-24 14:14 ` Grzegorzek, Dominik
0 siblings, 0 replies; 12+ messages in thread
From: Grzegorzek, Dominik @ 2025-01-24 14:14 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org; +Cc: I915-ci-infra@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 116729 bytes --]
On Thu, 2025-01-23 at 05:10 +0000, Patchwork wrote:
Patch Details
Series: series starting with [i-g-t,1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors
URL: https://patchwork.freedesktop.org/series/143854/
State: failure
Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/index.html
CI Bug Log - changes from XEIGT_8206_full -> XEIGTPW_12478_full
Summary
FAILURE
Serious unknown changes coming with XEIGTPW_12478_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12478_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_12478_full:
IGT changes
Possible regressions
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4:
* shard-dg2-set2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4.html>
* igt@kms_flip@2x-modeset-vs-vblank-race:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_flip@2x-modeset-vs-vblank-race.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_flip@2x-modeset-vs-vblank-race.html> +1 other test incomplete
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-hdmi-a2-dp2:
* shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-hdmi-a2-dp2.html>
* igt@kms_hdr@static-toggle-suspend:
* shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_hdr@static-toggle-suspend.html>
* igt@kms_invalid_mode@uint-max-clock@pipe-a-dp-2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_invalid_mode@uint-max-clock@pipe-a-dp-2.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_invalid_mode@uint-max-clock@pipe-a-dp-2.html> +4 other tests dmesg-warn
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html>
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html>
All these failures are unrelated to the series.
Regards,
Dominik
Warnings
* igt@kms_flip@flip-vs-suspend-interruptible@d-dp4:
* shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html>
Known issues
Here are the changes found in XEIGTPW_12478_full that come from known issues:
IGT changes
Issues hit
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (Intel XE#3157<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157>)
* igt@kms_async_flips@alternate-sync-async-flip:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip.html> (Intel XE#827<https://gitlab.freedesktop.org/drm/xe/kernel/issues/827>) +1 other test fail
* igt@kms_async_flips@test-cursor-atomic:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-7/igt@kms_async_flips@test-cursor-atomic.html> (Intel XE#664<https://gitlab.freedesktop.org/drm/xe/kernel/issues/664>)
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-dp-4:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-dp-4.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-dp-4.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +2 other tests dmesg-warn
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-hdmi-a-6:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-hdmi-a-6.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-hdmi-a-6.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +3 other tests incomplete
* igt@kms_big_fb@x-tiled-32bpp-rotate-180:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +1 other test skip
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>)
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@kms_big_fb@x-tiled-32bpp-rotate-90.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-90:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +2 other tests skip
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +2 other tests skip
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/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>) +3 other tests skip
* igt@kms_big_fb@yf-tiled-addfb:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#2328<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328>)
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +5 other tests skip
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +3 other tests skip
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-4/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>)
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) +1 other test skip
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +7 other tests skip
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +6 other tests skip
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@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>) +32 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> (Intel XE#3442<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442>)
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/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>) +146 other tests skip
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-2:
* shard-dg2-set2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-2.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html> (Intel XE#314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/314>) +3 other tests skip
* igt@kms_cdclk@plane-scaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-6/igt@kms_cdclk@plane-scaling.html> (Intel XE#1152<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152>) +3 other tests skip
* igt@kms_chamelium_color@ctm-0-25:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-3/igt@kms_chamelium_color@ctm-0-25.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>)
* igt@kms_chamelium_color@ctm-limited-range:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>)
* igt@kms_chamelium_edid@dp-edid-read:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_chamelium_edid@dp-edid-read.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +1 other test skip
* igt@kms_chamelium_frames@dp-crc-single:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-5/igt@kms_chamelium_frames@dp-crc-single.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +3 other tests skip
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +8 other tests skip
* igt@kms_content_protection@content-type-change:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_content_protection@content-type-change.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>)
* igt@kms_content_protection@lic-type-0:
* shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_content_protection@lic-type-0.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) +2 other tests fail
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
* shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html> (Intel XE#3304<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304>)
* igt@kms_content_protection@mei-interface:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-5/igt@kms_content_protection@mei-interface.html> (Intel XE#1468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468>)
* igt@kms_content_protection@srm:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_content_protection@srm.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) +1 other test fail
* igt@kms_cursor_crc@cursor-offscreen-512x512:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/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-onscreen-64x21:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-64x21.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>)
* igt@kms_cursor_crc@cursor-random-32x10:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-2/igt@kms_cursor_crc@cursor-random-32x10.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>)
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>)
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (Intel XE#2286<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286>)
* igt@kms_dsc@dsc-with-output-formats:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>)
* igt@kms_fbcon_fbt@psr-suspend:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html> (Intel XE#776<https://gitlab.freedesktop.org/drm/xe/kernel/issues/776>)
* igt@kms_feature_discovery@dp-mst:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-8/igt@kms_feature_discovery@dp-mst.html> (Intel XE#1137<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137>)
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
* shard-dg2-set2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html> (Intel XE#2049<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049>)
* igt@kms_flip@2x-flip-vs-expired-vblank:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-2/igt@kms_flip@2x-flip-vs-expired-vblank.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +3 other tests skip
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) +2 other tests fail
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>)
* igt@kms_flip@blocking-wf_vblank:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@kms_flip@blocking-wf_vblank.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_flip@blocking-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>) +6 other tests skip
* igt@kms_flip@flip-vs-expired-vblank:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>)
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) +1 other test fail
* igt@kms_flip@nonexisting-fb:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip@nonexisting-fb.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_flip@nonexisting-fb.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705>)
* igt@kms_flip@nonexisting-fb@a-dp2:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip@nonexisting-fb@a-dp2.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_flip@nonexisting-fb@a-dp2.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705>) +1 other test dmesg-fail
* igt@kms_flip@nonexisting-fb@c-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip@nonexisting-fb@c-hdmi-a3.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_flip@nonexisting-fb@c-hdmi-a3.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +5 other tests dmesg-fail
* igt@kms_flip@nonexisting-fb@d-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip@nonexisting-fb@d-hdmi-a3.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_flip@nonexisting-fb@d-hdmi-a3.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-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-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>)
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397>)
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) +1 other test skip
* igt@kms_force_connector_basic@prune-stale-modes:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-8/igt@kms_force_connector_basic@prune-stale-modes.html> (Intel XE#352<https://gitlab.freedesktop.org/drm/xe/kernel/issues/352>) +1 other test skip
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +5 other tests skip
* igt@kms_frontbuffer_tracking@drrs-suspend:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-suspend.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +40 other tests skip
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-suspend.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +7 other tests skip
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-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>)
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>)
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +1 other test skip
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +26 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +4 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +31 other tests skip
* igt@kms_getfb@getfb-reject-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-8/igt@kms_getfb@getfb-reject-ccs.html> (Intel XE#605<https://gitlab.freedesktop.org/drm/xe/kernel/issues/605>)
* igt@kms_hdr@bpc-switch-suspend:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_hdr@bpc-switch-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_hdr@bpc-switch-suspend.html> (Intel XE#4152<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4152>)
* igt@kms_hdr@invalid-metadata-sizes:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-5/igt@kms_hdr@invalid-metadata-sizes.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>)
* igt@kms_invalid_mode@bad-htotal@pipe-d-dp-4:
* shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_invalid_mode@bad-htotal@pipe-d-dp-4.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) +15 other tests dmesg-warn
* igt@kms_invalid_mode@zero-vdisplay:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_invalid_mode@zero-vdisplay.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_joiner@basic-big-joiner:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_joiner@basic-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_joiner@basic-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (Intel XE#2501<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501>)
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (Intel XE#356<https://gitlab.freedesktop.org/drm/xe/kernel/issues/356>)
* igt@kms_pipe_crc_basic@nonblocking-crc:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@kms_pipe_crc_basic@nonblocking-crc.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_pipe_crc_basic@nonblocking-crc.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) +7 other tests skip
* igt@kms_plane_cursor@viewport:
* shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_plane_cursor@viewport.html> (Intel XE#616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/616>) +1 other test fail
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +5 other tests skip
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) +58 other tests dmesg-warn
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_plane_scaling@planes-unity-scaling-downscale-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>) +3 other tests skip
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +4 other tests skip
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#2566<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566>)
* igt@kms_pm_backlight@fade:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_pm_backlight@fade.html> (Intel XE#870<https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>)
* igt@kms_pm_dc@dc5-dpms:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>) +1 other test fail
* igt@kms_pm_dc@deep-pkgc:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-5/igt@kms_pm_dc@deep-pkgc.html> (Intel XE#2029<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029>)
* igt@kms_pm_rpm@cursor:
* shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_pm_rpm@cursor.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>)
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html> (Intel XE#3289<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3289>)
* igt@kms_pm_rpm@drm-resources-equal:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_pm_rpm@drm-resources-equal.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_pm_rpm@drm-resources-equal.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#2042<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042>)
* igt@kms_pm_rpm@i2c:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@kms_pm_rpm@i2c.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_pm_rpm@i2c.html> (Intel XE#2446<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>)
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_pm_rpm@i2c.html> (Intel XE#2446<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>)
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +11 other tests skip
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +1 other test skip
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html> (Intel XE#2893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893>) +1 other test skip
* igt@kms_psr2_su@page_flip-nv12:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#1122<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122>) +1 other test skip
* igt@kms_psr@fbc-psr-sprite-render:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.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>) +13 other tests skip
* igt@kms_psr@pr-sprite-render:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-3/igt@kms_psr@pr-sprite-render.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +2 other tests skip
* igt@kms_psr@psr-sprite-plane-move:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_psr@psr-sprite-plane-move.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>) +3 other tests skip
* igt@kms_rotation_crc@bad-pixel-format:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_rotation_crc@bad-pixel-format.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +1 other test skip
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>)
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414> / Intel XE#3904<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904>)
* igt@kms_tiled_display@basic-test-pattern:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/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_universal_plane@cursor-fb-leak@pipe-a-edp-1:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html> (Intel XE#899<https://gitlab.freedesktop.org/drm/xe/kernel/issues/899>) +1 other test fail
* igt@kms_vrr@flipline:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_vrr@flipline.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +19 other tests skip
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_vrr@flipline.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>)
* igt@xe_compute@ccs-mode-basic:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-5/igt@xe_compute@ccs-mode-basic.html> (Intel XE#1447<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447>)
* igt@xe_compute_preempt@compute-preempt:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/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>) +1 other test skip
* igt@xe_drm_fdinfo@utilization-single-full-load-isolation:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) +44 other tests dmesg-warn
* igt@xe_eudebug@basic-vm-bind-extended-discovery:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-2/igt@xe_eudebug@basic-vm-bind-extended-discovery.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +4 other tests skip
* igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html> (Intel XE#3889<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889>)
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html> (Intel XE#3889<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889>) +1 other test skip
* igt@xe_eudebug@basic-vm-bind-ufence-sigint-client:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-3/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html> (Intel XE#3889<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889>)
* igt@xe_eudebug_online@resume-dss:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_eudebug_online@resume-dss.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +8 other tests skip
* igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +1 other test skip
* igt@xe_evict@evict-small-external:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-4/igt@xe_evict@evict-small-external.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>)
* igt@xe_evict@evict-small-multi-vm:
* shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_evict@evict-small-multi-vm.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)
* igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +18 other tests skip
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +1 other test skip
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +4 other tests skip
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +4 other tests skip
* igt@xe_exec_basic@multigpu-once-null:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@xe_exec_basic@multigpu-once-null.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +3 other tests skip
* igt@xe_exec_basic@multigpu-once-null-defer-bind:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null-defer-bind.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>)
* igt@xe_exec_fault_mode@twice-invalid-fault:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_exec_fault_mode@twice-invalid-fault.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +23 other tests skip
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html> (Intel XE#2360<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360>)
* igt@xe_exec_threads@threads-mixed-userptr-rebind:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@xe_exec_threads@threads-mixed-userptr-rebind.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
* igt@xe_media_fill@media-fill:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-1/igt@xe_media_fill@media-fill.html> (Intel XE#560<https://gitlab.freedesktop.org/drm/xe/kernel/issues/560>)
* igt@xe_module_load@load:
* shard-dg2-set2: (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@xe_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@xe_module_load@load.html>) (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>)
* igt@xe_oa@syncs-syncobj-cfg:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_oa@syncs-syncobj-cfg.html> (Intel XE#2541<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541> / Intel XE#3573<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573>) +5 other tests skip
* igt@xe_pat@pat-index-xelp:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-7/igt@xe_pat@pat-index-xelp.html> (Intel XE#977<https://gitlab.freedesktop.org/drm/xe/kernel/issues/977>)
* igt@xe_pat@pat-index-xelpg:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@xe_pat@pat-index-xelpg.html> (Intel XE#979<https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>)
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
* shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html> (Intel XE#1173<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173>)
* igt@xe_pm@d3cold-mmap-system:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@xe_pm@d3cold-mmap-system.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@d3cold-multiple-execs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-8/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@s3-basic:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@xe_pm@s3-basic.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@xe_pm@s3-basic.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) +1 other test dmesg-warn
* shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_pm@s3-basic.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
* igt@xe_pm@s3-mocs:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@xe_pm@s3-mocs.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_pm@s3-mocs.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
* igt@xe_pm@s3-multiple-execs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-4/igt@xe_pm@s3-multiple-execs.html> (Intel XE#584<https://gitlab.freedesktop.org/drm/xe/kernel/issues/584>)
* igt@xe_pm@s3-vm-bind-unbind-all:
* shard-dg2-set2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_pm@s3-vm-bind-unbind-all.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1794<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>)
* igt@xe_pm@s4-multiple-execs:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-4/igt@xe_pm@s4-multiple-execs.html> -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/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>)
* igt@xe_query@multigpu-query-uc-fw-version-huc:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/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_sriov_auto_provisioning@exclusive-ranges:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@xe_sriov_auto_provisioning@exclusive-ranges.html> (Intel XE#4130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130>)
* igt@xe_sriov_flr@flr-each-isolation:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@xe_sriov_flr@flr-each-isolation.html> (Intel XE#3342<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342>)
* igt@xe_vm@large-split-misaligned-binds-33554432:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_vm@large-split-misaligned-binds-33554432.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_vm@large-split-misaligned-binds-33554432.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +14 other tests skip
Possible fixes
* igt@fbdev@eof:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@fbdev@eof.html> (Intel XE#2134<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@fbdev@eof.html>
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html> (Intel XE#911<https://gitlab.freedesktop.org/drm/xe/kernel/issues/911>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html> +3 other tests pass
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html> (Intel XE#829<https://gitlab.freedesktop.org/drm/xe/kernel/issues/829>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html> +1 other test pass
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html> (Intel XE#3225<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html>
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html>
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
* shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124> / Intel XE#4010<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html>
* igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-hdmi-a-6:
* shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-hdmi-a-6.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-hdmi-a-6.html> +1 other test pass
* igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.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_12478/shard-dg2-463/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html> +4 other tests pass
* igt@kms_flip@2x-absolute-wf_vblank:
* shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_flip@2x-absolute-wf_vblank.html> (Intel XE#2049<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_flip@2x-absolute-wf_vblank.html> +2 other tests pass
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html> +1 other test pass
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-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_12478/shard-bmg-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html> +1 other test pass
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html> +1 other test pass
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.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>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html>
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html> +1 other test pass
* igt@kms_flip@wf_vblank-ts-check@a-hdmi-a6:
* shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a6.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a6.html>
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html>
* igt@kms_hdr@invalid-hdr:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/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_12478/shard-bmg-7/igt@kms_hdr@invalid-hdr.html>
* igt@kms_pipe_crc_basic@suspend-read-crc:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc.html> (Intel XE#829<https://gitlab.freedesktop.org/drm/xe/kernel/issues/829>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@kms_pipe_crc_basic@suspend-read-crc.html>
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
* shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html> +55 other tests pass
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html> (Intel XE#4108<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html> +7 other tests pass
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html> (Intel XE#4108<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html> +2 other tests pass
* igt@kms_pm_rpm@system-suspend-modeset:
* shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_pm_rpm@system-suspend-modeset.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#2042<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@kms_pm_rpm@system-suspend-modeset.html>
* igt@kms_prop_blob@blob-prop-validate:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_prop_blob@blob-prop-validate.html> (Intel XE#780<https://gitlab.freedesktop.org/drm/xe/kernel/issues/780>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_prop_blob@blob-prop-validate.html>
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_prop_blob@blob-prop-validate.html> (Intel XE#780<https://gitlab.freedesktop.org/drm/xe/kernel/issues/780>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_prop_blob@blob-prop-validate.html>
* igt@kms_properties@connector-properties-legacy:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_properties@connector-properties-legacy.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_properties@connector-properties-legacy.html> +5 other tests pass
* igt@kms_setmode@basic:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_setmode@basic.html> (Intel XE#2883<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_setmode@basic.html> +2 other tests pass
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html> +61 other tests pass
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html> +2 other tests pass
* igt@xe_exec_basic@no-exec-bindexecqueue:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@xe_exec_basic@no-exec-bindexecqueue.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@xe_exec_basic@no-exec-bindexecqueue.html> +6 other tests pass
* igt@xe_module_load@reload-no-display:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@xe_module_load@reload-no-display.html> (Intel XE#3546<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@xe_module_load@reload-no-display.html>
* shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_module_load@reload-no-display.html> (Intel XE#3546<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_module_load@reload-no-display.html>
* igt@xe_pm@s2idle-d3hot-basic-exec:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@xe_pm@s2idle-d3hot-basic-exec.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@xe_pm@s2idle-d3hot-basic-exec.html>
* igt@xe_pm@s3-vm-bind-userptr:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@xe_pm@s3-vm-bind-userptr.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@xe_pm@s3-vm-bind-userptr.html> +1 other test pass
* shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_pm@s3-vm-bind-userptr.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@xe_pm@s3-vm-bind-userptr.html>
* igt@xe_pm@s4-vm-bind-unbind-all:
* shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.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_12478/shard-lnl-4/igt@xe_pm@s4-vm-bind-unbind-all.html>
* igt@xe_pm@s4-vm-bind-userptr:
* shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1794<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-lnl-3/igt@xe_pm@s4-vm-bind-userptr.html>
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#2280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@xe_pm@s4-vm-bind-userptr.html>
* igt@xe_vm@mmap-style-bind-many-all:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_vm@mmap-style-bind-many-all.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@xe_vm@mmap-style-bind-many-all.html> +7 other tests pass
Warnings
* igt@kms_async_flips@test-cursor-atomic:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_async_flips@test-cursor-atomic.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@kms_async_flips@test-cursor-atomic.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@kms_big_fb@4-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_12478/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>)
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +1 other test skip
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-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>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>)
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html> (Intel XE#3282<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3282>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html> (Intel XE#829<https://gitlab.freedesktop.org/drm/xe/kernel/issues/829>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_ccs@bad-aux-stride-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>)
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-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>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) +1 other test skip
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-y-tiled-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_12478/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-y-tiled-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>)
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html> (Intel XE#829<https://gitlab.freedesktop.org/drm/xe/kernel/issues/829>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/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_chamelium_hpd@hdmi-hpd-after-hibernate:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html> (Intel XE#4108<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html> (Intel XE#4108<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>)
* igt@kms_content_protection@atomic-dpms:
* shard-dg2-set2: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_content_protection@atomic-dpms.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) +1 other test fail
* igt@kms_cursor_crc@cursor-random-256x85:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_cursor_crc@cursor-random-256x85.html> (Intel XE#4108<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_cursor_crc@cursor-random-256x85.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>)
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>)
* igt@kms_dsc@dsc-with-formats:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@kms_dsc@dsc-with-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_12478/shard-dg2-434/igt@kms_dsc@dsc-with-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>)
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@kms_dsc@dsc-with-formats.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_dsc@dsc-with-formats.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>)
* igt@kms_fbcon_fbt@psr:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_fbcon_fbt@psr.html> (Intel XE#776<https://gitlab.freedesktop.org/drm/xe/kernel/issues/776>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_fbcon_fbt@psr.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_fbcon_fbt@psr.html> (Intel XE#776<https://gitlab.freedesktop.org/drm/xe/kernel/issues/776>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_fbcon_fbt@psr.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) +2 other tests fail
* igt@kms_flip@flip-vs-suspend-interruptible:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html> (Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html> (Intel XE#2955<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955>)
* shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html> (Intel XE#2955<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html> (Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597>)
* igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html> (Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>)
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-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_12478/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>)
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> (Intel XE#4108<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> (Intel XE#4108<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/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>)
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-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_12478/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-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>)
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>)
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>)
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html> (Intel XE#4108<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +3 other tests skip
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html> (Intel XE#4108<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +1 other test skip
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-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_12478/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) +3 other tests skip
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-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_12478/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +2 other tests skip
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>)
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) +1 other test skip
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html> (Intel XE#4108<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>)
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-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>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>)
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/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>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) +3 other tests skip
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +1 other test skip
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html> (Intel XE#4108<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +1 other test skip
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +3 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-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>)
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html> (Intel XE#4108<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>)
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +1 other test skip
* igt@kms_getfb@getfb2-handle-zero:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_getfb@getfb2-handle-zero.html> (Intel XE#687<https://gitlab.freedesktop.org/drm/xe/kernel/issues/687>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_getfb@getfb2-handle-zero.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_getfb@getfb2-handle-zero.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_getfb@getfb2-handle-zero.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>)
* igt@kms_joiner@invalid-modeset-ultra-joiner:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@kms_joiner@invalid-modeset-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_12478/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_joiner@invalid-modeset-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_12478/shard-bmg-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>)
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html> (Intel XE#4108<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html> (Intel XE#4090<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html> (Intel XE#4108<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html> (Intel XE#2925<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925>)
* igt@kms_plane_multiple@tiling-yf:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html> (Intel XE#829<https://gitlab.freedesktop.org/drm/xe/kernel/issues/829>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_plane_multiple@tiling-yf.html> (Intel XE#2493<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_plane_multiple@tiling-yf.html> (Intel XE#829<https://gitlab.freedesktop.org/drm/xe/kernel/issues/829>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_plane_multiple@tiling-yf.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>)
* igt@kms_pm_backlight@fade-with-suspend:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html> (Intel XE#870<https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_pm_backlight@fade-with-suspend.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>)
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_pm_backlight@fade-with-suspend.html> (Intel XE#870<https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_pm_backlight@fade-with-suspend.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>)
* igt@kms_psr2_su@page_flip-p010:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_psr2_su@page_flip-p010.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_psr2_su@page_flip-p010.html> (Intel XE#2387<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387>)
* igt@kms_psr@fbc-pr-primary-page-flip:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_psr@fbc-pr-primary-page-flip.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_psr@fbc-pr-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>) +1 other test skip
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@kms_psr@fbc-pr-primary-page-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_12478/shard-dg2-435/igt@kms_psr@fbc-pr-primary-page-flip.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-pr-sprite-render:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-463/igt@kms_psr@fbc-pr-sprite-render.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_12478/shard-dg2-434/igt@kms_psr@fbc-pr-sprite-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>)
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@kms_psr@fbc-pr-sprite-render.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>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@kms_psr@fbc-pr-sprite-render.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>)
* igt@kms_psr@psr-cursor-plane-move:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_psr@psr-cursor-plane-move.html> (Intel XE#4108<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@kms_psr@psr-cursor-plane-move.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>) +1 other test skip
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_psr@psr-cursor-plane-move.html> (Intel XE#4108<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@kms_psr@psr-cursor-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>) +1 other test skip
* igt@kms_psr@psr-dpms:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/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>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-435/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>)
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html> (Intel XE#829<https://gitlab.freedesktop.org/drm/xe/kernel/issues/829>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-5/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html> (Intel XE#829<https://gitlab.freedesktop.org/drm/xe/kernel/issues/829>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>)
* igt@kms_tiled_display@basic-test-pattern:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#1729<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426>)
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/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_12478/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_vblank@ts-continuation-dpms-suspend:
* shard-dg2-set2: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@kms_vblank@ts-continuation-dpms-suspend.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#2625<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625> / Intel XE#4057<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4057>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@kms_vblank@ts-continuation-dpms-suspend.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>)
* igt@xe_eudebug@basic-vm-bind-vm-destroy:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-vm-destroy.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-vm-destroy.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
* igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.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_12478/shard-bmg-3/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>)
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +1 other test skip
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +1 other test skip
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-prefetch:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-prefetch.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-prefetch.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-prefetch.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-prefetch.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +2 other tests skip
* igt@xe_oa@oa-tlb-invalidate:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html> (Intel XE#2248<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-3/igt@xe_oa@oa-tlb-invalidate.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
* igt@xe_oa@whitelisted-registers-userspace-config:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html> (Intel XE#2541<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541> / Intel XE#3573<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +1 other test skip
* igt@xe_peer2peer@read:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_peer2peer@read.html> (Intel XE#1061<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-463/igt@xe_peer2peer@read.html> (Intel XE#1173<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173>)
* igt@xe_peer2peer@write:
* shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_peer2peer@write.html> (Intel XE#1173<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_peer2peer@write.html> (Intel XE#1061<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061>)
* igt@xe_pm@s3-d3hot-basic-exec:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-5/igt@xe_pm@s3-d3hot-basic-exec.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-1/igt@xe_pm@s3-d3hot-basic-exec.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
* igt@xe_pm@s3-exec-after:
* shard-dg2-set2: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-432/igt@xe_pm@s3-exec-after.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-433/igt@xe_pm@s3-exec-after.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
* igt@xe_pm@s3-vm-bind-prefetch:
* shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-dg2-433/igt@xe_pm@s3-vm-bind-prefetch.html> (Intel XE#1033<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-dg2-432/igt@xe_pm@s3-vm-bind-prefetch.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1794<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>)
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8206/shard-bmg-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12478/shard-bmg-7/igt@xe_query@multigpu-query-topology-l3-bank-mask.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>)
Build changes
* IGT: IGT_8206 -> IGTPW_12478
* Linux: xe-2531-9f946e94bec6e5e488407c5ff6a638850e0418a7 -> xe-2532-6834acba715b85cbecfeb660b9695806e98c9a0a
IGTPW_12478: 12478
IGT_8206: 48d7780a026179e5de232142df3ac59fec6487ee @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2531-9f946e94bec6e5e488407c5ff6a638850e0418a7: 9f946e94bec6e5e488407c5ff6a638850e0418a7
xe-2532-6834acba715b85cbecfeb660b9695806e98c9a0a: 6834acba715b85cbecfeb660b9695806e98c9a0a
[-- Attachment #2: Type: text/html, Size: 136729 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ i915.CI.Full: failure for series starting with [i-g-t,1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors
2025-01-22 14:44 [PATCH i-g-t 1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors Dominik Grzegorzek
` (4 preceding siblings ...)
2025-01-23 5:10 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-01-23 19:23 ` Patchwork
2025-01-24 14:15 ` Grzegorzek, Dominik
2025-01-24 15:04 ` [PATCH i-g-t 1/3] " Kamil Konieczny
6 siblings, 1 reply; 12+ messages in thread
From: Patchwork @ 2025-01-23 19:23 UTC (permalink / raw)
To: Dominik Grzegorzek; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100302 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors
URL : https://patchwork.freedesktop.org/series/143854/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16001_full -> IGTPW_12478_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12478_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12478_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/index.html
Participating hosts (11 -> 11)
------------------------------
Additional (1): shard-glk-0
Missing (1): shard-dg2-set2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12478_full:
### IGT changes ###
#### Possible regressions ####
* igt@fbdev@write:
- shard-dg2: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg2-6/igt@fbdev@write.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@fbdev@write.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-tglu: [PASS][3] -> [FAIL][4] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-tglu-10/igt@kms_cursor_crc@cursor-random-256x85.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-4/igt@kms_cursor_crc@cursor-random-256x85.html
#### Warnings ####
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu: [SKIP][5] ([i915#6524]) -> [ABORT][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-tglu-5/igt@kms_prime@basic-modeset-hybrid.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-7/igt@kms_prime@basic-modeset-hybrid.html
Known issues
------------
Here are the changes found in IGTPW_12478_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-5/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-1/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#8411]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-17/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#8411]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +14 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +17 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#3936])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#13008])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-3/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: NOTRUN -> [INCOMPLETE][16] ([i915#7297])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][17] ([i915#12392] / [i915#7297])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#7697])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#6335])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-4/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@engines-queued:
- shard-snb: NOTRUN -> [SKIP][20] ([i915#1099]) +8 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb1/igt@gem_ctx_persistence@engines-queued.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#5882]) +7 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_ctx_sseu@engines:
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-9/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@gem_ctx_sseu@invalid-args.html
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@kms:
- shard-tglu: [PASS][27] -> [DMESG-WARN][28] ([i915#13363])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-tglu-10/igt@gem_eio@kms.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-3/igt@gem_eio@kms.html
- shard-dg2: [PASS][29] -> [FAIL][30] ([i915#5784])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg2-6/igt@gem_eio@kms.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg2: NOTRUN -> [FAIL][31] ([i915#12543] / [i915#5784])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@gem_eio@reset-stress.html
- shard-snb: NOTRUN -> [FAIL][32] ([i915#8898])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb7/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-tglu: NOTRUN -> [SKIP][34] ([i915#4525]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-5/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_capture@pi:
- shard-rkl: NOTRUN -> [DMESG-WARN][35] ([i915#12964]) +16 other tests dmesg-warn
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@gem_exec_capture@pi.html
* igt@gem_exec_endless@dispatch:
- shard-dg2: [PASS][36] -> [TIMEOUT][37] ([i915#3778] / [i915#7016])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg2-8/igt@gem_exec_endless@dispatch.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@gem_exec_endless@dispatch.html
* igt@gem_exec_endless@dispatch@vecs1:
- shard-dg2: [PASS][38] -> [TIMEOUT][39] ([i915#7016])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg2-8/igt@gem_exec_endless@dispatch@vecs1.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@gem_exec_endless@dispatch@vecs1.html
* igt@gem_exec_fence@concurrent:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4812]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@gem_exec_fence@concurrent.html
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#4812])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4812]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#3539]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-17/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) +4 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-2/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3281]) +10 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +22 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +13 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-tglu: NOTRUN -> [ABORT][51] ([i915#7975] / [i915#8213]) +1 other test abort
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg1: [PASS][52] -> [ABORT][53] ([i915#7975] / [i915#8213]) +1 other test abort
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg1-12/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4860]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4860]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4860])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-3/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#2190])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#4613] / [i915#7582])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4565]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@parallel-random:
- shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#12193]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-tglu: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@random:
- shard-glk: NOTRUN -> [SKIP][63] ([i915#4613]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk3/igt@gem_lmem_swapping@random.html
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4613])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-2/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: NOTRUN -> [TIMEOUT][65] ([i915#5493]) +1 other test timeout
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#4613]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#8289])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#284])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +6 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@gem_mmap@bad-object.html
* igt@gem_mmap@short-mmap:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4083]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-4/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4077]) +17 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_gtt@medium-copy-odd:
- shard-rkl: NOTRUN -> [DMESG-WARN][72] ([i915#12917] / [i915#12964])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@gem_mmap_gtt@medium-copy-odd.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4083]) +11 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#3282]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@gem_pread@exhaustion.html
- shard-snb: NOTRUN -> [WARN][75] ([i915#2658])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb7/igt@gem_pread@exhaustion.html
- shard-glk: NOTRUN -> [WARN][76] ([i915#2658])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk7/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3282]) +15 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite_snooped:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3282])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-3/igt@gem_pwrite_snooped.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#4270])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-7/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#4270]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-17/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-rkl: NOTRUN -> [TIMEOUT][83] ([i915#12917] / [i915#12964])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8428]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#5190] / [i915#8428]) +12 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4079]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4885]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@gem_softpin@evict-snoop-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#4885])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#4079]) +4 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@gem_tiled_pread_pwrite.html
* igt@gem_tiled_wb:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4077]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-3/igt@gem_tiled_wb.html
* igt@gem_userptr_blits@access-control:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-2/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#3282] / [i915#3297])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@gem_userptr_blits@forbidden-operations.html
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#3282] / [i915#3297])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@gem_userptr_blits@forbidden-operations.html
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#3282] / [i915#3297])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4880])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#4880]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#3297] / [i915#4958])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#4958])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#3297])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#3297])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: NOTRUN -> [INCOMPLETE][102] ([i915#13356])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk3/igt@gem_workarounds@suspend-resume-context.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][103] +20 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#2527]) +4 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-large:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#2527]) +4 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#2527] / [i915#2856]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#2856]) +5 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-1/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#2527] / [i915#2856]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-4/igt@gen9_exec_parse@cmd-crossing-page.html
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#2856])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-2/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4881]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@i915_fb_tiling.html
* igt@i915_module_load@load:
- shard-glk: ([PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135]) -> ([PASS][136], [PASS][137], [PASS][138], [DMESG-WARN][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157]) ([i915#118])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk5/igt@i915_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk6/igt@i915_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk2/igt@i915_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk8/igt@i915_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk1/igt@i915_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk2/igt@i915_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk1/igt@i915_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk4/igt@i915_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk8/igt@i915_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk3/igt@i915_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk6/igt@i915_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk7/igt@i915_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk3/igt@i915_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk9/igt@i915_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk9/igt@i915_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk3/igt@i915_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk7/igt@i915_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk1/igt@i915_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk9/igt@i915_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk5/igt@i915_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk6/igt@i915_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk8/igt@i915_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk3/igt@i915_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk7/igt@i915_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk4/igt@i915_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk6/igt@i915_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk7/igt@i915_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk1/igt@i915_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk7/igt@i915_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk7/igt@i915_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk4/igt@i915_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk1/igt@i915_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk8/igt@i915_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk5/igt@i915_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk8/igt@i915_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk3/igt@i915_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk4/igt@i915_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk9/igt@i915_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk6/igt@i915_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk9/igt@i915_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk7/igt@i915_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk3/igt@i915_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk4/igt@i915_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk5/igt@i915_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk9/igt@i915_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk5/igt@i915_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk7/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [PASS][158] -> [ABORT][159] ([i915#12817] / [i915#9820])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
- shard-glk: NOTRUN -> [DMESG-WARN][160] ([i915#1982])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [DMESG-WARN][161] ([i915#13475])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#6412])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@i915_module_load@resize-bar.html
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#7178])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@i915_module_load@resize-bar.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#7091])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#8399])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu-1: NOTRUN -> [WARN][166] ([i915#2681]) +1 other test warn
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: NOTRUN -> [WARN][167] ([i915#2681]) +4 other tests warn
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@sysfs-read:
- shard-rkl: [PASS][168] -> [SKIP][169] ([i915#13328])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-rkl-3/igt@i915_pm_rpm@sysfs-read.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@i915_pm_rpm@sysfs-read.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg1: NOTRUN -> [DMESG-WARN][170] ([i915#4423]) +1 other test dmesg-warn
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#11681] / [i915#6621]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#11681]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#11681])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@i915_pm_rps@thresholds-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#4387])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@i915_pm_sseu@full-enable.html
- shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#4387])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@i915_pm_sseu@full-enable.html
* igt@i915_selftest@live:
- shard-rkl: [PASS][176] -> [DMESG-FAIL][177] ([i915#13550]) +1 other test dmesg-fail
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-rkl-1/igt@i915_selftest@live.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@i915_selftest@live.html
* igt@i915_selftest@mock:
- shard-glk: NOTRUN -> [DMESG-WARN][178] ([i915#9311]) +1 other test dmesg-warn
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk5/igt@i915_selftest@mock.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][179] ([i915#9311]) +1 other test dmesg-warn
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-1/igt@i915_selftest@mock@memory_region.html
- shard-rkl: NOTRUN -> [DMESG-WARN][180] ([i915#9311]) +1 other test dmesg-warn
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@i915_selftest@mock@memory_region.html
- shard-dg1: NOTRUN -> [DMESG-WARN][181] ([i915#9311]) +1 other test dmesg-warn
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [PASS][182] -> [INCOMPLETE][183] ([i915#4817])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
- shard-tglu: NOTRUN -> [INCOMPLETE][184] ([i915#7443])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-2/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][185] ([i915#4817])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk6/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: [PASS][186] -> [INCOMPLETE][187] ([i915#4817])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk6/igt@i915_suspend@sysfs-reader.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk4/igt@i915_suspend@sysfs-reader.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#4212]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#4212])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#4212]) +3 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-glk: NOTRUN -> [FAIL][191] ([i915#10991] / [i915#13335])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][192] ([i915#10991])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#8709]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#10333])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-4/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#9531])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-snb: NOTRUN -> [SKIP][196] ([i915#1769])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [PASS][197] -> [FAIL][198] ([i915#11808] / [i915#5956]) +3 other tests fail
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#4423] / [i915#4538] / [i915#5286])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#5286]) +7 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#5286]) +6 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#4538] / [i915#5286]) +7 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#5286]) +4 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#3638]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#3638]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#6187])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][207] +5 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#4538] / [i915#5190]) +22 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#4538]) +4 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#10307] / [i915#6095]) +180 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#12313]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#12313]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#12313]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#6095]) +77 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#6095]) +24 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#12805])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#12805])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#6095]) +12 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#4423] / [i915#6095]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#10307] / [i915#10434] / [i915#6095])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs:
- shard-dg1: [PASS][221] -> [DMESG-WARN][222] ([i915#4423]) +7 other tests dmesg-warn
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#6095]) +44 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#6095]) +54 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#6095]) +167 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@mode-transition:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#11616] / [i915#7213]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#7213]) +3 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#4087]) +4 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#11151] / [i915#7828]) +3 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-5/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#11151] / [i915#7828]) +18 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#11151] / [i915#7828]) +10 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#11151] / [i915#7828]) +11 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#11151] / [i915#7828]) +3 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#11151] / [i915#7828]) +3 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#11151] / [i915#4423] / [i915#7828])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#9979])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-5/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#7116] / [i915#9424]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#7118] / [i915#9424])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#6944] / [i915#9424])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-7/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#3116]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#3299]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#7118])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-1/igt@kms_content_protection@srm.html
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#7118])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#7118] / [i915#9424]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-7/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#6944] / [i915#9424])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-6/igt@kms_content_protection@uevent.html
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-rkl: [PASS][247] -> [DMESG-WARN][248] ([i915#12964]) +28 other tests dmesg-warn
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-256x85.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#13049])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#13049]) +3 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#13049])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#3555]) +6 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#13049]) +3 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#8814])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: NOTRUN -> [FAIL][255] ([i915#13566]) +1 other test fail
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][256] -> [DMESG-FAIL][257] ([i915#12964]) +2 other tests dmesg-fail
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-rkl-7/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-7/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#4103]) +2 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#4103] / [i915#4213])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- shard-glk: NOTRUN -> [FAIL][260] ([i915#2346])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk8/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic:
- shard-snb: NOTRUN -> [INCOMPLETE][261] ([i915#9878])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb1/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#13046] / [i915#5354]) +10 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#9809]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][264] -> [FAIL][265] ([i915#2346])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#9067])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#4103] / [i915#4213]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#4103])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#4103])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#4213])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#9723])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#8588])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#8588])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-7/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#1769] / [i915#3555] / [i915#3804])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#3804])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#3555]) +4 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#1257])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@kms_dp_aux_dev.html
- shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#1257])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_dp_aux_dev.html
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#1257])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#8812]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#3840])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#3840])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#3840])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-17/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#3955])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#1839])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_feature_discovery@display-4x.html
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#1839])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_feature_discovery@display-4x.html
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#1839])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#658]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@kms_feature_discovery@psr1.html
- shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#658])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#658])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#9934]) +10 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#3637]) +5 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences.html
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#8381])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#3637]) +4 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-tglu: NOTRUN -> [SKIP][295] ([i915#3637]) +4 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-7/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-snb: NOTRUN -> [FAIL][296] ([i915#11989]) +1 other test fail
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#9934]) +7 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#9934]) +5 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#8381])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][300] ([i915#2587] / [i915#2672]) +4 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#2587] / [i915#2672]) +5 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#2672]) +5 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#2672] / [i915#3555]) +4 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][305] ([i915#2672] / [i915#3555] / [i915#8813]) +4 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#2587] / [i915#2672] / [i915#3555])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#2587] / [i915#2672]) +3 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][308] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#2672] / [i915#3555]) +4 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#2672] / [i915#3555]) +5 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#2672] / [i915#3555]) +4 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
- shard-tglu: NOTRUN -> [SKIP][312] ([i915#2672] / [i915#3555]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-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-mtlp: NOTRUN -> [SKIP][313] ([i915#2672] / [i915#8813])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-4/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: NOTRUN -> [SKIP][314] ([i915#2672]) +7 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [FAIL][315] ([i915#6880])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#5354]) +54 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#8708]) +32 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#1825]) +11 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][319] +43 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-snb: [PASS][320] -> [SKIP][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#5439])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][323] +26 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-tglu-1: NOTRUN -> [SKIP][324] +58 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][325] ([i915#3023]) +30 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#10055])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][327] +56 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#8708]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#3458]) +28 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#1825]) +51 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-snb: NOTRUN -> [SKIP][331] +426 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][332] ([i915#3458]) +19 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#8708]) +13 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch:
- shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#3555] / [i915#8228]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg1: NOTRUN -> [SKIP][335] ([i915#3555] / [i915#8228])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_hdr@bpc-switch-dpms.html
- shard-dg2: [PASS][336] -> [SKIP][337] ([i915#3555] / [i915#8228])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: NOTRUN -> [SKIP][338] ([i915#12713])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: NOTRUN -> [SKIP][339] ([i915#12713])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-tglu: NOTRUN -> [SKIP][340] ([i915#3555] / [i915#8228])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#3555] / [i915#8228]) +1 other test skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][342] ([i915#3555] / [i915#8228]) +2 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][343] ([i915#10656])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#12388])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_joiner@basic-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][345] ([i915#12388])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_joiner@basic-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][346] ([i915#12388])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][347] ([i915#12394] / [i915#13522])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#12394] / [i915#13522])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][349] ([i915#12339])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][350] ([i915#10656] / [i915#13522]) +1 other test skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][351] ([i915#12339]) +1 other test skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][352] ([i915#13522])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#4816])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg1: NOTRUN -> [SKIP][354] ([i915#6301])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][355] ([i915#6301])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-3/igt@kms_panel_fitting@legacy.html
- shard-dg2: NOTRUN -> [SKIP][356] ([i915#6301])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][357] ([i915#10647] / [i915#12169])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk3/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][358] ([i915#10647]) +1 other test fail
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk3/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-none:
- shard-mtlp: NOTRUN -> [SKIP][359] ([i915#11614] / [i915#3582]) +1 other test skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-5/igt@kms_plane_lowres@tiling-none.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][360] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-5/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][361] ([i915#8821])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][362] ([i915#3555]) +4 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html
- shard-dg1: NOTRUN -> [SKIP][363] ([i915#3555]) +3 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-mtlp: NOTRUN -> [SKIP][364] ([i915#12247]) +4 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
- shard-glk: NOTRUN -> [SKIP][365] +449 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk8/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][366] ([i915#12247] / [i915#6953])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][367] ([i915#12247]) +19 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20:
- shard-dg2: NOTRUN -> [SKIP][368] ([i915#12247] / [i915#9423]) +2 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#12247]) +9 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][370] ([i915#12247] / [i915#6953] / [i915#9423])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][371] ([i915#12247] / [i915#3555] / [i915#9423])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-rkl: NOTRUN -> [SKIP][372] ([i915#12247] / [i915#3555])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][373] ([i915#12247] / [i915#6953])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c:
- shard-tglu-1: NOTRUN -> [SKIP][374] ([i915#12247]) +3 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][375] ([i915#9812])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade:
- shard-dg1: NOTRUN -> [SKIP][376] ([i915#5354])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][377] ([i915#5354]) +1 other test skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu: NOTRUN -> [SKIP][378] ([i915#9685]) +1 other test skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-10/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg1: NOTRUN -> [SKIP][379] ([i915#9685])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2: NOTRUN -> [SKIP][380] ([i915#3828])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [FAIL][381] ([i915#12912])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-2/igt@kms_pm_dc@dc6-psr.html
- shard-dg2: NOTRUN -> [SKIP][382] ([i915#9685])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-7/igt@kms_pm_dc@dc6-psr.html
- shard-rkl: NOTRUN -> [SKIP][383] ([i915#9685])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][384] ([i915#3361]) +1 other test skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][385] ([i915#9340])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][386] ([i915#8430])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@cursor:
- shard-dg2: NOTRUN -> [INCOMPLETE][387] ([i915#10553])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-7/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: NOTRUN -> [SKIP][388] ([i915#9519])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-dg1: NOTRUN -> [SKIP][389] ([i915#4077]) +12 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@kms_pm_rpm@fences.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][390] ([i915#9519])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
- shard-dg1: NOTRUN -> [SKIP][391] ([i915#9519]) +1 other test skip
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][392] -> [SKIP][393] ([i915#9519]) +1 other test skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu-1: NOTRUN -> [SKIP][394] ([i915#6524])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][395] ([i915#6524])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][396] ([i915#6524] / [i915#6805]) +2 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@d3hot:
- shard-dg1: NOTRUN -> [SKIP][397] ([i915#6524]) +1 other test skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@kms_prime@d3hot.html
- shard-tglu: NOTRUN -> [SKIP][398] ([i915#6524])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-8/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][399] ([i915#11520]) +13 other tests skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][400] ([i915#9808])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][401] ([i915#12316]) +3 other tests skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][402] ([i915#11520])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-10/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-glk: NOTRUN -> [SKIP][403] ([i915#11520]) +9 other tests skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk6/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][404] ([i915#11520]) +8 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][405] ([i915#11520]) +4 other tests skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][406] ([i915#11520]) +3 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-snb: NOTRUN -> [SKIP][407] ([i915#11520]) +9 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-mtlp: NOTRUN -> [SKIP][408] ([i915#4348])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_psr2_su@page_flip-nv12.html
- shard-dg1: NOTRUN -> [SKIP][409] ([i915#9683])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_psr2_su@page_flip-nv12.html
- shard-tglu: NOTRUN -> [SKIP][410] ([i915#9683])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-5/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][411] ([i915#9683]) +2 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][412] ([i915#1072] / [i915#9732]) +42 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][413] ([i915#1072] / [i915#9732]) +22 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-mtlp: NOTRUN -> [SKIP][414] ([i915#9688]) +5 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-7/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][415] ([i915#1072] / [i915#9732]) +24 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][416] ([i915#1072] / [i915#4423] / [i915#9732])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr2-primary-render:
- shard-tglu: NOTRUN -> [SKIP][417] ([i915#9732]) +16 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-9/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][418] ([i915#9732]) +13 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][419] ([i915#9685]) +1 other test skip
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2: NOTRUN -> [SKIP][420] ([i915#12755])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][421] ([i915#4235])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu-1: NOTRUN -> [SKIP][422] ([i915#5289])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][423] ([i915#5190]) +1 other test skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg1: NOTRUN -> [SKIP][424] ([i915#5289])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][425] ([i915#12755] / [i915#5190]) +1 other test skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic:
- shard-snb: NOTRUN -> [FAIL][426] ([i915#5465]) +2 other tests fail
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb1/igt@kms_setmode@basic.html
- shard-tglu: [PASS][427] -> [FAIL][428] ([i915#5465]) +2 other tests fail
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-tglu-3/igt@kms_setmode@basic.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-5/igt@kms_setmode@basic.html
- shard-dg2: [PASS][429] -> [FAIL][430] ([i915#5465])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg2-2/igt@kms_setmode@basic.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [FAIL][431] ([i915#5465]) +1 other test fail
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [PASS][432] -> [FAIL][433] ([i915#5465]) +2 other tests fail
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-tglu: NOTRUN -> [SKIP][434] ([i915#3555]) +1 other test skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][435] ([IGT#160])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: NOTRUN -> [SKIP][436] ([i915#8623])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-dpms-rpm:
- shard-rkl: [PASS][437] -> [DMESG-WARN][438] ([i915#12917] / [i915#12964])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-rkl-7/igt@kms_vblank@ts-continuation-dpms-rpm.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@kms_vblank@ts-continuation-dpms-rpm.html
* igt@kms_vblank@wait-busy@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [DMESG-WARN][439] ([i915#118]) +3 other tests dmesg-warn
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk8/igt@kms_vblank@wait-busy@pipe-c-hdmi-a-1.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][440] ([i915#11920])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@kms_vrr@lobf.html
- shard-tglu-1: NOTRUN -> [SKIP][441] ([i915#11920])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [PASS][442] -> [FAIL][443] ([i915#10393]) +1 other test fail
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-mtlp-4/igt@kms_vrr@negative-basic.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_vrr@negative-basic.html
- shard-tglu-1: NOTRUN -> [SKIP][444] ([i915#3555] / [i915#9906])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][445] ([i915#9906])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-dg1: NOTRUN -> [SKIP][446] ([i915#9906])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu: NOTRUN -> [SKIP][447] ([i915#9906])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-vrr.html
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/index.html
[-- Attachment #2: Type: text/html, Size: 111424 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: ✗ i915.CI.Full: failure for series starting with [i-g-t,1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors
2025-01-23 19:23 ` ✗ i915.CI.Full: " Patchwork
@ 2025-01-24 14:15 ` Grzegorzek, Dominik
0 siblings, 0 replies; 12+ messages in thread
From: Grzegorzek, Dominik @ 2025-01-24 14:15 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org; +Cc: I915-ci-infra@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 92814 bytes --]
On Thu, 2025-01-23 at 19:23 +0000, Patchwork wrote:
Patch Details
Series: series starting with [i-g-t,1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors
URL: https://patchwork.freedesktop.org/series/143854/
State: failure
Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/index.html
CI Bug Log - changes from CI_DRM_16001_full -> IGTPW_12478_full
Summary
FAILURE
Serious unknown changes coming with IGTPW_12478_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12478_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/index.html
Participating hosts (11 -> 11)
Additional (1): shard-glk-0
Missing (1): shard-dg2-set2
Possible new issues
Here are the unknown changes that may have been introduced in IGTPW_12478_full:
IGT changes
Possible regressions
* igt@fbdev@write:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg2-6/igt@fbdev@write.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@fbdev@write.html>
* igt@kms_cursor_crc@cursor-random-256x85:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-tglu-10/igt@kms_cursor_crc@cursor-random-256x85.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-4/igt@kms_cursor_crc@cursor-random-256x85.html> +1 other test fail
Warnings
* igt@kms_prime@basic-modeset-hybrid:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-tglu-5/igt@kms_prime@basic-modeset-hybrid.html> ([i915#6524]) -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-7/igt@kms_prime@basic-modeset-hybrid.html>
These are unrelated to this series.
Regards,
Dominik
Known issues
Here are the changes found in IGTPW_12478_full that come from known issues:
IGT changes
Issues hit
* igt@api_intel_bb@blit-reloc-keep-cache:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-5/igt@api_intel_bb@blit-reloc-keep-cache.html> ([i915#8411])
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-1/igt@api_intel_bb@blit-reloc-keep-cache.html> ([i915#8411])
* igt@api_intel_bb@blit-reloc-purge-cache:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-17/igt@api_intel_bb@blit-reloc-purge-cache.html> ([i915#8411]) +1 other test skip
* igt@api_intel_bb@object-reloc-keep-cache:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@api_intel_bb@object-reloc-keep-cache.html> ([i915#8411]) +3 other tests skip
* igt@drm_fdinfo@busy-idle-check-all@vcs1:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@drm_fdinfo@busy-idle-check-all@vcs1.html> ([i915#8414]) +14 other tests skip
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html> ([i915#8414]) +17 other tests skip
* igt@gem_busy@semaphore:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@gem_busy@semaphore.html> ([i915#3936])
* igt@gem_ccs@block-copy-compressed:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html> ([i915#3555] / [i915#9323]) +1 other test skip
* igt@gem_ccs@large-ctrl-surf-copy:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-3/igt@gem_ccs@large-ctrl-surf-copy.html> ([i915#13008])
* igt@gem_ccs@suspend-resume:
* shard-dg2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@gem_ccs@suspend-resume.html> ([i915#7297])
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
* shard-dg2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html> ([i915#12392] / [i915#7297])
* igt@gem_close_race@multigpu-basic-threads:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@gem_close_race@multigpu-basic-threads.html> ([i915#7697])
* igt@gem_create@create-ext-cpu-access-big:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-4/igt@gem_create@create-ext-cpu-access-big.html> ([i915#6335])
* igt@gem_ctx_persistence@engines-queued:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb1/igt@gem_ctx_persistence@engines-queued.html> ([i915#1099]) +8 other tests skip
* igt@gem_ctx_persistence@heartbeat-hang:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-hang.html> ([i915#8555]) +2 other tests skip
* igt@gem_ctx_persistence@heartbeat-stop:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-stop.html> ([i915#8555]) +1 other test skip
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html> ([i915#5882]) +7 other tests skip
* igt@gem_ctx_sseu@engines:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-9/igt@gem_ctx_sseu@engines.html> ([i915#280])
* igt@gem_ctx_sseu@invalid-args:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@gem_ctx_sseu@invalid-args.html> ([i915#280])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@gem_ctx_sseu@invalid-args.html> ([i915#280])
* igt@gem_eio@kms:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-tglu-10/igt@gem_eio@kms.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-3/igt@gem_eio@kms.html> ([i915#13363])
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg2-6/igt@gem_eio@kms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@gem_eio@kms.html> ([i915#5784])
* igt@gem_eio@reset-stress:
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@gem_eio@reset-stress.html> ([i915#12543] / [i915#5784])
* shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb7/igt@gem_eio@reset-stress.html> ([i915#8898])
* igt@gem_exec_balancer@parallel-bb-first:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@gem_exec_balancer@parallel-bb-first.html> ([i915#4525]) +1 other test skip
* igt@gem_exec_balancer@parallel-keep-in-fence:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-5/igt@gem_exec_balancer@parallel-keep-in-fence.html> ([i915#4525]) +1 other test skip
* igt@gem_exec_capture@pi:
* shard-rkl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@gem_exec_capture@pi.html> ([i915#12964]) +16 other tests dmesg-warn
* igt@gem_exec_endless@dispatch:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg2-8/igt@gem_exec_endless@dispatch.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@gem_exec_endless@dispatch.html> ([i915#3778] / [i915#7016])
* igt@gem_exec_endless@dispatch@vecs1:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg2-8/igt@gem_exec_endless@dispatch@vecs1.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@gem_exec_endless@dispatch@vecs1.html> ([i915#7016])
* igt@gem_exec_fence@concurrent:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@gem_exec_fence@concurrent.html> ([i915#4812]) +1 other test skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@gem_exec_fence@concurrent.html> ([i915#4812])
* igt@gem_exec_fence@submit3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@gem_exec_fence@submit3.html> ([i915#4812]) +3 other tests skip
* igt@gem_exec_flush@basic-uc-prw-default:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-17/igt@gem_exec_flush@basic-uc-prw-default.html> ([i915#3539]) +1 other test skip
* igt@gem_exec_flush@basic-uc-rw-default:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@gem_exec_flush@basic-uc-rw-default.html> ([i915#3539] / [i915#4852]) +3 other tests skip
* igt@gem_exec_flush@basic-wb-prw-default:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@gem_exec_flush@basic-wb-prw-default.html> ([i915#3539] / [i915#4852]) +2 other tests skip
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-2/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html> ([i915#3281]) +4 other tests skip
* igt@gem_exec_reloc@basic-write-cpu-active:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@gem_exec_reloc@basic-write-cpu-active.html> ([i915#3281]) +10 other tests skip
* igt@gem_exec_reloc@basic-write-read-active:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@gem_exec_reloc@basic-write-read-active.html> ([i915#3281]) +22 other tests skip
* igt@gem_exec_reloc@basic-write-read-noreloc:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-noreloc.html> ([i915#3281]) +13 other tests skip
* igt@gem_exec_schedule@preempt-queue-contexts:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-contexts.html> ([i915#4537] / [i915#4812])
* igt@gem_exec_suspend@basic-s4-devices:
* shard-tglu: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices.html> ([i915#7975] / [i915#8213]) +1 other test abort
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg1-12/igt@gem_exec_suspend@basic-s4-devices@lmem0.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html> ([i915#7975] / [i915#8213]) +1 other test abort
* igt@gem_fence_thrash@bo-copy:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@gem_fence_thrash@bo-copy.html> ([i915#4860]) +4 other tests skip
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-threaded-none.html> ([i915#4860]) +2 other tests skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-3/igt@gem_fence_thrash@bo-write-verify-threaded-none.html> ([i915#4860])
* igt@gem_huc_copy@huc-copy:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@gem_huc_copy@huc-copy.html> ([i915#2190])
* igt@gem_lmem_evict@dontneed-evict-race:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html> ([i915#4613] / [i915#7582])
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html> ([i915#4565]) +1 other test skip
* igt@gem_lmem_swapping@parallel-random:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@gem_lmem_swapping@parallel-random.html> ([i915#4613])
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@gem_lmem_swapping@parallel-random-verify-ccs.html> ([i915#12193]) +1 other test skip
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html> ([i915#4613]) +1 other test skip
* igt@gem_lmem_swapping@random:
* shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk3/igt@gem_lmem_swapping@random.html> ([i915#4613]) +4 other tests skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-2/igt@gem_lmem_swapping@random.html> ([i915#4613])
* igt@gem_lmem_swapping@smem-oom@lmem0:
* shard-dg2: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html> ([i915#5493]) +1 other test timeout
* igt@gem_lmem_swapping@verify-ccs:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@gem_lmem_swapping@verify-ccs.html> ([i915#4613]) +1 other test skip
* igt@gem_media_fill@media-fill:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@gem_media_fill@media-fill.html> ([i915#8289])
* igt@gem_media_vme:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@gem_media_vme.html> ([i915#284])
* igt@gem_mmap@bad-object:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@gem_mmap@bad-object.html> ([i915#4083]) +6 other tests skip
* igt@gem_mmap@short-mmap:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-4/igt@gem_mmap@short-mmap.html> ([i915#4083]) +3 other tests skip
* igt@gem_mmap_gtt@fault-concurrent-x:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@gem_mmap_gtt@fault-concurrent-x.html> ([i915#4077]) +17 other tests skip
* igt@gem_mmap_gtt@medium-copy-odd:
* shard-rkl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@gem_mmap_gtt@medium-copy-odd.html> ([i915#12917] / [i915#12964])
* igt@gem_mmap_wc@invalid-flags:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@gem_mmap_wc@invalid-flags.html> ([i915#4083]) +11 other tests skip
* igt@gem_pread@exhaustion:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@gem_pread@exhaustion.html> ([i915#3282]) +2 other tests skip
* shard-snb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb7/igt@gem_pread@exhaustion.html> ([i915#2658])
* shard-glk: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk7/igt@gem_pread@exhaustion.html> ([i915#2658])
* igt@gem_pread@snoop:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@gem_pread@snoop.html> ([i915#3282]) +15 other tests skip
* igt@gem_pwrite@basic-exhaustion:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@gem_pwrite@basic-exhaustion.html> ([i915#3282]) +3 other tests skip
* igt@gem_pwrite_snooped:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-3/igt@gem_pwrite_snooped.html> ([i915#3282])
* igt@gem_pxp@display-protected-crc:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@gem_pxp@display-protected-crc.html> ([i915#4270]) +3 other tests skip
* igt@gem_pxp@regular-baseline-src-copy-readible:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-7/igt@gem_pxp@regular-baseline-src-copy-readible.html> ([i915#4270])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-17/igt@gem_pxp@regular-baseline-src-copy-readible.html> ([i915#4270]) +2 other tests skip
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
* shard-rkl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@gem_pxp@verify-pxp-stale-ctx-execution.html> ([i915#12917] / [i915#12964])
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html> ([i915#8428]) +1 other test skip
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html> ([i915#5190] / [i915#8428]) +12 other tests skip
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html> ([i915#4079]) +3 other tests skip
* igt@gem_softpin@evict-snoop-interruptible:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@gem_softpin@evict-snoop-interruptible.html> ([i915#4885]) +1 other test skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@gem_softpin@evict-snoop-interruptible.html> ([i915#4885])
* igt@gem_tiled_pread_pwrite:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@gem_tiled_pread_pwrite.html> ([i915#4079]) +4 other tests skip
* igt@gem_tiled_wb:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-3/igt@gem_tiled_wb.html> ([i915#4077]) +4 other tests skip
* igt@gem_userptr_blits@access-control:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@gem_userptr_blits@access-control.html> ([i915#3297]) +1 other test skip
* igt@gem_userptr_blits@dmabuf-unsync:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-2/igt@gem_userptr_blits@dmabuf-unsync.html> ([i915#3297]) +1 other test skip
* igt@gem_userptr_blits@forbidden-operations:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@gem_userptr_blits@forbidden-operations.html> ([i915#3282] / [i915#3297])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@gem_userptr_blits@forbidden-operations.html> ([i915#3282] / [i915#3297])
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@gem_userptr_blits@forbidden-operations.html> ([i915#3282] / [i915#3297])
* igt@gem_userptr_blits@map-fixed-invalidate:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate.html> ([i915#3297] / [i915#4880])
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html> ([i915#3297] / [i915#4880]) +1 other test skip
* igt@gem_userptr_blits@sd-probe:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@gem_userptr_blits@sd-probe.html> ([i915#3297] / [i915#4958])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@gem_userptr_blits@sd-probe.html> ([i915#3297] / [i915#4958])
* igt@gem_userptr_blits@unsync-unmap:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@gem_userptr_blits@unsync-unmap.html> ([i915#3297])
* igt@gem_userptr_blits@unsync-unmap-cycles:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-cycles.html> ([i915#3297])
* igt@gem_workarounds@suspend-resume-context:
* shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk3/igt@gem_workarounds@suspend-resume-context.html> ([i915#13356])
* igt@gen7_exec_parse@bitmasks:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@gen7_exec_parse@bitmasks.html> +20 other tests skip
* igt@gen9_exec_parse@batch-invalid-length:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html> ([i915#2527]) +4 other tests skip
* igt@gen9_exec_parse@bb-large:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@gen9_exec_parse@bb-large.html> ([i915#2527]) +4 other tests skip
* igt@gen9_exec_parse@bb-secure:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html> ([i915#2527] / [i915#2856]) +2 other tests skip
* igt@gen9_exec_parse@bb-start-param:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-1/igt@gen9_exec_parse@bb-start-param.html> ([i915#2856]) +5 other tests skip
* igt@gen9_exec_parse@cmd-crossing-page:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-4/igt@gen9_exec_parse@cmd-crossing-page.html> ([i915#2527] / [i915#2856]) +1 other test skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-2/igt@gen9_exec_parse@cmd-crossing-page.html> ([i915#2856])
* igt@i915_fb_tiling:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@i915_fb_tiling.html> ([i915#4881]) +1 other test skip
* igt@i915_module_load@load:
* shard-glk: (PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk2/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk8/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk2/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk8/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk8/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk4/igt@i915_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk1/igt@i915_module_load@load.html>, DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk8/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk8/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk7/igt@i915_module_load@load.html>) ([i915#118])
* igt@i915_module_load@reload-with-fault-injection:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html> ([i915#12817] / [i915#9820])
* shard-glk: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html> ([i915#1982])
* shard-dg2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html> ([i915#13475])
* igt@i915_module_load@resize-bar:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@i915_module_load@resize-bar.html> ([i915#6412])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@i915_module_load@resize-bar.html> ([i915#7178])
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html> ([i915#7091])
* igt@i915_pm_freq_api@freq-reset:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@i915_pm_freq_api@freq-reset.html> ([i915#8399])
* igt@i915_pm_rc6_residency@rc6-fence:
* shard-tglu-1: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html> ([i915#2681]) +1 other test warn
* igt@i915_pm_rc6_residency@rc6-idle:
* shard-tglu: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle.html> ([i915#2681]) +4 other tests warn
* igt@i915_pm_rpm@sysfs-read:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-rkl-3/igt@i915_pm_rpm@sysfs-read.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@i915_pm_rpm@sysfs-read.html> ([i915#13328])
* igt@i915_pm_rpm@system-suspend-execbuf:
* shard-dg1: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@i915_pm_rpm@system-suspend-execbuf.html> ([i915#4423]) +1 other test dmesg-warn
* igt@i915_pm_rps@min-max-config-idle:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@i915_pm_rps@min-max-config-idle.html> ([i915#11681] / [i915#6621]) +1 other test skip
* igt@i915_pm_rps@thresholds-idle-park:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@i915_pm_rps@thresholds-idle-park.html> ([i915#11681]) +1 other test skip
* igt@i915_pm_rps@thresholds-park:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@i915_pm_rps@thresholds-park.html> ([i915#11681])
* igt@i915_pm_sseu@full-enable:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@i915_pm_sseu@full-enable.html> ([i915#4387])
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@i915_pm_sseu@full-enable.html> ([i915#4387])
* igt@i915_selftest@live:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-rkl-1/igt@i915_selftest@live.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@i915_selftest@live.html> ([i915#13550]) +1 other test dmesg-fail
* igt@i915_selftest@mock:
* shard-glk: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk5/igt@i915_selftest@mock.html> ([i915#9311]) +1 other test dmesg-warn
* igt@i915_selftest@mock@memory_region:
* shard-dg2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-1/igt@i915_selftest@mock@memory_region.html> ([i915#9311]) +1 other test dmesg-warn
* shard-rkl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@i915_selftest@mock@memory_region.html> ([i915#9311]) +1 other test dmesg-warn
* shard-dg1: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@i915_selftest@mock@memory_region.html> ([i915#9311]) +1 other test dmesg-warn
* igt@i915_suspend@basic-s3-without-i915:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html> ([i915#4817])
* shard-tglu: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-2/igt@i915_suspend@basic-s3-without-i915.html> ([i915#7443])
* igt@i915_suspend@fence-restore-tiled2untiled:
* shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk6/igt@i915_suspend@fence-restore-tiled2untiled.html> ([i915#4817])
* igt@i915_suspend@sysfs-reader:
* shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk6/igt@i915_suspend@sysfs-reader.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk4/igt@i915_suspend@sysfs-reader.html> ([i915#4817])
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html> ([i915#4212]) +2 other tests skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html> ([i915#4212])
* igt@kms_addfb_basic@clobberred-modifier:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_addfb_basic@clobberred-modifier.html> ([i915#4212]) +3 other tests skip
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
* shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip-atomic.html> ([i915#10991] / [i915#13335])
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1:
* shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1.html> ([i915#10991])
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc.html> ([i915#8709]) +3 other tests skip
* igt@kms_async_flips@test-cursor:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-4/igt@kms_async_flips@test-cursor.html> ([i915#10333])
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> ([i915#9531])
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> ([i915#1769])
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html> ([i915#11808] / [i915#5956]) +3 other tests fail
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html> ([i915#4423] / [i915#4538] / [i915#5286])
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> ([i915#5286]) +7 other tests skip
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> ([i915#5286]) +6 other tests skip
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html> ([i915#4538] / [i915#5286]) +7 other tests skip
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> ([i915#5286]) +4 other tests skip
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> ([i915#3638]) +1 other test skip
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html> ([i915#3638]) +2 other tests skip
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> ([i915#6187])
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> +5 other tests skip
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html> ([i915#4538] / [i915#5190]) +22 other tests skip
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> ([i915#4538]) +4 other tests skip
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html> ([i915#10307] / [i915#6095]) +180 other tests skip
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html> ([i915#12313]) +1 other test skip
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html> ([i915#12313]) +1 other test skip
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html> ([i915#12313]) +1 other test skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html> ([i915#6095]) +77 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html> ([i915#6095]) +24 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> ([i915#12805])
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> ([i915#12805])
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html> ([i915#6095]) +12 other tests skip
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html> ([i915#4423] / [i915#6095]) +1 other test skip
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html> ([i915#10307] / [i915#10434] / [i915#6095])
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html> ([i915#4423]) +7 other tests dmesg-warn
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html> ([i915#6095]) +44 other tests skip
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html> ([i915#6095]) +54 other tests skip
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html> ([i915#6095]) +167 other tests skip
* igt@kms_cdclk@mode-transition:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@kms_cdclk@mode-transition.html> ([i915#11616] / [i915#7213]) +1 other test skip
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html> ([i915#7213]) +3 other tests skip
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html> ([i915#4087]) +4 other tests skip
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-5/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html> ([i915#11151] / [i915#7828]) +3 other tests skip
* igt@kms_chamelium_frames@dp-crc-fast:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-fast.html> ([i915#11151] / [i915#7828]) +18 other tests skip
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html> ([i915#11151] / [i915#7828]) +10 other tests skip
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html> ([i915#11151] / [i915#7828]) +11 other tests skip
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html> ([i915#11151] / [i915#7828]) +3 other tests skip
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html> ([i915#11151] / [i915#7828]) +3 other tests skip
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html> ([i915#11151] / [i915#4423] / [i915#7828])
* igt@kms_color@deep-color:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-5/igt@kms_color@deep-color.html> ([i915#3555] / [i915#9979])
* igt@kms_content_protection@atomic:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_content_protection@atomic.html> ([i915#7116] / [i915#9424]) +1 other test skip
* igt@kms_content_protection@atomic-dpms:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_content_protection@atomic-dpms.html> ([i915#7118] / [i915#9424])
* igt@kms_content_protection@content-type-change:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-7/igt@kms_content_protection@content-type-change.html> ([i915#6944] / [i915#9424])
* igt@kms_content_protection@dp-mst-type-1:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1.html> ([i915#3116]) +1 other test skip
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_content_protection@dp-mst-type-1.html> ([i915#3299]) +1 other test skip
* igt@kms_content_protection@srm:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-1/igt@kms_content_protection@srm.html> ([i915#7118])
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@kms_content_protection@srm.html> ([i915#7118])
* igt@kms_content_protection@type1:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-7/igt@kms_content_protection@type1.html> ([i915#7118] / [i915#9424]) +1 other test skip
* igt@kms_content_protection@uevent:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-6/igt@kms_content_protection@uevent.html> ([i915#6944] / [i915#9424])
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-5/igt@kms_content_protection@uevent.html> ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
* igt@kms_cursor_crc@cursor-offscreen-256x85:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-256x85.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-256x85.html> ([i915#12964]) +28 other tests dmesg-warn
* igt@kms_cursor_crc@cursor-offscreen-512x512:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html> ([i915#13049])
* igt@kms_cursor_crc@cursor-onscreen-512x170:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html> ([i915#13049]) +3 other tests skip
* igt@kms_cursor_crc@cursor-onscreen-512x512:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html> ([i915#13049])
* igt@kms_cursor_crc@cursor-random-32x32:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html> ([i915#3555]) +6 other tests skip
* igt@kms_cursor_crc@cursor-random-512x512:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x512.html> ([i915#13049]) +3 other tests skip
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html> ([i915#8814])
* igt@kms_cursor_crc@cursor-sliding-256x85:
* shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-256x85.html> ([i915#13566]) +1 other test fail
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-rkl-7/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-7/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html> ([i915#12964]) +2 other tests dmesg-fail
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> ([i915#4103]) +2 other tests skip
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> ([i915#4103] / [i915#4213])
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
* shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk8/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html> ([i915#2346])
* igt@kms_cursor_legacy@cursor-vs-flip-atomic:
* shard-snb: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb1/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html> ([i915#9878])
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html> ([i915#13046] / [i915#5354]) +10 other tests skip
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html> ([i915#9809]) +3 other tests skip
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
* shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> ([i915#2346])
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html> ([i915#9067])
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> ([i915#4103] / [i915#4213]) +1 other test skip
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> ([i915#4103])
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> ([i915#4103])
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> ([i915#4213])
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> ([i915#9723])
* igt@kms_display_modes@mst-extended-mode-negative:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_display_modes@mst-extended-mode-negative.html> ([i915#8588])
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-7/igt@kms_display_modes@mst-extended-mode-negative.html> ([i915#8588])
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html> ([i915#1769] / [i915#3555] / [i915#3804])
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html> ([i915#3804])
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html> ([i915#3555]) +4 other tests skip
* igt@kms_dp_aux_dev:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@kms_dp_aux_dev.html> ([i915#1257])
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_dp_aux_dev.html> ([i915#1257])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_dp_aux_dev.html> ([i915#1257])
* igt@kms_draw_crc@draw-method-mmap-wc:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html> ([i915#8812]) +1 other test skip
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> ([i915#3840])
* igt@kms_dsc@dsc-with-bpc:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_dsc@dsc-with-bpc.html> ([i915#3555] / [i915#3840])
* igt@kms_dsc@dsc-with-formats:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-17/igt@kms_dsc@dsc-with-formats.html> ([i915#3555] / [i915#3840])
* igt@kms_fbcon_fbt@psr:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_fbcon_fbt@psr.html> ([i915#3955])
* igt@kms_feature_discovery@display-4x:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_feature_discovery@display-4x.html> ([i915#1839])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_feature_discovery@display-4x.html> ([i915#1839])
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@kms_feature_discovery@display-4x.html> ([i915#1839])
* igt@kms_feature_discovery@psr1:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@kms_feature_discovery@psr1.html> ([i915#658]) +1 other test skip
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_feature_discovery@psr1.html> ([i915#658])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_feature_discovery@psr1.html> ([i915#658])
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html> ([i915#9934]) +10 other tests skip
* igt@kms_flip@2x-flip-vs-fences:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences.html> ([i915#3637]) +5 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences.html> ([i915#8381])
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> ([i915#3637]) +4 other tests skip
* igt@kms_flip@2x-modeset-vs-vblank-race:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-7/igt@kms_flip@2x-modeset-vs-vblank-race.html> ([i915#3637]) +4 other tests skip
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
* shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> ([i915#11989]) +1 other test fail
* igt@kms_flip@2x-plain-flip-interruptible:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@kms_flip@2x-plain-flip-interruptible.html> ([i915#9934]) +7 other tests skip
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html> ([i915#9934]) +5 other tests skip
* igt@kms_flip@flip-vs-fences:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_flip@flip-vs-fences.html> ([i915#8381])
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672]) +4 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672]) +5 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> ([i915#2672]) +5 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html> ([i915#2672] / [i915#3555]) +4 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html> ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html> ([i915#2672] / [i915#3555] / [i915#8813]) +4 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html> ([i915#2587] / [i915#2672] / [i915#3555])
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672]) +3 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html> ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html> ([i915#2672] / [i915#3555]) +4 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> ([i915#2672] / [i915#3555]) +5 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> ([i915#2672] / [i915#3555]) +4 other tests skip
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> ([i915#2672] / [i915#3555]) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html> ([i915#2672] / [i915#8813])
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html> ([i915#2672]) +7 other tests skip
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html> ([i915#6880])
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html> ([i915#5354]) +54 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html> ([i915#8708]) +32 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html> ([i915#1825]) +11 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html> +43 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite:
* shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html>
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html> ([i915#5439])
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html> +26 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html> +58 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html> ([i915#3023]) +30 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html> ([i915#10055])
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html> +56 other tests skip
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html> ([i915#8708]) +1 other test skip
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html> ([i915#3458]) +28 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html> ([i915#1825]) +51 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html> +426 other tests skip
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html> ([i915#3458]) +19 other tests skip
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html> ([i915#8708]) +13 other tests skip
* igt@kms_hdr@bpc-switch:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_hdr@bpc-switch.html> ([i915#3555] / [i915#8228]) +1 other test skip
* igt@kms_hdr@bpc-switch-dpms:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_hdr@bpc-switch-dpms.html> ([i915#3555] / [i915#8228])
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html> ([i915#3555] / [i915#8228])
* igt@kms_hdr@brightness-with-hdr:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_hdr@brightness-with-hdr.html> ([i915#12713])
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@kms_hdr@brightness-with-hdr.html> ([i915#12713])
* igt@kms_hdr@invalid-hdr:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@kms_hdr@invalid-hdr.html> ([i915#3555] / [i915#8228])
* igt@kms_hdr@invalid-metadata-sizes:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_hdr@invalid-metadata-sizes.html> ([i915#3555] / [i915#8228]) +1 other test skip
* igt@kms_hdr@static-toggle:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_hdr@static-toggle.html> ([i915#3555] / [i915#8228]) +2 other tests skip
* igt@kms_joiner@basic-big-joiner:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_joiner@basic-big-joiner.html> ([i915#10656])
* igt@kms_joiner@basic-force-big-joiner:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_joiner@basic-force-big-joiner.html> ([i915#12388])
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_joiner@basic-force-big-joiner.html> ([i915#12388])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@kms_joiner@basic-force-big-joiner.html> ([i915#12388])
* igt@kms_joiner@basic-force-ultra-joiner:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@kms_joiner@basic-force-ultra-joiner.html> ([i915#12394] / [i915#13522])
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_joiner@basic-force-ultra-joiner.html> ([i915#12394] / [i915#13522])
* igt@kms_joiner@basic-ultra-joiner:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_joiner@basic-ultra-joiner.html> ([i915#12339])
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> ([i915#10656] / [i915#13522]) +1 other test skip
* igt@kms_joiner@invalid-modeset-ultra-joiner:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html> ([i915#12339]) +1 other test skip
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html> ([i915#13522])
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> ([i915#4816])
* igt@kms_panel_fitting@atomic-fastset:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_panel_fitting@atomic-fastset.html> ([i915#6301])
* igt@kms_panel_fitting@legacy:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-3/igt@kms_panel_fitting@legacy.html> ([i915#6301])
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_panel_fitting@legacy.html> ([i915#6301])
* igt@kms_plane_alpha_blend@constant-alpha-max:
* shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk3/igt@kms_plane_alpha_blend@constant-alpha-max.html> ([i915#10647] / [i915#12169])
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
* shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk3/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html> ([i915#10647]) +1 other test fail
* igt@kms_plane_lowres@tiling-none:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-5/igt@kms_plane_lowres@tiling-none.html> ([i915#11614] / [i915#3582]) +1 other test skip
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-5/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html> ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
* igt@kms_plane_lowres@tiling-y:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html> ([i915#8821])
* igt@kms_plane_lowres@tiling-yf:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html> ([i915#3555]) +4 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_plane_lowres@tiling-yf.html> ([i915#3555]) +3 other tests skip
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html> ([i915#12247]) +4 other tests skip
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
* shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk8/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html> +449 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25.html> ([i915#12247] / [i915#6953])
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html> ([i915#12247]) +19 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html> ([i915#12247] / [i915#9423]) +2 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html> ([i915#12247]) +9 other tests skip
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html> ([i915#12247] / [i915#6953] / [i915#9423])
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html> ([i915#12247] / [i915#3555] / [i915#9423])
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html> ([i915#12247] / [i915#3555])
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html> ([i915#12247] / [i915#6953])
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c.html> ([i915#12247]) +3 other tests skip
* igt@kms_pm_backlight@bad-brightness:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html> ([i915#9812])
* igt@kms_pm_backlight@fade:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@kms_pm_backlight@fade.html> ([i915#5354])
* igt@kms_pm_backlight@fade-with-dpms:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_pm_backlight@fade-with-dpms.html> ([i915#5354]) +1 other test skip
* igt@kms_pm_dc@dc3co-vpb-simulation:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-10/igt@kms_pm_dc@dc3co-vpb-simulation.html> ([i915#9685]) +1 other test skip
* igt@kms_pm_dc@dc5-psr:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_pm_dc@dc5-psr.html> ([i915#9685])
* igt@kms_pm_dc@dc5-retention-flops:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@kms_pm_dc@dc5-retention-flops.html> ([i915#3828])
* igt@kms_pm_dc@dc6-psr:
* shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-2/igt@kms_pm_dc@dc6-psr.html> ([i915#12912])
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-7/igt@kms_pm_dc@dc6-psr.html> ([i915#9685])
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-1/igt@kms_pm_dc@dc6-psr.html> ([i915#9685])
* igt@kms_pm_dc@dc9-dpms:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html> ([i915#3361]) +1 other test skip
* igt@kms_pm_lpsp@kms-lpsp:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@kms_pm_lpsp@kms-lpsp.html> ([i915#9340])
* igt@kms_pm_lpsp@screens-disabled:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_pm_lpsp@screens-disabled.html> ([i915#8430])
* igt@kms_pm_rpm@cursor:
* shard-dg2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-7/igt@kms_pm_rpm@cursor.html> ([i915#10553])
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html> ([i915#9519])
* igt@kms_pm_rpm@fences:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@kms_pm_rpm@fences.html> ([i915#4077]) +12 other tests skip
* igt@kms_pm_rpm@modeset-lpsp-stress:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress.html> ([i915#9519])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html> ([i915#9519]) +1 other test skip
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> ([i915#9519]) +1 other test skip
* igt@kms_prime@basic-crc-hybrid:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html> ([i915#6524])
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_prime@basic-crc-hybrid.html> ([i915#6524])
* igt@kms_prime@basic-crc-vgem:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@kms_prime@basic-crc-vgem.html> ([i915#6524] / [i915#6805]) +2 other tests skip
* igt@kms_prime@d3hot:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-18/igt@kms_prime@d3hot.html> ([i915#6524]) +1 other test skip
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-8/igt@kms_prime@d3hot.html> ([i915#6524])
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html> ([i915#11520]) +13 other tests skip
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1.html> ([i915#9808])
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html> ([i915#12316]) +3 other tests skip
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-10/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html> ([i915#11520])
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
* shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk6/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html> ([i915#11520]) +9 other tests skip
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html> ([i915#11520]) +8 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html> ([i915#11520]) +4 other tests skip
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html> ([i915#11520]) +3 other tests skip
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html> ([i915#11520]) +9 other tests skip
* igt@kms_psr2_su@page_flip-nv12:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_psr2_su@page_flip-nv12.html> ([i915#4348])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_psr2_su@page_flip-nv12.html> ([i915#9683])
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-5/igt@kms_psr2_su@page_flip-nv12.html> ([i915#9683])
* igt@kms_psr2_su@page_flip-xrgb8888:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-8/igt@kms_psr2_su@page_flip-xrgb8888.html> ([i915#9683]) +2 other tests skip
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_psr@fbc-psr-primary-mmap-gtt.html> ([i915#1072] / [i915#9732]) +42 other tests skip
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-12/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html> ([i915#1072] / [i915#9732]) +22 other tests skip
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-7/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html> ([i915#9688]) +5 other tests skip
* igt@kms_psr@fbc-psr2-sprite-render:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html> ([i915#1072] / [i915#9732]) +24 other tests skip
* igt@kms_psr@pr-cursor-plane-onoff:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-14/igt@kms_psr@pr-cursor-plane-onoff.html> ([i915#1072] / [i915#4423] / [i915#9732])
* igt@kms_psr@psr2-primary-render:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-9/igt@kms_psr@psr2-primary-render.html> ([i915#9732]) +16 other tests skip
* igt@kms_psr@psr2-sprite-mmap-gtt:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html> ([i915#9732]) +13 other tests skip
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> ([i915#9685]) +1 other test skip
* igt@kms_rotation_crc@bad-pixel-format:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-3/igt@kms_rotation_crc@bad-pixel-format.html> ([i915#12755])
* igt@kms_rotation_crc@exhaust-fences:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@kms_rotation_crc@exhaust-fences.html> ([i915#4235])
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html> ([i915#5289])
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html> ([i915#5190]) +1 other test skip
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> ([i915#5289])
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> ([i915#12755] / [i915#5190]) +1 other test skip
* igt@kms_setmode@basic:
* shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-snb1/igt@kms_setmode@basic.html> ([i915#5465]) +2 other tests fail
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-tglu-3/igt@kms_setmode@basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-5/igt@kms_setmode@basic.html> ([i915#5465]) +2 other tests fail
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-dg2-2/igt@kms_setmode@basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@kms_setmode@basic.html> ([i915#5465])
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-4/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html> ([i915#5465]) +1 other test fail
* igt@kms_setmode@basic@pipe-b-edp-1:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_setmode@basic@pipe-b-edp-1.html> ([i915#5465]) +2 other tests fail
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html> ([i915#3555]) +1 other test skip
* igt@kms_sysfs_edid_timing:
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-2/igt@kms_sysfs_edid_timing.html> ([IGT#160])
* igt@kms_tiled_display@basic-test-pattern:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern.html> ([i915#8623])
* igt@kms_vblank@ts-continuation-dpms-rpm:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-rkl-7/igt@kms_vblank@ts-continuation-dpms-rpm.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-rkl-5/igt@kms_vblank@ts-continuation-dpms-rpm.html> ([i915#12917] / [i915#12964])
* igt@kms_vblank@wait-busy@pipe-c-hdmi-a-1:
* shard-glk: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-glk8/igt@kms_vblank@wait-busy@pipe-c-hdmi-a-1.html> ([i915#118]) +3 other tests dmesg-warn
* igt@kms_vrr@lobf:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-5/igt@kms_vrr@lobf.html> ([i915#11920])
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_vrr@lobf.html> ([i915#11920])
* igt@kms_vrr@negative-basic:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16001/shard-mtlp-4/igt@kms_vrr@negative-basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-mtlp-1/igt@kms_vrr@negative-basic.html> ([i915#10393]) +1 other test fail
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-1/igt@kms_vrr@negative-basic.html> ([i915#3555] / [i915#9906])
* igt@kms_vrr@seamless-rr-switch-vrr:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-vrr.html> ([i915#9906])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-vrr.html> ([i915#9906])
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12478/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-vrr.html> ([i915#9906])
[-- Attachment #2: Type: text/html, Size: 108184 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t 1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors
2025-01-22 14:44 [PATCH i-g-t 1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors Dominik Grzegorzek
` (5 preceding siblings ...)
2025-01-23 19:23 ` ✗ i915.CI.Full: " Patchwork
@ 2025-01-24 15:04 ` Kamil Konieczny
6 siblings, 0 replies; 12+ messages in thread
From: Kamil Konieczny @ 2025-01-24 15:04 UTC (permalink / raw)
To: Dominik Grzegorzek; +Cc: igt-dev, jordan.l.justen, christoph.manszewski
Hi Dominik,
On 2025-01-22 at 15:44:17 +0100, Dominik Grzegorzek wrote:
> Fix instances casting using proper from_user_pointer macro and
> correct all debug prints which were causing compilation warnings
> on 32b archs.
>
> Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
Patchseries applied, thanks!
Regards,
Kamil
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2025-01-24 15:04 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-22 14:44 [PATCH i-g-t 1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors Dominik Grzegorzek
2025-01-22 14:44 ` [PATCH i-g-t 2/3] tests/intel/xe_eudebug_online: Fix 32b compilation warnings Dominik Grzegorzek
2025-01-24 14:00 ` Kamil Konieczny
2025-01-22 14:44 ` [PATCH i-g-t 3/3] tests/intel/xe_eudebug_online: Fix 32b compilation errors Dominik Grzegorzek
2025-01-24 14:07 ` Kamil Konieczny
2025-01-22 17:22 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/3] lib/xe_eudebug: Fix 32b compilation warnings/errors Patchwork
2025-01-22 17:26 ` ✓ i915.CI.BAT: " Patchwork
2025-01-23 5:10 ` ✗ Xe.CI.Full: failure " Patchwork
2025-01-24 14:14 ` Grzegorzek, Dominik
2025-01-23 19:23 ` ✗ i915.CI.Full: " Patchwork
2025-01-24 14:15 ` Grzegorzek, Dominik
2025-01-24 15:04 ` [PATCH i-g-t 1/3] " Kamil Konieczny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox